HomeSort by relevance Sort by last modified time
    Searched refs:consume (Results 1 - 25 of 258) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/clang/test/SemaCXX/
string-plus-int.cpp 4 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(L"foo" + 5); // expected-warning {{adding 'int' to a string does not append to the string}} expec (…)
    [all...]
  /dalvik/dx/tests/095-dex-const-string-jumbo/
Blort.java 18 static public void consume(String s) { method in class:Blort
23 consume("zorch");
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreePatternLexer.java 60 consume(); method
67 consume(); method
72 consume(); method
77 consume(); method
82 consume(); method
86 consume(); method
90 consume(); method
94 consume(); method
98 consume(); method
102 consume(); method
105 consume(); method
114 consume(); method
116 consume(); method
119 consume(); method
126 protected void consume() { method in class:TreePatternLexer
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
Consumer.java 22 * @param <A> The type of data to consume.
29 * @param value The value to consume.
32 boolean consume(A value); method in interface:Consumer
NoOpConsumer.java 25 public boolean consume(A result) { method in class:NoOpConsumer
Consumers.java 32 accepted = consumer.consume(value);
41 consumer.consume(value);
45 consumer.consume(value);
67 public boolean consume(A value) {
77 public boolean consume(A value) {
NowOrLaterWrapper.java 31 public boolean consume(A value) {
32 return consumer.consume(get(value));
Now.java 30 consumer.consume(getNow());
SQLiteAsyncQuery.java 41 consumer.consume(result);
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarSpelunker.java 65 void consume() throws IOException { token = scanner.nextToken(); } method in class:GrammarSpelunker
69 if ( token.equals(expecting) ) consume(); method
79 consume(); method
85 consume(); method
92 consume(); method
106 consume(); method
110 consume(); // move beyond name method
119 consume(); method
121 consume(); method
135 consume(); method
161 consume(); method
168 void consume() throws IOException { c = input.read(); } method in class:GrammarSpelunker.Scanner
174 case ';' : consume(); return ";"; method
175 case '{' : consume(); return "{"; method
176 case '}' : consume(); return "}"; method
177 case ':' : consume(); return ":"; method
178 case '@' : consume(); return "@"; method
184 consume(); \/\/ ignore anything else method
193 while ( c!=EOF && isID_LETTER() ) { buf.append((char)c); consume(); } method
199 while ( c!=EOF && isDIGIT() ) { buf.append((char)c); consume(); } method
205 consume(); method
209 consume(); method
212 consume(); method
214 consume(); \/\/ scan past ' method
220 consume(); method
222 consume(); method
226 consume(); method
227 if ( c=='\/' ) { consume(); break scarf; } method
230 while ( c!=EOF && c!='*' ) consume(); method
235 while ( c!=EOF && c!='\\n' ) consume(); method
    [all...]
  /external/webkit/Source/JavaScriptCore/yarr/
YarrParser.h 266 consume();
276 consume();
285 consume();
296 consume();
300 consume();
304 consume();
308 consume();
312 consume();
316 consume();
360 consume();
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
IntStream.java 34 void consume(); method in interface:IntStream
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestBufferedTreeNodeStream.java 63 stream.consume(); // consume 101
64 stream.consume(); // consume DN
65 stream.consume(); // consume 102
68 stream.consume(); // consume 107
69 stream.consume(); // consume U
    [all...]
TestTreeNodeStream.java 183 for (int k=1; k<=13; k++) { // consume til end
185 stream.consume();
190 // consume til end again :)
191 for (int k=1; k<=13; k++) { // consume til end
193 stream.consume();
213 for (int k=1; k<=7; k++) { // consume til middle
215 stream.consume();
219 stream.consume(); // consume 107
220 stream.consume(); // consume U
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRIntStream.h 29 - (void) consume;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRIntStream.h 29 - (void) consume;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRIntStream.h 29 - (void) consume;
  /external/clang/test/CodeGenCXX/
blocks.cpp 103 extern void consume(void(^)());
104 consume(^{ (void) b; });
118 extern void consume(void(^)());
119 consume(^{ return foo(A()); });
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
ConsumerTrap.java 24 * @param <A> The type of values to consume.
30 public boolean consume(A value) { method in class:ConsumerTrap
  /sdk/emulator/opengl/host/libs/libOpenglRender/
ReadBuffer.h 28 void consume(size_t amount); // notify that 'amount' data has been consumed;
  /sdk/emulator/opengl/tests/ut_renderer/
ReadBuffer.h 28 void consume(size_t amount); // notify that 'amount' data has been consumed;
  /external/antlr/antlr-3.4/runtime/Python/unittests/
teststreams.py 29 """StringStream.consume()"""
33 stream.consume() # f
38 stream.consume() # o
43 stream.consume() # o
48 stream.consume() # \n
53 stream.consume() # b
58 stream.consume() # a
63 stream.consume() # r
68 stream.consume() # EOF
73 stream.consume() # EO
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/test/org/antlr/runtime/test/
TestANTLRStringStream.as 22 stream.consume();
30 // now consume past EOF for a few ticks, nothing should change
32 stream.consume();
51 // now consume() one byte and run some more tests.
52 stream.consume();
68 stream.consume();
69 stream.consume();
90 stream.consume();
91 stream.consume();
93 stream.consume();
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/charset/
Charset_TestGenerator.java 105 abstract void consume (int code); method in class:Charset_TestGenerator.CodesGenerator
115 void consume (int code) { method in class:Charset_TestGenerator.CodesGenerator1
135 void consume (int code) { method in class:Charset_TestGenerator.CodesGenerator2
152 void consume (int code) { method in class:Charset_TestGenerator.CodesGenerator3
178 gen.consume(code);
183 gen.consume(code);
191 abstract void consume (int code); method in class:Charset_TestGenerator.Dumper
206 void consume (int code) { method in class:Charset_TestGenerator.Dumper1
227 out.consume(bb.get());
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
IntStream.as 33 function consume():void;

Completed in 334 milliseconds

1 2 3 4 5 6 7 8 91011