Home
last modified time | relevance | path

Searched refs:combineFollows (Results 1 – 11 of 11) sorted by relevance

/external/antlr/runtime/JavaScript/src/org/antlr/runtime/
DBaseRecognizer.js518 return this.combineFollows(false);
580 return this.combineFollows(true);
589 combineFollows: function(exact) {
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/
DBaseRecognizer.java469 return combineFollows(false); in computeErrorRecoverySet()
525 return combineFollows(true); in computeContextSensitiveRuleFOLLOW()
532 protected BitSet combineFollows(boolean exact) { in combineFollows() method in BaseRecognizer
/external/antlr/runtime/C/src/
Dantlr3baserecognizer.c61 static pANTLR3_BITSET combineFollows (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_BOOLEAN exact);
156 recognizer->combineFollows = combineFollows; in antlr3BaseRecognizerNew()
881 return recognizer->combineFollows(recognizer, ANTLR3_FALSE); in computeErrorRecoverySet()
941 return recognizer->combineFollows(recognizer, ANTLR3_FALSE); in computeCSRuleFollow()
947 combineFollows (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_BOOLEAN exact) in combineFollows() function
/external/antlr/runtime/C/include/
Dantlr3baserecognizer.h222 pANTLR3_BITSET (*combineFollows) (struct ANTLR3_BASE_RECOGNIZER_struct * recognizer, member
/external/antlr/runtime/Cpp/include/
Dantlr3baserecognizer.hpp347 BitsetType* combineFollows(bool exact);
Dantlr3baserecognizer.inl357 return this->combineFollows(false);
363 return this->combineFollows(false);
367 …Traits, StreamType>::BitsetType* BaseRecognizer<ImplTraits, StreamType>::combineFollows(bool exact) function in BaseRecognizer
/external/antlr/runtime/Python/antlr3/
Drecognizers.py588 return self.combineFollows(False)
646 return self.combineFollows(True)
649 def combineFollows(self, exact): member in BaseRecognizer
/external/antlr/runtime/Python3/antlr3/
Drecognizers.py580 return self.combineFollows(False)
638 return self.combineFollows(True)
641 def combineFollows(self, exact): member in BaseRecognizer
/external/antlr/runtime/ObjC/Framework/
DBaseRecognizer.h127 - (ANTLRBitSet *)combineFollows:(BOOL) exact;
DBaseRecognizer.m611 return [self combineFollows:NO];
668 return [self combineFollows:YES];
675 - (ANTLRBitSet *)combineFollows:(BOOL) exact
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/
DBaseRecognizer.as445 return combineFollows(false);
501 return combineFollows(true);
504 protected function combineFollows(exact:Boolean):BitSet {