Tabnine Logo
LangSys.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
jogamp.graph.font.typecast.ot.table.LangSys
constructor

Best Java code snippets using jogamp.graph.font.typecast.ot.table.LangSys.<init> (Showing top 2 results out of 315)

origin: ch.unibas.cs.gravis/scalismo-native-stub

/** Creates new ScriptTable */
protected Script(final DataInputStream dis, final int offset) throws IOException {
  // Ensure we're in the right place
  dis.reset();
  dis.skipBytes(offset);
  // Start reading
  _defaultLangSysOffset = dis.readUnsignedShort();
  _langSysCount = dis.readUnsignedShort();
  if (_langSysCount > 0) {
    _langSysRecords = new LangSysRecord[_langSysCount];
    for (int i = 0; i < _langSysCount; i++) {
      _langSysRecords[i] = new LangSysRecord(dis);
    }
  }
  // Read the LangSys tables
  if (_langSysCount > 0) {
    _langSys = new LangSys[_langSysCount];
    for (int i = 0; i < _langSysCount; i++) {
      dis.reset();
      dis.skipBytes(offset + _langSysRecords[i].getOffset());
      _langSys[i] = new LangSys(dis);
    }
  }
  if (_defaultLangSysOffset > 0) {
    dis.reset();
    dis.skipBytes(offset + _defaultLangSysOffset);
    _defaultLangSys = new LangSys(dis);
  }
}
origin: org.jogamp.jogl/jogl-all-noawt

/** Creates new ScriptTable */
protected Script(final DataInputStream dis, final int offset) throws IOException {
  // Ensure we're in the right place
  dis.reset();
  dis.skipBytes(offset);
  // Start reading
  _defaultLangSysOffset = dis.readUnsignedShort();
  _langSysCount = dis.readUnsignedShort();
  if (_langSysCount > 0) {
    _langSysRecords = new LangSysRecord[_langSysCount];
    for (int i = 0; i < _langSysCount; i++) {
      _langSysRecords[i] = new LangSysRecord(dis);
    }
  }
  // Read the LangSys tables
  if (_langSysCount > 0) {
    _langSys = new LangSys[_langSysCount];
    for (int i = 0; i < _langSysCount; i++) {
      dis.reset();
      dis.skipBytes(offset + _langSysRecords[i].getOffset());
      _langSys[i] = new LangSys(dis);
    }
  }
  if (_defaultLangSysOffset > 0) {
    dis.reset();
    dis.skipBytes(offset + _defaultLangSysOffset);
    _defaultLangSys = new LangSys(dis);
  }
}
jogamp.graph.font.typecast.ot.tableLangSys<init>

Javadoc

Creates new LangSys

Popular methods of LangSys

  • isFeatureIndexed

Popular in Java

  • Making http post requests using okhttp
  • requestLocationUpdates (LocationManager)
  • getSharedPreferences (Context)
  • setContentView (Activity)
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • BlockingQueue (java.util.concurrent)
    A java.util.Queue that additionally supports operations that wait for the queue to become non-empty
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • JCheckBox (javax.swing)
  • Top plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now