/external/antlr/runtime/Cpp/include/ |
D | antlr3baserecognizer.hpp | 452 const UnitType* getCurrentInputSymbol(IntStreamType* istream); 453 const UnitType* getCurrentInputSymbol(IntStreamType* istream, ClassForwarder<LexerType>); 454 const UnitType* getCurrentInputSymbol(IntStreamType* istream, ClassForwarder<ParserType>); 455 const UnitType* getCurrentInputSymbol(IntStreamType* istream, ClassForwarder<TreeParserType>);
|
D | antlr3baserecognizer.inl | 63 const UnitType* matchedSymbol = this->getCurrentInputSymbol(is); 461 matchedSymbol = this->getCurrentInputSymbol(is); 758 BaseRecognizer<ImplTraits, StreamType>::getCurrentInputSymbol( IntStreamType* istream ) function in BaseRecognizer 760 return this->getCurrentInputSymbol( istream, ClassForwarder<SuperType>() ); 765 BaseRecognizer<ImplTraits, StreamType>::getCurrentInputSymbol(IntStreamType* istream, ClassForwarde… function in BaseRecognizer 772 BaseRecognizer<ImplTraits, StreamType>::getCurrentInputSymbol(IntStreamType* istream, ClassForwarde… function in BaseRecognizer 781 BaseRecognizer<ImplTraits, StreamType>::getCurrentInputSymbol(IntStreamType* istream, ClassForwarde… function in BaseRecognizer
|
/external/antlr/runtime/C/src/ |
D | antlr3treeparser.c | 46 static void * getCurrentInputSymbol (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM istrea… 85 parser->rec->getCurrentInputSymbol = getCurrentInputSymbol; in antlr3TreeParserNewStream() 189 getCurrentInputSymbol (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM istream) in getCurrentInputSymbol() function
|
D | antlr3lexer.c | 62 static void * getCurrentInputSymbol (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM ist… 100 lexer->rec->getCurrentInputSymbol = getCurrentInputSymbol; in antlr3LexerNew() 895 getCurrentInputSymbol (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM istream) in getCurrentInputSymbol() function
|
D | antlr3baserecognizer.c | 78 static void * getCurrentInputSymbol (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM ist… 184 recognizer->getCurrentInputSymbol = getCurrentInputSymbol; in antlr3BaseRecognizerNew() 451 matchedSymbol = recognizer->getCurrentInputSymbol(recognizer, is); in match() 1510 matchedSymbol = recognizer->getCurrentInputSymbol(recognizer, is); in recoverFromMismatchedToken() 2163 getCurrentInputSymbol (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM istream) in getCurrentInputSymbol() function
|
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/ |
D | BaseRecognizer.js | 110 var matchedSymbol = this.getCurrentInputSymbol(input); 662 var matchedSymbol = this.getCurrentInputSymbol(input); 709 getCurrentInputSymbol: function(input) { return null; },
|
D | Parser.js | 18 getCurrentInputSymbol: function(input) { method
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/ |
D | BaseRecognizer.java | 104 Object matchedSymbol = getCurrentInputSymbol(input); in match() 605 Object matchedSymbol = getCurrentInputSymbol(input); in recoverFromMismatchedToken() 646 protected Object getCurrentInputSymbol(IntStream input) { return null; } in getCurrentInputSymbol() method in BaseRecognizer
|
D | Parser.java | 55 protected Object getCurrentInputSymbol(IntStream input) { in getCurrentInputSymbol() method in Parser
|
/external/antlr/runtime/ObjC/Framework/ |
D | Parser.h | 47 - (id) getCurrentInputSymbol:(id<TokenStream>)anInput;
|
D | TreeParser.h | 55 - (id) getCurrentInputSymbol:(id<IntStream>) anInput;
|
D | BaseRecognizer.h | 137 - (id) getCurrentInputSymbol:(id<IntStream>)anInput;
|
D | Parser.m | 92 - (id) getCurrentInputSymbol:(id<TokenStream>)anInput
|
D | TreeParser.m | 99 - (id) getCurrentInputSymbol:(id<IntStream>) anInput
|
D | BaseRecognizer.m | 234 id matchedSymbol = [self getCurrentInputSymbol:anInput]; 750 id matchedSymbol = [self getCurrentInputSymbol:anInput]; 790 - (id) getCurrentInputSymbol:(id<IntStream>)anInput
|
/external/antlr/runtime/Python/antlr3/ |
D | recognizers.py | 211 matchedSymbol = self.getCurrentInputSymbol(input) 713 matchedSymbol = self.getCurrentInputSymbol(input) 745 def getCurrentInputSymbol(self, input): member in BaseRecognizer 1379 def getCurrentInputSymbol(self, input): member in Parser
|
D | tree.py | 2215 def getCurrentInputSymbol(self, input): member in TreeParser
|
/external/antlr/runtime/Python3/antlr3/ |
D | recognizers.py | 210 matchedSymbol = self.getCurrentInputSymbol(input) 705 matchedSymbol = self.getCurrentInputSymbol(input) 737 def getCurrentInputSymbol(self, input): member in BaseRecognizer 1348 def getCurrentInputSymbol(self, input): member in Parser
|
D | tree.py | 2202 def getCurrentInputSymbol(self, input): member in TreeParser
|
/external/antlr/runtime/C/include/ |
D | antlr3baserecognizer.h | 306 void * (*getCurrentInputSymbol) ( struct ANTLR3_BASE_RECOGNIZER_struct * recognizer, member
|
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/tree/ |
D | TreeParser.js | 39 getCurrentInputSymbol: function(input) { method
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
D | TreeParser.java | 84 protected Object getCurrentInputSymbol(IntStream input) { in getCurrentInputSymbol() method in TreeParser
|
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/ |
D | Parser.as | 49 protected override function getCurrentInputSymbol(input:IntStream):Object {
|
D | BaseRecognizer.as | 66 var matchedSymbol:Object = getCurrentInputSymbol(input); 573 var matchedSymbol:Object = getCurrentInputSymbol(input); 613 protected function getCurrentInputSymbol(input:IntStream):Object { return null; }
|
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
D | TreeParser.as | 66 protected override function getCurrentInputSymbol(input:IntStream):Object {
|