Tabnine Logo
LangSys.isFeatureIndexed
Code IndexAdd Tabnine to your IDE (free)

How to use
isFeatureIndexed
method
in
jogamp.graph.font.typecast.ot.table.LangSys

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

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

public Feature findFeature(final LangSys langSys, final String tag) {
  if (tag.length() != 4) {
    return null;
  }
  final int tagVal = ((tag.charAt(0)<<24)
    | (tag.charAt(1)<<16)
    | (tag.charAt(2)<<8)
    | tag.charAt(3));
  for (int i = 0; i < _featureCount; i++) {
    if (_featureRecords[i].getTag() == tagVal) {
      if (langSys.isFeatureIndexed(i)) {
        return _features[i];
      }
    }
  }
  return null;
}
origin: org.jogamp.jogl/jogl-all-noawt

public Feature findFeature(final LangSys langSys, final String tag) {
  if (tag.length() != 4) {
    return null;
  }
  final int tagVal = ((tag.charAt(0)<<24)
    | (tag.charAt(1)<<16)
    | (tag.charAt(2)<<8)
    | tag.charAt(3));
  for (int i = 0; i < _featureCount; i++) {
    if (_featureRecords[i].getTag() == tagVal) {
      if (langSys.isFeatureIndexed(i)) {
        return _features[i];
      }
    }
  }
  return null;
}
jogamp.graph.font.typecast.ot.tableLangSysisFeatureIndexed

Popular methods of LangSys

  • <init>
    Creates new LangSys

Popular in Java

  • Finding current android device location
  • putExtra (Intent)
  • setContentView (Activity)
  • getExternalFilesDir (Context)
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • BufferedReader (java.io)
    Wraps an existing Reader and buffers the input. Expensive interaction with the underlying reader is
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • Path (java.nio.file)
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • Top PhpStorm plugins
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