Searched defs:consume (Results 1 - 25 of 79) sorted by path

1234

/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.as83 public function consume():void { function
168 /** consume() ahead until p==index; can't just set p=index as we must
176 // seek forward, consume until p hits index
178 consume();
H A DCommonTokenStream.as61 * to consume). p==-1 indicates that the tokens list is empty
114 * must become active with LT(1) available. consume() simply
120 public function consume():void { function
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DCommonTreeNodeStream.as85 * to consume). If -1, nodes array not filled yet.
265 public function consume():void { function
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3intstream.h121 void (*consume) (struct ANTLR3_INT_STREAM_struct * intStream); member in struct:ANTLR3_INT_STREAM_struct
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3commontreenodestream.c66 static void consume (pANTLR3_INT_STREAM is);
206 stream->tnstream->istream->consume = consume;
348 stream->tnstream->istream->consume = consume;
615 consume (pANTLR3_INT_STREAM is) function
699 /// consume() ahead until we hit index. Can't just jump ahead--must
H A Dantlr3tokenstream.c66 static void consume (pANTLR3_INT_STREAM is);
224 stream->tstream->istream->consume = dbgConsume;
319 stream->tstream->istream->consume = consume;
340 ts->istream->consume = dbgConsume;
593 * must become active with LT(1) available. consume() simply
600 consume (pANTLR3_INT_STREAM is) function
616 /// As per ordinary consume but notifies the debugger about hidden
637 consume(is); // Standard consumer
645 // The standard consume cause
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DANTLRStringStream.java97 public void consume() { method in class:ANTLRStringStream
191 /** consume() ahead until p==index; can't just set p=index as we must
199 // seek forward, consume until p hits index
201 consume();
H A DBufferedTokenStream.java63 * to consume). tokens[p] should be LT(1). p=-1 indicates need
111 * must become active with LT(1) available. consume() simply
117 public void consume() { method in class:BufferedTokenStream
H A DCommonTokenStream.java37 * token using consume(), LT(), etc. the stream does not pull from the lexer.
64 public void consume() { method in class:CommonTokenStream
H A DIntStream.java34 void consume(); method in interface:IntStream
H A DLegacyCommonTokenStream.java65 * to consume). p==-1 indicates that the tokens list is empty
129 * must become active with LT(1) available. consume() simply
135 public void consume() { method in class:LegacyCommonTokenStream
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DDebugTokenStream.java54 public void consume() { method in class:DebugTokenStream
60 input.consume();
71 /* consume all initial off-channel tokens */
H A DDebugTreeNodeStream.java64 public void consume() { method in class:DebugTreeNodeStream
66 input.consume();
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
H A DLookaheadStream.java89 public void consume() { method in class:LookaheadStream
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DBufferedTreeNodeStream.java112 * to consume). If -1, nodes array not filled yet.
298 public void consume() { method in class:BufferedTreeNodeStream
H A DTreePatternLexer.java60 consume();
67 consume();
72 consume();
77 consume();
82 consume();
86 consume();
90 consume();
94 consume();
98 consume();
102 consume();
126 protected void consume() { method in class:TreePatternLexer
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DLookaheadStream.h80 public void consume() { sync(1); remove(); } function in class:FastQueue
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DANTLRStringStream.pm92 sub consume { subroutine
193 # consume() ahead unit p == index; can't just set p = index as we must update
204 # seek forward, consume until p hits index
206 $self->consume();
H A DCommonTokenStream.pm109 sub consume { subroutine
/external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
H A DANTLRStringStream.pm10 sub consume : Test(2) { subroutine
15 $s->consume();
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Ddebug.py112 def consume(self): member in class:DebugTokenStream
118 self.input.consume()
129 """consume all initial off-channel tokens"""
453 so that a GUI can easily track what LT/consume events are
588 """Indicates the recognizer is about to consume tokens to resynchronize
589 the parser. Any consume events from here until the recovered event
H A Dstreams.py59 def consume(self): member in class:IntStream
385 def consume(self): member in class:ANTLRStringStream
477 consume() ahead until p==index; can't just set p=index as we must
485 # seek forward, consume until p hits index
487 self.consume()
649 # to consume). p==-1 indicates that the tokens list is empty
722 def consume(self): member in class:CommonTokenStream
725 must become active with LT(1) available. consume() simply
H A Dtree.py1409 # sometimes resync does not consume a token (when LT(1) is
1852 # to consume). If -1, nodes array not filled yet.
2007 def consume(self): member in class:CommonTreeNodeStream
2322 self.input.consume() # not subtree, consume 1 node and return
2330 self.input.consume()
2339 self.input.consume() # consume UP

Completed in 5007 milliseconds

1234