Searched defs:consume (Results 26 - 50 of 78) sorted by relevance

1234

/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 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/Ruby/lib/antlr3/
H A Dstreams.rb90 === consume / look / peek
92 <tt>stream.consume</tt> is used to advance a stream one unit. StringStreams are
171 # :method: consume
173 abstract :consume
294 Then, all <tt>peek</tt>, <tt>look</tt>, and <tt>consume</tt> operations only
478 def consume method in class:ANTLR3.that.StringStream
729 tokens will be filtered out by the #peek, #look, and #consume methods.
901 def consume method in class:ANTLR3.that.CommonTokenStream
1027 consume
H A Ddebug.rb307 def consume method in class:ANTLR3.Debug.TokenStream
417 # so that a GUI can easily track what look/consume events are
550 # Indicates the recognizer is about to consume tokens to resynchronize
551 # the parser. Any consume events from here until the recovered event
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DGrammarSpelunker.java65 void consume() throws IOException { token = scanner.nextToken(); } method in class:GrammarSpelunker
69 if ( token.equals(expecting) ) consume();
79 consume();
85 consume();
92 consume();
106 consume();
110 consume(); // move beyond name
119 consume();
121 consume();
135 consume();
168 void consume() throws IOException { c = input.read(); } method in class:GrammarSpelunker.Scanner
[all...]
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dtreewizard.py85 self.consume()
97 self.consume()
102 self.consume()
105 self.consume()
110 self.consume()
114 self.consume()
118 self.consume()
122 self.consume()
126 self.consume()
130 self.consume()
154 def consume(self): member in class:TreePatternLexer
[all...]
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
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
H A DObject.js139 consume: function(preventDefault)
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebCrypto.h120 // consume() will return |true| on the successful addition of data to the
122 // a return of |false|, consume() should not be called again (nor should
124 virtual bool consume(const unsigned char* data, unsigned dataSize) { return false; } function in class:blink::WebCryptoDigestor
128 // either case, neither finish() nor consume() should be called again after
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dsocketadapters.cc325 size_t consume = _min(*len - pos, content_length_); local
326 pos += consume;
328 content_length_ -= consume;
/external/chromium_org/third_party/mesa/src/src/gallium/tools/trace/
H A Dparse.py150 self.consume()
152 def consume(self): member in class:XmlParser
163 self.consume()
169 self.consume()
174 self.consume()
179 self.consume()
185 self.consume()
/external/chromium_org/third_party/webrtc/base/
H A Dsocketadapters.cc308 size_t consume = _min(*len - pos, content_length_); local
309 pos += consume;
311 content_length_ -= consume;
/external/deqp/framework/delibs/decpp/
H A DdeBlockBuffer.cpp73 bool consume = true; local
75 while (consume)
95 consume = false;
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DDebugInfoEncoder.java177 * @param consume whether to claim to have consumed output for
182 AnnotatedOutput out, boolean consume) {
186 shouldConsume = consume;
181 convertAndAnnotate(String prefix, PrintWriter debugPrint, AnnotatedOutput out, boolean consume) argument
/external/mesa3d/src/gallium/tools/trace/
H A Dparse.py150 self.consume()
152 def consume(self): member in class:XmlParser
163 self.consume()
169 self.consume()
174 self.consume()
179 self.consume()
185 self.consume()
/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/tree/
H A DBufferedTreeNodeStream.java112 * to consume). If -1, nodes array not filled yet.
298 public void consume() { method in class:BufferedTreeNodeStream
/external/chromium_org/third_party/jinja2/
H A Dutils.py101 def consume(iterable): function
/external/clang/test/SemaTemplate/
H A Dconstexpr-instantiate.cpp13 template<typename T> constexpr int consume(T);
15 const int k = consume(0); // expected-note {{here}}
17 template<typename T> constexpr int consume(T) { return 0; } function in namespace:UseBeforeDefinition
19 constexpr int l = consume(0);
/external/emma/core/java12/com/vladium/jcd/lib/
H A DTypes.java626 consume ('(');
668 consume ('L');
681 consume ('[');
732 private void consume (char expected) throws IOException method in class:Types.methodDescriptorCompiler

Completed in 829 milliseconds

1234