Home
last modified time | relevance | path

Searched refs:viableTokensFollowingThisRule (Results 1 – 10 of 10) sorted by relevance

/external/antlr/runtime/C/src/
Dantlr3baserecognizer.c556 pANTLR3_BITSET viableTokensFollowingThisRule; in mismatchIsMissingToken() local
569 viableTokensFollowingThisRule = NULL; in mismatchIsMissingToken()
597 viableTokensFollowingThisRule = recognizer->computeCSRuleFollow(recognizer); in mismatchIsMissingToken()
598 followClone->borInPlace(followClone, viableTokensFollowingThisRule); in mismatchIsMissingToken()
620 if (viableTokensFollowingThisRule != NULL) in mismatchIsMissingToken()
622 viableTokensFollowingThisRule->free(viableTokensFollowingThisRule); in mismatchIsMissingToken()
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/
DBaseRecognizer.js162 var viableTokensFollowingThisRule = this.computeContextSensitiveRuleFOLLOW();
163 follow = follow.or(this.viableTokensFollowingThisRule);
/external/antlr/runtime/Cpp/include/
Dantlr3baserecognizer.inl127 BitsetType* viableTokensFollowingThisRule; local
140 viableTokensFollowingThisRule = NULL;
163 viableTokensFollowingThisRule = this->computeCSRuleFollow();
164 followClone->borInPlace(viableTokensFollowingThisRule);
186 if (viableTokensFollowingThisRule != NULL)
188 delete viableTokensFollowingThisRule;
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/
DBaseRecognizer.java138 BitSet viableTokensFollowingThisRule = computeContextSensitiveRuleFOLLOW(); in mismatchIsMissingToken() local
139 follow = follow.or(viableTokensFollowingThisRule); in mismatchIsMissingToken()
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DBaseRecognizer.cs167 BitSet viableTokensFollowingThisRule = ComputeContextSensitiveRuleFOLLOW(); in MismatchIsMissingToken()
168 follow = follow.Or(viableTokensFollowingThisRule); in MismatchIsMissingToken()
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/
DBaseRecognizer.cs187 BitSet viableTokensFollowingThisRule = ComputeContextSensitiveRuleFOLLOW(); in MismatchIsMissingToken()
188 follow = follow.Or( viableTokensFollowingThisRule ); in MismatchIsMissingToken()
/external/antlr/runtime/Python/antlr3/
Drecognizers.py244 viableTokensFollowingThisRule = self.computeContextSensitiveRuleFOLLOW()
245 follow = follow | viableTokensFollowingThisRule
/external/antlr/runtime/Python3/antlr3/
Drecognizers.py243 viableTokensFollowingThisRule = self.computeContextSensitiveRuleFOLLOW()
244 follow |= viableTokensFollowingThisRule
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/
DBaseRecognizer.as100 var viableTokensFollowingThisRule:BitSet = computeContextSensitiveRuleFOLLOW();
101 follow = follow.or(viableTokensFollowingThisRule);
/external/antlr/runtime/ObjC/Framework/
DBaseRecognizer.m270 ANTLRBitSet *viableTokensFollowingThisRule = [self computeContextSensitiveRuleFOLLOW];
271 follow = [follow or:viableTokensFollowingThisRule];