Home | History | Annotate | Download | only in include

Lines Matching full:that

18 // modification, are permitted provided that the following conditions
70 /// so that this can be passed back to it whenever the api functions
75 /// Indicates the type of recognizer that we are an instance of.
88 /// A pointer to the shared recognizer state, such that multiple
97 /// so that it does not cause overhead by having to check this pointer
103 /// Pointer to a function that matches the current input symbol
106 /// attempt to perform one token insertion or deletion if that is
114 /// Note that errors are signalled by setting the error flag below
122 /// Pointer to a function that matches the next token/char in the input stream
127 /// Pointer to a function that decides if the token ahead of the current one is the
129 /// and can be reported that way.
134 /// Pointer to a function that decides if the current token is one that can logically
141 /** Pointer to a function that works out what to do when a token mismatch
142 * occurs, so that Tree parsers can behave differently to other recognizers.
150 * error recovery is in force, so that it does not print out more than one error messages
166 /** Pointer to a function that is called to display a recognition error message. You may
167 * override this function independently of (*reportError)() above as that function calls
182 /** Pointer to a function that recovers from an error found in the input stream.
184 * be from a mismatched token that the (*match)() could not recover from.
188 /** Pointer to a function that is a hook to listen to token consumption during error recovery.
193 /** Pointer to a function that is a hook to listen to token consumption during error recovery.
198 /** Pointer to a function that is a hook to listen to token consumption during error recovery.
203 /** Pointer to a function that is a hook to listen to token consumption during error recovery.
213 /** Pointer to a function that computes the context-sensitive FOLLOW set for the
225 /** Pointer to a function that recovers from a mismatched token in the input stream.
233 /** Pointer to a function that recovers from a mismatched set in the token stream, in a similar manner
245 /** Pointer to function that consumes input until the next token matches
251 /** Pointer to function that consumes input until the next token matches
257 /** Pointer to function that returns an ANTLR3_LIST of the strings that identify
258 * the rules in the parser that got you to this point. Can be overridden by installing your
267 /** Pointer to a function that converts an ANLR3_LIST of tokens to an ANTLR3_LIST of
277 * then it will return the point where it last stopped parsing after that start point.
283 /** Pointer to function that determines whether the rule has parsed input at the current index
289 /** Pointer to function that records whether the rule has parsed the input at a
296 /// Pointer to a function that returns the current input symbol.
312 /// symbols. But, actions might refer to that missing symbol.
314 /// that there has been an identifier matched previously and that
315 /// $x points at that token. If that token is missing, but
316 /// the next token in the stream is what we want we assume that
334 /** Pointer to a function that returns whether the supplied grammar function
335 * will parse the current input stream or not. This is the way that syntactic
337 * via a pointer to a function (hence that's what all the ANTLR3 C interfaces
343 /** Pointer to a function that can construct a generic exception structure
352 /** Pointer to a function that knows how to free the resources of a base recognizer.