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

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

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

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

public Table getTable(final int tableType) {
  for (int i = 0; i < _tables.length; i++) {
    if ((_tables[i] != null) && (_tables[i].getType() == tableType)) {
      return _tables[i];
    }
  }
  return null;
}
origin: ch.unibas.cs.gravis/scalismo-native-stub

public Table getTable(final DirectoryEntry de) {
  for (int i = 0; i < _tables.size(); i++) {
    final Table table = _tables.get(i);
    if ((table.getDirectoryEntry().getTag() == de.getTag()) &&
      (table.getDirectoryEntry().getOffset() == de.getOffset())) {
      return table;
    }
  }
  return null;
}
origin: org.jogamp.jogl/jogl-all-noawt

public Table getTable(final DirectoryEntry de) {
  for (int i = 0; i < _tables.size(); i++) {
    final Table table = _tables.get(i);
    if ((table.getDirectoryEntry().getTag() == de.getTag()) &&
      (table.getDirectoryEntry().getOffset() == de.getOffset())) {
      return table;
    }
  }
  return null;
}
origin: org.jogamp.jogl/jogl-all-noawt

public Table getTable(final int tableType) {
  for (int i = 0; i < _tables.length; i++) {
    if ((_tables[i] != null) && (_tables[i].getType() == tableType)) {
      return _tables[i];
    }
  }
  return null;
}
jogamp.graph.font.typecast.ot.tableTable

Most used methods

  • getDirectoryEntry
    Get a directory entry for this table. This uniquely identifies the table in collections where there
  • getType
    Get the table type, as a table directory value.

Popular in Java

  • Running tasks concurrently on multiple threads
  • findViewById (Activity)
  • getApplicationContext (Context)
  • putExtra (Intent)
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • CodeWhisperer alternatives
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