Searched defs:consume (Results 1 - 25 of 47) sorted by relevance

12

/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/Ruby/lib/antlr3/streams/
H A Dinteractive.rb90 def consume method in class:ANTLR3.InteractiveStringStream
94 consume
/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/Java/src/main/java/org/antlr/runtime/
H A DIntStream.java34 void consume(); method in interface:IntStream
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 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
/external/clang/test/SemaCXX/
H A Dstring-plus-int.cpp4 void consume(const char* c) {} function
5 void consume(const unsigned char* c) {} function
6 void consume(const wchar_t* c) {} function
31 consume("foo" + 5); // expected-warning {{adding 'int' to a string does not append to the string}} expected-note {{use array indexing to silence this warning}}
32 consume("foo" + index); // expected-warning {{adding 'int' to a string does not append to the string}} expected-note {{use array indexing to silence this warning}}
33 consume("foo" + kMyEnum); // expected-warning {{adding 'MyEnum' to a string does not append to the string}} expected-note {{use array indexing to silence this warning}}
35 consume(5 + "foo"); // expected-warning {{adding 'int' to a string does not append to the string}} expected-note {{use array indexing to silence this warning}}
36 consume(index + "foo"); // expected-warning {{adding 'int' to a string does not append to the string}} expected-note {{use array indexing to silence this warning}}
37 consume(kMyEnum + "foo"); // expected-warning {{adding 'MyEnum' to a string does not append to the string}} expected-note {{use array indexing to silence this warning}}
43 consume(
[all...]
/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/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/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/Java/src/main/java/org/antlr/runtime/tree/
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/Ruby/lib/antlr3/tree/
H A Ddebug.rb119 def consume method in class:ANTLR3.Debug.TreeNodeStream
/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/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DDebugInfoItem.java136 * @param consume whether to claim to have consumed output for
141 AnnotatedOutput out, boolean consume) {
142 byte[] result = encode0(file, prefix, debugPrint, out, consume);
167 * @param consume whether to claim to have consumed output for
172 AnnotatedOutput out, boolean consume) {
189 consume);
140 encode(DexFile file, String prefix, PrintWriter debugPrint, AnnotatedOutput out, boolean consume) argument
171 encode0(DexFile file, String prefix, PrintWriter debugPrint, AnnotatedOutput out, boolean consume) argument
/external/nist-sip/java/gov/nist/core/
H A DStringTokenizer.java153 public void consume() { method in class:StringTokenizer
157 public void consume(int k) { method in class:StringTokenizer
182 consume(1);
/external/webkit/Source/WebKit2/Shared/
H A DSandboxExtension.h77 bool consume();
98 inline bool SandboxExtension::consume() { return true; } function in class:WebKit::SandboxExtension
/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
/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...]

Completed in 7584 milliseconds

12