Home
last modified time | relevance | path

Searched refs:mismatchIsMissingToken (Results 1 – 14 of 14) sorted by relevance

/external/antlr/runtime/JavaScript/src/org/antlr/runtime/
DBaseRecognizer.js154 mismatchIsMissingToken: function(input, follow) { method in org.antlr.runtime.BaseRecognizer
195 } else if ( this.mismatchIsMissingToken(input, follow) ) {
667 if ( this.mismatchIsMissingToken(input, follow) ) {
689 if ( this.mismatchIsMissingToken(input, follow) ) {
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/
DBaseRecognizer.java130 public boolean mismatchIsMissingToken(IntStream input, BitSet follow) { in mismatchIsMissingToken() method in BaseRecognizer
610 if ( mismatchIsMissingToken(input, follow) ) { in recoverFromMismatchedToken()
627 if ( mismatchIsMissingToken(input, follow) ) { in recoverFromMismatchedSet()
/external/antlr/runtime/C/src/
Dantlr3baserecognizer.c58 static ANTLR3_BOOLEAN mismatchIsMissingToken (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STR…
174 recognizer->mismatchIsMissingToken = mismatchIsMissingToken; in antlr3BaseRecognizerNew()
552 mismatchIsMissingToken(pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM is, pANTLR3_BITSET_LI… in mismatchIsMissingToken() function
685 if (mismatchIsMissingToken(recognizer, is, follow)) in mismatch()
1526 if (mismatchIsMissingToken(recognizer, is, follow)) in recoverFromMismatchedToken()
1588 if (recognizer->mismatchIsMissingToken(recognizer, is, follow) == ANTLR3_TRUE) in recoverFromMismatchedSet()
/external/antlr/runtime/C/include/
Dantlr3baserecognizer.h139 …(*mismatchIsMissingToken) (struct ANTLR3_BASE_RECOGNIZER_struct * recognizer, pANTLR3_INT_STREAM i… member
/external/antlr/runtime/Cpp/include/
Dantlr3baserecognizer.hpp121 bool mismatchIsMissingToken(IntStreamType* input, BitsetListType* follow);
Dantlr3baserecognizer.inl123 bool BaseRecognizer<ImplTraits, StreamType>::mismatchIsMissingToken(IntStreamType* is, BitsetListTy… function in BaseRecognizer
477 if ( this->mismatchIsMissingToken(is, follow))
515 if (this->mismatchIsMissingToken(is, follow) == true)
Dantlr3parser.inl259 if ( this->mismatchIsMissingToken(is, follow))
/external/antlr/runtime/Python/antlr3/
Drecognizers.py236 def mismatchIsMissingToken(self, input, follow): member in BaseRecognizer
720 if self.mismatchIsMissingToken(input, follow):
736 if self.mismatchIsMissingToken(input, follow):
/external/antlr/runtime/Python3/antlr3/
Drecognizers.py235 def mismatchIsMissingToken(self, input, follow): member in BaseRecognizer
712 if self.mismatchIsMissingToken(input, follow):
728 if self.mismatchIsMissingToken(input, follow):
/external/antlr/runtime/ObjC/Framework/
DBaseRecognizer.h107 - (BOOL) mismatchIsMissingToken:(id<IntStream>)anInput Follow:(ANTLRBitSet *)follow;
DBaseRecognizer.m261 -(BOOL) mismatchIsMissingToken:(id<IntStream>)anInput Follow:(ANTLRBitSet *) follow
755 if ( [self mismatchIsMissingToken:anInput Follow:follow] ) {
771 if ( [self mismatchIsMissingToken:anInput Follow:follow] ) {
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/
DBaseRecognizer.as92 public function mismatchIsMissingToken(input:IntStream, follow:BitSet):Boolean {
133 else if ( mismatchIsMissingToken(input, follow) ) {
578 if ( mismatchIsMissingToken(input, follow) ) {
594 if ( mismatchIsMissingToken(input, follow) ) {
/external/smali/smalidea/src/main/antlr/
DsmalideaParser.g119 if ( mismatchIsMissingToken(input, follow) ) {
/external/antlr/tool/
DCHANGES.txt977 mismatchIsMissingToken(IntStream input, BitSet follow)