Home
last modified time | relevance | path

Searched refs:followSet (Results 1 – 9 of 9) sorted by relevance

/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
DBaseRecognizer.js404 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;
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
DBaseRecognizer.java362 BitSet followSet = computeErrorRecoverySet(); in recover() local
364 consumeUntil(input, followSet); in recover()
534 BitSet followSet = new BitSet(); in combineFollows() local
541 followSet.orInPlace(localFollowSet); in combineFollows()
548 followSet.remove(Token.EOR_TOKEN_TYPE); in combineFollows()
556 return followSet; in combineFollows()
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DBaseRecognizer.cs387 BitSet followSet = ComputeErrorRecoverySet(); in Recover()
389 ConsumeUntil(input, followSet); in Recover()
563 BitSet followSet = new BitSet(); in CombineFollows()
570 followSet.OrInPlace(localFollowSet); in CombineFollows()
577 followSet.Remove(TokenTypes.EndOfRule); in CombineFollows()
584 return followSet; in CombineFollows()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DBaseRecognizer.cs455 BitSet followSet = ComputeErrorRecoverySet(); in Recover()
457 ConsumeUntil( input, followSet ); in Recover()
636 BitSet followSet = new BitSet(); in CombineFollows()
644 followSet.OrInPlace( localFollowSet ); in CombineFollows()
654 followSet.Remove( TokenTypes.EndOfRule ); in CombineFollows()
663 return followSet; in CombineFollows()
/external/antlr/antlr-3.4/runtime/C/src/
Dantlr3baserecognizer.c949 pANTLR3_BITSET followSet; in combineFollows() local
956 followSet = antlr3BitsetNew(0); in combineFollows()
965 followSet->borInPlace(followSet, localFollowSet); in combineFollows()
976 followSet->remove(followSet, ANTLR3_EOR_TOKEN_TYPE); in combineFollows()
993 return followSet; in combineFollows()
1324 pANTLR3_BITSET followSet; in recover() local
1373 followSet = recognizer->computeErrorRecoverySet(recognizer); in recover()
1381 recognizer->consumeUntilSet(recognizer, followSet); in recover()
1389 followSet->free(followSet); in recover()
/external/antlr/antlr-3.4/runtime/Python/antlr3/
Drecognizers.py469 followSet = self.computeErrorRecoverySet()
472 self.consumeUntil(input, followSet)
650 followSet = set()
652 followSet |= localFollowSet
659 followSet.remove(EOR_TOKEN_TYPE)
665 return followSet
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
DBaseRecognizer.as338 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/ObjC/Framework/
DANTLRBaseRecognizer.m499 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;
/external/antlr/antlr-3.4/lib/
Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/ ...