Searched refs:matchedSymbol (Results 1 - 8 of 8) sorted by relevance

/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DBaseRecognizer.java104 Object matchedSymbol = getCurrentInputSymbol(input);
109 return matchedSymbol;
113 return matchedSymbol;
115 matchedSymbol = recoverFromMismatchedToken(input, ttype, follow);
116 return matchedSymbol;
605 Object matchedSymbol = getCurrentInputSymbol(input);
607 return matchedSymbol;
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DBaseRecognizer.js110 var matchedSymbol = this.getCurrentInputSymbol(input);
115 return matchedSymbol;
119 return matchedSymbol;
121 matchedSymbol = this.recoverFromMismatchedToken(input, ttype, follow);
122 return matchedSymbol;
662 var matchedSymbol = this.getCurrentInputSymbol(input);
664 return matchedSymbol;
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3baserecognizer.c421 void * matchedSymbol; local
451 matchedSymbol = recognizer->getCurrentInputSymbol(recognizer, is);
460 return matchedSymbol; // We are done
471 return matchedSymbol;
478 matchedSymbol = recognizer->recoverFromMismatchedToken(recognizer, ttype, follow);
479 return matchedSymbol;
1437 void * matchedSymbol; local
1510 matchedSymbol = recognizer->getCurrentInputSymbol(recognizer, is);
1519 return matchedSymbol;
1530 matchedSymbol
1560 pANTLR3_COMMON_TOKEN matchedSymbol; local
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DBaseRecognizer.cs133 object matchedSymbol = GetCurrentInputSymbol(input);
138 return matchedSymbol;
142 return matchedSymbol;
144 matchedSymbol = RecoverFromMismatchedToken(input, ttype, follow);
145 return matchedSymbol;
631 object matchedSymbol = GetCurrentInputSymbol(input);
633 return matchedSymbol;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DBaseRecognizer.cs144 object matchedSymbol = GetCurrentInputSymbol( input );
150 return matchedSymbol;
155 return matchedSymbol;
157 matchedSymbol = RecoverFromMismatchedToken( input, ttype, follow );
158 return matchedSymbol;
712 object matchedSymbol = GetCurrentInputSymbol( input );
714 return matchedSymbol;
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Drecognizers.py211 matchedSymbol = self.getCurrentInputSymbol(input)
215 return matchedSymbol
218 # FIXME: need to return matchedSymbol here as well. damn!!
221 matchedSymbol = self.recoverFromMismatchedToken(input, ttype, follow)
222 return matchedSymbol
713 matchedSymbol = self.getCurrentInputSymbol(input)
717 return matchedSymbol
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DBaseRecognizer.as66 var matchedSymbol:Object = getCurrentInputSymbol(input);
71 return matchedSymbol;
75 return matchedSymbol;
77 matchedSymbol = recoverFromMismatchedToken(input, ttype, follow);
78 return matchedSymbol;
573 var matchedSymbol:Object = getCurrentInputSymbol(input);
575 return matchedSymbol;
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 760 milliseconds