congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
TrieParserVisitor
Code IndexAdd Tabnine to your IDE (free)

How to use
TrieParserVisitor
in
com.ociweb.pronghorn.util

Best Java code snippets using com.ociweb.pronghorn.util.TrieParserVisitor (Showing top 6 results out of 315)

origin: com.ociweb/pronghorn-pipes

private void visitEnd(TrieParserVisitor pv, int i, byte[] buffer, int bufferPosition) {
       assert(TYPE_END == data[i]);
    i++;//skip over the ID;
    int s = SIZE_OF_RESULT;
    long result = 0;
    while (--s >= 0) {
      result = (result<<16) | (0xFFFF&(long)data[i++]);
    } 
    pv.visit(buffer, bufferPosition, result);
}
origin: com.ociweb/PronghornPipes

private void visitEnd(TrieParserVisitor pv, int i, byte[] buffer, int bufferPosition) {
       assert(TYPE_END == data[i]);
    i++;//skip over the ID;
    int s = SIZE_OF_RESULT;
    long result = 0;
    while (--s >= 0) {
      result = (result<<16) | (0xFFFF&(long)data[i++]);
    } 
    pv.visit(buffer, bufferPosition, result);
}
origin: oci-pronghorn/Pronghorn

private void visitEnd(TrieParserVisitor pv, int i, byte[] buffer, int bufferPosition) {
       assert(TYPE_END == data[i]);
    i++;//skip over the ID;
    int s = SIZE_OF_RESULT;
    long result = 0;
    while (--s >= 0) {
      result = (result<<16) | (0xFFFF&(long)data[i++]);
    } 
    pv.visit(buffer, bufferPosition, result);
}
origin: com.ociweb/pronghorn-pipes

private void visitSafeEnd(TrieParserVisitor pv, int i, byte[] buffer, int bufferPosition) {
  assert(TYPE_SAFE_END == data[i]);
  i++;//skip over the ID;
  
  int s = SIZE_OF_RESULT;
  long result = 0;
  while (--s >= 0) {
    result = (result<<8) | ((long)data[i++]);
  } 
  pv.visit(buffer, bufferPosition, result);
  visitPatterns(pv,i,buffer,bufferPosition);
  
}
origin: com.ociweb/PronghornPipes

private void visitSafeEnd(TrieParserVisitor pv, int i, byte[] buffer, int bufferPosition) {
  assert(TYPE_SAFE_END == data[i]);
  i++;//skip over the ID;
  
  int s = SIZE_OF_RESULT;
  long result = 0;
  while (--s >= 0) {
    result = (result<<8) | ((long)data[i++]);
  } 
  pv.visit(buffer, bufferPosition, result);
  visitPatterns(pv,i,buffer,bufferPosition);
  
}
origin: oci-pronghorn/Pronghorn

private void visitSafeEnd(TrieParserVisitor pv, int i, byte[] buffer, int bufferPosition) {
  assert(TYPE_SAFE_END == data[i]);
  i++;//skip over the ID;
  
  int s = SIZE_OF_RESULT;
  long result = 0;
  while (--s >= 0) {
    result = (result<<8) | ((long)data[i++]);
  } 
  pv.visit(buffer, bufferPosition, result);
  visitPatterns(pv,i,buffer,bufferPosition);
  
}
com.ociweb.pronghorn.utilTrieParserVisitor

Most used methods

  • visit

Popular in Java

  • Making http post requests using okhttp
  • setScale (BigDecimal)
  • requestLocationUpdates (LocationManager)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • Kernel (java.awt.image)
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • ImageIO (javax.imageio)
  • 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