Home
last modified time | relevance | path

Searched refs:getCurrentInputSymbol (Results 1 – 25 of 26) sorted by relevance

12

/external/antlr/runtime/Cpp/include/
Dantlr3baserecognizer.hpp452 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>);
Dantlr3baserecognizer.inl63 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/
Dantlr3treeparser.c46 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
Dantlr3lexer.c62 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
Dantlr3baserecognizer.c78 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/
DBaseRecognizer.js110 var matchedSymbol = this.getCurrentInputSymbol(input);
662 var matchedSymbol = this.getCurrentInputSymbol(input);
709 getCurrentInputSymbol: function(input) { return null; },
DParser.js18 getCurrentInputSymbol: function(input) { method
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/
DBaseRecognizer.java104 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
DParser.java55 protected Object getCurrentInputSymbol(IntStream input) { in getCurrentInputSymbol() method in Parser
/external/antlr/runtime/ObjC/Framework/
DParser.h47 - (id) getCurrentInputSymbol:(id<TokenStream>)anInput;
DTreeParser.h55 - (id) getCurrentInputSymbol:(id<IntStream>) anInput;
DBaseRecognizer.h137 - (id) getCurrentInputSymbol:(id<IntStream>)anInput;
DParser.m92 - (id) getCurrentInputSymbol:(id<TokenStream>)anInput
DTreeParser.m99 - (id) getCurrentInputSymbol:(id<IntStream>) anInput
DBaseRecognizer.m234 id matchedSymbol = [self getCurrentInputSymbol:anInput];
750 id matchedSymbol = [self getCurrentInputSymbol:anInput];
790 - (id) getCurrentInputSymbol:(id<IntStream>)anInput
/external/antlr/runtime/Python/antlr3/
Drecognizers.py211 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
Dtree.py2215 def getCurrentInputSymbol(self, input): member in TreeParser
/external/antlr/runtime/Python3/antlr3/
Drecognizers.py210 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
Dtree.py2202 def getCurrentInputSymbol(self, input): member in TreeParser
/external/antlr/runtime/C/include/
Dantlr3baserecognizer.h306 void * (*getCurrentInputSymbol) ( struct ANTLR3_BASE_RECOGNIZER_struct * recognizer, member
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/tree/
DTreeParser.js39 getCurrentInputSymbol: function(input) { method
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/
DTreeParser.java84 protected Object getCurrentInputSymbol(IntStream input) { in getCurrentInputSymbol() method in TreeParser
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/
DParser.as49 protected override function getCurrentInputSymbol(input:IntStream):Object {
DBaseRecognizer.as66 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/
DTreeParser.as66 protected override function getCurrentInputSymbol(input:IntStream):Object {

12