Searched defs:reset (Results 1 - 25 of 1221) sorted by path

1234567891011>>

/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/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DANTLRStringStream.as76 public function reset():void { function
H A DBaseRecognizer.as35 /** reset the parser's state; subclasses must rewinds the input stream */
36 public function reset():void { function
150 * 5. next match() will reset errorRecovery mode
H A DCommonTokenStream.as312 public function reset():void { function
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DCommonTreeNodeStream.as327 public function reset():void { function
H A DRewriteRuleElementStream.as56 * from then on. Streams are reset after subrules so that the streams
57 * can be reused in future subrules. So, reset must set a dirty bit.
89 * Once we reset the stream, any future use will need duplicates. Set
92 public function reset():void { function
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3baserecognizer.h162 * 5. next match() will reset errorRecovery mode
350 void (*reset) (struct ANTLR3_BASE_RECOGNIZER_struct * recognizer); member in struct:ANTLR3_BASE_RECOGNIZER_struct
H A Dantlr3commontoken.h351 void (*reset) (struct ANTLR3_TOKEN_FACTORY_struct * factory); member in struct:ANTLR3_TOKEN_FACTORY_struct
H A Dantlr3commontreenodestream.h297 void (*reset) (struct ANTLR3_COMMON_TREE_NODE_STREAM_struct * ctns); member in struct:ANTLR3_COMMON_TREE_NODE_STREAM_struct
H A Dantlr3input.h139 void (*reset) (struct ANTLR3_INPUT_STREAM_struct * input); member in struct:ANTLR3_INPUT_STREAM_struct
204 * current line offset is reset to 0. The Pointer for the line of input we are consuming
H A Dantlr3rewritestreams.h93 /// from then on. Streams are reset after sub rules so that the streams
94 /// can be reused in future sub rules. So, reset must set a dirty bit.
108 void (*reset) (struct ANTLR3_REWRITE_RULE_ELEMENT_STREAM_struct * stream); member in struct:ANTLR3_REWRITE_RULE_ELEMENT_STREAM_struct
H A Dantlr3tokenstream.h291 void (*reset) (struct ANTLR3_COMMON_TOKEN_STREAM_struct * tokenStream); member in struct:ANTLR3_COMMON_TOKEN_STREAM_struct
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3baserecognizer.c76 static void reset (pANTLR3_BASE_RECOGNIZER recognizer);
145 // Install the one we were given, and do not reset it here
181 recognizer->reset = reset;
716 /// 5. next match() will reset errorRecovery mode
2120 reset(pANTLR3_BASE_RECOGNIZER recognizer) function
H A Dantlr3commontreenodestream.c47 static void reset (pANTLR3_COMMON_TREE_NODE_STREAM ctns);
186 stream->reset = reset;
329 stream->reset = reset;
526 reset (pANTLR3_COMMON_TREE_NODE_STREAM ctns) function
535 // Free and reset the node stack only if this is not
H A Dantlr3lexer.c66 static void reset (pANTLR3_BASE_RECOGNIZER rec);
99 lexer->rec->reset = reset;
175 reset (pANTLR3_BASE_RECOGNIZER rec) function
191 // a token factory that needs a reset. Do that here
195 lexer->rec->state->tokFactory->reset(lexer->rec->state->tokFactory);
394 // Install the input stream and reset the lexer
H A Dantlr3rewritestreams.c40 static void reset (pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream);
225 stream->reset = reset;
510 reset (pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream) function
H A Dantlr3tokenstream.c50 static void reset (pANTLR3_COMMON_TOKEN_STREAM cts);
163 reset (pANTLR3_COMMON_TOKEN_STREAM cts) function
181 // then we just reset the vector count so that it starts
296 stream->reset = reset;
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DANTLRStringStream.java90 public void reset() { method in class:ANTLRStringStream
H A DBaseRecognizer.java70 /** reset the parser's state; subclasses must rewinds the input stream */
71 public void reset() { method in class:BaseRecognizer
172 * 5. next match() will reset errorRecovery mode
H A DBufferedTokenStream.java101 public void reset() { method in class:BufferedTokenStream
H A DCommonTokenStream.java125 public void reset() { method in class:CommonTokenStream
126 super.reset();
H A DLegacyCommonTokenStream.java346 public void reset() { method in class:LegacyCommonTokenStream
H A DLexer.java51 public void reset() { method in class:Lexer
52 super.reset(); // reset all recognizer state variables
126 /** Set the char stream and reset the lexer */
129 reset();
H A DParser.java48 public void reset() { method in class:Parser
49 super.reset(); // reset all recognizer state variables
79 /** Set the token stream and reset the parser */
82 reset();

Completed in 939 milliseconds

1234567891011>>