HomeSort by relevance Sort by last modified time
    Searched full:followset (Results 1 - 12 of 12) sorted by null

  /external/antlr/antlr-3.4/runtime/C/include/
antlr3bitset.h 77 /// to perform followset calculations.
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3baserecognizer.c 944 /// Compute the current followset for the input stream.
949 pANTLR3_BITSET followSet;
956 followSet = antlr3BitsetNew(0);
965 followSet->borInPlace(followSet, localFollowSet);
976 followSet->remove(followSet, ANTLR3_EOR_TOKEN_TYPE);
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
BaseRecognizer.as 338 var followSet:BitSet = computeErrorRecoverySet();
340 consumeUntil(input, followSet);
506 var followSet:BitSet = new BitSet();
509 followSet.orInPlace(localFollowSet);
516 followSet.remove(TokenConstants.EOR_TOKEN_TYPE);
524 return followSet;
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
BaseRecognizer.java 362 BitSet followSet = computeErrorRecoverySet();
364 consumeUntil(input, followSet);
534 BitSet followSet = new BitSet();
541 followSet.orInPlace(localFollowSet);
548 followSet.remove(Token.EOR_TOKEN_TYPE);
556 return followSet;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BaseRecognizer.cs 387 BitSet followSet = ComputeErrorRecoverySet();
389 ConsumeUntil(input, followSet);
563 BitSet followSet = new BitSet();
570 followSet.OrInPlace(localFollowSet);
577 followSet.Remove(TokenTypes.EndOfRule);
584 return followSet;
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BaseRecognizer.cs 455 BitSet followSet = ComputeErrorRecoverySet();
457 ConsumeUntil( input, followSet );
636 BitSet followSet = new BitSet();
644 followSet.OrInPlace( localFollowSet );
654 followSet.Remove( TokenTypes.EndOfRule );
663 return followSet;
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
BaseRecognizer.js 404 var followSet = this.computeErrorRecoverySet();
406 this.consumeUntil(input, followSet);
593 followSet = new org.antlr.runtime.BitSet();
596 followSet.orInPlace(localFollowSet);
604 followSet.remove(org.antlr.runtime.Token.EOR_TOKEN_TYPE);
612 return followSet;
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRBaseRecognizer.m 499 ANTLRBitSet *followSet = [self computeErrorRecoverySet];
501 [self consumeUntilFollow:anInput Follow:followSet];
675 ANTLRBitSet *followSet = [[ANTLRBitSet newANTLRBitSet] retain];
682 [followSet orInPlace:localFollowSet];
689 [followSet remove:ANTLRTokenTypeEOR];
697 return followSet;
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
recognizers.py 469 followSet = self.computeErrorRecoverySet()
472 self.consumeUntil(input, followSet)
650 followSet = set()
652 followSet |= localFollowSet
659 followSet.remove(EOR_TOKEN_TYPE)
665 return followSet
    [all...]
  /external/chromium_org/third_party/sqlite/src/tool/
lemon.c 222 enum cfgstatus status; /* used during followset and shift computations */
265 /* A followset propagation link indicates that the contents of one
266 ** configuration followset should be propagated to another whenever
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas     [all...]
  /external/chromium_org/third_party/ply/
yacc.py     [all...]

Completed in 609 milliseconds