Tabnine Logo
Coverage.read
Code IndexAdd Tabnine to your IDE (free)

How to use
read
method
in
jogamp.graph.font.typecast.ot.table.Coverage

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

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

/** Creates new SingleSubstFormat2 */
protected SingleSubstFormat2(final DataInputStream dis, final int offset) throws IOException {
  _coverageOffset = dis.readUnsignedShort();
  _glyphCount = dis.readUnsignedShort();
  _substitutes = new int[_glyphCount];
  for (int i = 0; i < _glyphCount; i++) {
    _substitutes[i] = dis.readUnsignedShort();
  }
  dis.reset();
  dis.skipBytes(offset + _coverageOffset);
  _coverage = Coverage.read(dis);
}
origin: ch.unibas.cs.gravis/scalismo-native-stub

/** Creates new SingleSubstFormat1 */
protected SingleSubstFormat1(final DataInputStream dis, final int offset) throws IOException {
  _coverageOffset = dis.readUnsignedShort();
  _deltaGlyphID = dis.readShort();
  dis.reset();
  dis.skipBytes(offset + _coverageOffset);
  _coverage = Coverage.read(dis);
}
origin: org.jogamp.jogl/jogl-all-noawt

/** Creates new SingleSubstFormat1 */
protected SingleSubstFormat1(final DataInputStream dis, final int offset) throws IOException {
  _coverageOffset = dis.readUnsignedShort();
  _deltaGlyphID = dis.readShort();
  dis.reset();
  dis.skipBytes(offset + _coverageOffset);
  _coverage = Coverage.read(dis);
}
origin: org.jogamp.jogl/jogl-all-noawt

/** Creates new SingleSubstFormat2 */
protected SingleSubstFormat2(final DataInputStream dis, final int offset) throws IOException {
  _coverageOffset = dis.readUnsignedShort();
  _glyphCount = dis.readUnsignedShort();
  _substitutes = new int[_glyphCount];
  for (int i = 0; i < _glyphCount; i++) {
    _substitutes[i] = dis.readUnsignedShort();
  }
  dis.reset();
  dis.skipBytes(offset + _coverageOffset);
  _coverage = Coverage.read(dis);
}
origin: ch.unibas.cs.gravis/scalismo-native-stub

/** Creates new LigatureSubstFormat1 */
protected LigatureSubstFormat1(
    final DataInputStream dis,
    final int offset) throws IOException {
  _coverageOffset = dis.readUnsignedShort();
  _ligSetCount = dis.readUnsignedShort();
  _ligatureSetOffsets = new int[_ligSetCount];
  _ligatureSets = new LigatureSet[_ligSetCount];
  for (int i = 0; i < _ligSetCount; i++) {
    _ligatureSetOffsets[i] = dis.readUnsignedShort();
  }
  dis.reset();
  dis.skipBytes(offset + _coverageOffset);
  _coverage = Coverage.read(dis);
  for (int i = 0; i < _ligSetCount; i++) {
    _ligatureSets[i] = new LigatureSet(dis, offset + _ligatureSetOffsets[i]);
  }
}
origin: org.jogamp.jogl/jogl-all-noawt

/** Creates new LigatureSubstFormat1 */
protected LigatureSubstFormat1(
    final DataInputStream dis,
    final int offset) throws IOException {
  _coverageOffset = dis.readUnsignedShort();
  _ligSetCount = dis.readUnsignedShort();
  _ligatureSetOffsets = new int[_ligSetCount];
  _ligatureSets = new LigatureSet[_ligSetCount];
  for (int i = 0; i < _ligSetCount; i++) {
    _ligatureSetOffsets[i] = dis.readUnsignedShort();
  }
  dis.reset();
  dis.skipBytes(offset + _coverageOffset);
  _coverage = Coverage.read(dis);
  for (int i = 0; i < _ligSetCount; i++) {
    _ligatureSets[i] = new LigatureSet(dis, offset + _ligatureSetOffsets[i]);
  }
}
jogamp.graph.font.typecast.ot.tableCoverageread

Popular methods of Coverage

  • findGlyph

Popular in Java

  • Making http requests using okhttp
  • scheduleAtFixedRate (ScheduledExecutorService)
  • startActivity (Activity)
  • setScale (BigDecimal)
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • Time (java.sql)
    Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • Set (java.util)
    A Set is a data structure which does not allow duplicate elements.
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • 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