Tabnine Logo
Script
Code IndexAdd Tabnine to your IDE (free)

How to use
Script
in
jogamp.graph.font.typecast.ot.table

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

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

/** Creates new ScriptList */
protected ScriptList(final DataInputStream dis, final int offset) throws IOException {
  // Ensure we're in the right place
  dis.reset();
  dis.skipBytes(offset);
  // Start reading
  _scriptCount = dis.readUnsignedShort();
  _scriptRecords = new ScriptRecord[_scriptCount];
  _scripts = new Script[_scriptCount];
  for (int i = 0; i < _scriptCount; i++) {
    _scriptRecords[i] = new ScriptRecord(dis);
  }
  for (int i = 0; i < _scriptCount; i++) {
    _scripts[i] = new Script(dis, offset + _scriptRecords[i].getOffset());
  }
}
origin: org.jogamp.jogl/jogl-all-noawt

/** Creates new ScriptList */
protected ScriptList(final DataInputStream dis, final int offset) throws IOException {
  // Ensure we're in the right place
  dis.reset();
  dis.skipBytes(offset);
  // Start reading
  _scriptCount = dis.readUnsignedShort();
  _scriptRecords = new ScriptRecord[_scriptCount];
  _scripts = new Script[_scriptCount];
  for (int i = 0; i < _scriptCount; i++) {
    _scriptRecords[i] = new ScriptRecord(dis);
  }
  for (int i = 0; i < _scriptCount; i++) {
    _scripts[i] = new Script(dis, offset + _scriptRecords[i].getOffset());
  }
}
jogamp.graph.font.typecast.ot.tableScript

Most used methods

  • <init>
    Creates new ScriptTable

Popular in Java

  • Start an intent from android
  • setScale (BigDecimal)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • onCreateOptionsMenu (Activity)
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • MessageFormat (java.text)
    Produces concatenated messages in language-neutral way. New code should probably use java.util.Forma
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • Scheduler (org.quartz)
    This is the main interface of a Quartz Scheduler. A Scheduler maintains a registry of org.quartz.Job
  • Top 15 Vim Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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