Home | History | Annotate | Download | only in antlr3

Lines Matching defs:Recognizer

57 recognizer's state. These attributes are externalized from the recognizer itself
58 so that recognizer delegation (which occurs when you import other grammars into
66 a flag indicating whether or not the recognizer is in error recovery mode
127 =begin rdoc ANTLR3::Recognizer
174 =begin rdoc ANTLR3::Recognizer
176 = Recognizer
178 As the base class of all ANTLR-generated recognizers, Recognizer provides
184 recognizer base classes, providing the implementation of the grammar rules
185 itself. this group of classes to implement necessary tasks. Recognizer
197 class Recognizer
215 # generated recognizer code uses this method to stamp
236 # each recognizer gets a default return value structure
259 # scope for a recognizer
355 # Create a new recognizer. The constructor simply ensures that
357 # See the main recognizer subclasses for more specific
358 # information about creating recognizer objects like
367 # Resets the recognizer's state data to initial values.
668 # The recognizer attempts to recover from single missing
799 # a simple method to ask the recognizer to tell me what the current
824 # Returns true if the recognizer is currently in a decision for which
909 BaseRecognizer = Recognizer
916 tailors the core functionality provided by Recognizer to the task of
987 class Lexer < Recognizer
1225 tailors the functionality provided by Recognizer to the task of parsing.
1252 This class does not override much of the functionality in Recognizer, and
1253 thus the API closely mirrors Recognizer.
1256 class Parser < Recognizer