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

1 2 3 4 5 6 7 8 91011>>

  /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
BarrierConsumer.java 41 * @param expectedCount The number of values to consume.
72 public boolean consume(A value) { method in class:BarrierConsumer
  /external/webkit/JavaScriptCore/wrec/
WRECParser.cpp 113 consume();
117 consume();
121 consume();
126 consume();
141 consume();
149 consume();
169 consume();
239 if (consume() != ')') {
255 if (consume() != ')') {
278 consume();
    [all...]
WRECParser.h 78 setError(ParenthesesUnmatched); // Parsing the pattern should fully consume it.
130 int consume() function in class:JSC::WREC::Parser
151 return consume() - '0';
170 n = (n << 4) | WTF::toASCIIHexValue(consume());
  /dalvik/dx/tests/095-dex-const-string-jumbo/
expected.txt 5 0004: invoke-static {v1}, Blort.consume:(Ljava/lang/String;)V
Blort.java 18 static public void consume(String s) { method in class:Blort
23 consume("zorch");
  /external/webkit/JavaScriptCore/yarr/
RegexParser.h 230 consume();
240 consume();
249 consume();
260 consume();
264 consume();
268 consume();
272 consume();
276 consume();
280 consume();
324 consume();
    [all...]
  /frameworks/base/media/java/android/drm/mobile1/
DrmRights.java 85 * Consume the rights of the given permission.
89 * @return true if consume success.
90 * false if consume failure.
93 /* call native method to consume and update rights */
115 * native method: consume the rights of the given permission.
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ViaParser.java 60 // consume the "/"
69 // We consume the "/"
94 this.lexer.consume(1);
113 lexer.consume(1);
118 lexer.consume(1);
124 lexer.consume(1);
127 lexer.consume(1);
132 lexer.consume(1);
160 lexer.consume(1);
214 this.lexer.consume(1); // Consume the comm
    [all...]
URLParser.java 118 lexer.consume(1);
143 lexer.consume(1);
145 lexer.consume(3);
161 lexer.consume(1);
197 lexer.consume(1);
224 lexer.consume(3);
243 lexer.consume(1);
260 lexer.consume(1);
263 lexer.consume(1);
267 lexer.consume(3)
    [all...]
ParametersParser.java 55 this.lexer.consume(1);
77 else lexer.consume(1);
  /external/protobuf/src/google/protobuf/compiler/
parser.cc 131 bool Parser::Consume(const char* text, const char* error) {
140 bool Parser::Consume(const char* text) {
347 DO(Consume("syntax", "File must begin with 'syntax = \"proto2\";'."));
348 DO(Consume("="));
352 DO(Consume(";"));
395 DO(Consume("message"));
403 DO(Consume("{"));
463 DO(Consume("=", "Missing field number."));
499 DO(Consume(";"));
517 DO(Consume("]"));
    [all...]
parser.h 119 // Consume the rest of the current statement. This consumes tokens
124 // EOF Returns (can't consume).
130 // Consume the rest of the current block, including nested blocks,
147 // If the next token exactly matches the text given, consume it and return
155 // Consume a token with the exact text given.
156 bool Consume(const char* text, const char* error);
159 bool Consume(const char* text);
160 // Consume a token of type IDENTIFIER and store its text in "output".
162 // Consume an integer and store its value in "output".
164 // Consume a 64-bit integer and store its value in "output". If the valu
    [all...]
  /external/chromium/base/
event_trace_consumer_win.h 15 // This class is a base class that makes it easier to consume events
27 // consumer.Consume();
52 // Consume all open sessions from beginning to end.
53 HRESULT Consume();
117 HRESULT EtwTraceConsumerBase<ImplClass>::Consume() {
event_trace_consumer_win_unittest.cc 95 ASSERT_HRESULT_FAILED(consumer_.Consume());
113 HRESULT hr = consumer_.Consume();
285 // Now consume the event(s).
289 hr = consumer_.Consume();
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
QueryTask.java 42 * @param handler Handler that {@link Consumer#consume} will
64 mConsumer.consume(cursor);
68 boolean accepted = mConsumer.consume(cursor);
  /frameworks/base/media/libstagefright/matroska/
mkvparser.cpp 390 pos += len; //consume id
399 pos += len; //consume length of size of payload
404 pos += size; //consume size of payload
435 pos += len; //consume id
443 pos += len; //consume length of size of payload
464 pos += size_; //consume size of payload
495 pos += len; //consume id
503 pos += len; //consume length of size of payload
516 pos += size_; //consume size of payload
554 pos += idlen + sizelen; //consume id and size fields
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
DebugInfoItem.java 138 * @param consume whether to claim to have consumed output for
143 AnnotatedOutput out, boolean consume) {
144 byte[] result = encode0(file, prefix, debugPrint, out, consume);
169 * @param consume whether to claim to have consumed output for
174 AnnotatedOutput out, boolean consume) {
191 consume);
CatchStructs.java 230 * @param annotateTo {@code null-ok;} where to consume bytes and annotate to
236 boolean consume = (annotateTo != null);
237 int amt1 = consume ? 6 : 0;
238 int amt2 = consume ? 2 : 0;
242 if (consume) {
255 if (consume) {
264 if (! consume) {
301 * @param size {@code >= 1;} the number of bytes the handlers consume
  /external/nist-sip/java/gov/nist/core/
LexerCore.java 246 consume(1);
255 consume(1);
268 consume(1);
281 consume(1);
378 consume(1);
396 consume(1);
416 consume(1);
436 consume(1);
468 consume(1);
510 consume(1)
    [all...]
HostNameParser.java 110 lexer.consume(1);
113 lexer.consume(1);
118 lexer.consume(1);
136 lexer.consume(stripLen+1);
151 lexer.consume(1);
154 lexer.consume(1);
275 lexer.consume(1);
  /libcore/luni/src/test/java/tests/api/java/nio/charset/
Charset_TestGenerator.java 111 abstract void consume (int code); method in class:Charset_TestGenerator.CodesGenerator
121 void consume (int code) { method in class:Charset_TestGenerator.CodesGenerator1
141 void consume (int code) { method in class:Charset_TestGenerator.CodesGenerator2
158 void consume (int code) { method in class:Charset_TestGenerator.CodesGenerator3
184 gen.consume(code);
189 gen.consume(code);
197 abstract void consume (int code); method in class:Charset_TestGenerator.Dumper
212 void consume (int code) { method in class:Charset_TestGenerator.Dumper1
233 out.consume(bb.get());
  /external/protobuf/src/google/protobuf/io/
tokenizer.h 214 // Consume this character and advance to the next one.
234 // The following four methods are used to consume tokens of specific
235 // types. They are actually used to consume all characters *after*
239 // Read and consume a string, ending when the given delimiter is
243 // Read and consume a number, returning TYPE_FLOAT or TYPE_INTEGER
251 // Consume the rest of a line.
253 // Consume until "*/".
265 // class, but does not consume anything.
269 // If the current character is in the given class, consume it and return
275 // Like above, but try to consume the specific character indicated
    [all...]
  /system/media/opensles/tests/sandbox/
getch.c 62 (void)getch(); /* consume the character */
  /external/jpeg/
jcmainct.c 136 /* If compressor did not consume the whole row, then we must need to
138 * we pretend we didn't yet consume the last input row; otherwise, if
210 /* If compressor did not consume the whole row, then we must need to
212 * we pretend we didn't yet consume the last input row; otherwise, if

Completed in 1896 milliseconds

1 2 3 4 5 6 7 8 91011>>