HomeSort by relevance Sort by last modified time
    Searched full:consume (Results 201 - 225 of 1550) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/chrome/browser/extensions/api/web_request/
form_data_parser.cc 458 if (!RE2::Consume(&source_, crlf_free_pattern()) ||
459 !RE2::Consume(&source_, crlf_pattern())) {
476 CHECK(RE2::Consume(&source_, dash_boundary_pattern_));
478 CHECK(RE2::Consume(&source_, closing_pattern()));
479 if (RE2::Consume(&source_, epilogue_pattern()))
484 if (!RE2::Consume(&source_, transfer_padding_pattern()))
507 if (!RE2::Consume(&source_, crlf_pattern())) {
540 if (!RE2::Consume(&source_, preamble_pattern())) {
547 if (!RE2::Consume(&source_, dash_boundary_pattern_) ||
548 !RE2::Consume(&source_, transfer_padding_pattern())
    [all...]
  /frameworks/native/include/input/
InputTransport.h 295 status_t consume(InputEventFactoryInterface* factory, bool consumeBatches,
310 * Should be called after calling consume() to determine whether the consumer
317 * One option is simply to call consume() in a loop until it returns WOULD_BLOCK.
322 * one more time to consume the deferred event.
328 * Should be called after calling consume() with consumeBatches == false to determine
329 * whether consume() should be called again later on with consumeBatches == true.
344 // call to consume and that still needs to be handled.
  /frameworks/av/camera/tests/
ProCameraTests.cpp 801 // Consume a couple of frames
873 // Consume a couple of frames
948 // Consume a couple of results
979 // Consume a couple of results
1008 // Consume a couple of results
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BaseRecognizer.cs 135 input.Consume();
152 input.Consume();
161 // we have no information about the follow; we can only consume
200 * 3. consume until token found in resynch set
382 // consumed; consume a single token so at least to prevent
384 input.Consume();
416 * thing to do is to consume tokens until you see something that
419 * input might just be missing a token--you might consume the
460 * we resync'd to that token, we'd consume until EOF. We need to
463 * not consume anything and after printing an error rule c woul
    [all...]
BufferedTokenStream.cs 69 * to consume). tokens[p] should be LT(1). p=-1 indicates need
174 * must become active with LT(1) available. consume() simply
176 * input symbol. Consume at least one token.
180 public virtual void Consume() {
DFA.cs 109 input.Consume();
130 input.Consume();
142 input.Consume();
149 input.Consume();
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BaseRecognizer.cs 147 input.Consume();
166 input.Consume();
178 // we have no information about the follow; we can only consume
220 * 3. consume until token found in resynch set
450 // consumed; consume a single token so at least to prevent
452 input.Consume();
486 * thing to do is to consume tokens until you see something that
489 * input might just be missing a token--you might consume the
530 * we resync'd to that token, we'd consume until EOF. We need to
533 * not consume anything and after printing an error rule c woul
    [all...]
BufferedTokenStream.cs 71 * to consume). tokens[p] should be LT(1). p=-1 indicates need
201 * must become active with LT(1) available. consume() simply
203 * input symbol. Consume at least one token.
207 public virtual void Consume()
DFA.cs 130 input.Consume();
155 input.Consume();
167 input.Consume();
175 input.Consume();
LegacyCommonTokenStream.cs 79 * to consume). p==-1 indicates that the tokens list is empty
181 * must become active with LT(1) available. consume() simply
183 * input symbol. Consume at least one token.
190 public virtual void Consume()
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRBaseRecognizer.m 234 [anInput consume];
251 [anInput consume];
262 // we have no information about the follow; we can only consume
300 * 3. consume until token found in resynch set
494 // consumed; consume a single token so at least to prevent
496 [anInput consume];
527 * thing to do is to consume tokens until you see something that
530 * input might just be missing a token--you might consume the
571 * we resync'd to that token, we'd consume until EOF. We need to
574 * not consume anything and after printing an error rule c woul
    [all...]
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java 671 * If the next token exactly matches {@code token}, consume it and return
684 * If the next token exactly matches {@code token}, consume it. Otherwise,
687 public void consume(final String token) throws ParseException { method in class:TextFormat.Tokenizer
695 * not consume it.
708 * If the next token is an identifier, consume it and return its value.
730 * If the next token is a 32-bit signed integer, consume it and return its
744 * If the next token is a 32-bit unsigned integer, consume it and return its
758 * If the next token is a 64-bit signed integer, consume it and return its
772 * If the next token is a 64-bit unsigned integer, consume it and return its
786 * If the next token is a double, consume it and return its value
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java 505 * If the next token exactly matches {@code token}, consume it and return
518 * If the next token exactly matches {@code token}, consume it. Otherwise,
521 public void consume(final String token) throws ParseException { method in class:TextFormat.Tokenizer
529 * not consume it.
542 * If the next token is an identifier, consume it and return its value.
564 * If the next token is a 32-bit signed integer, consume it and return its
578 * If the next token is a 32-bit unsigned integer, consume it and return its
592 * If the next token is a 64-bit signed integer, consume it and return its
606 * If the next token is a 64-bit unsigned integer, consume it and return its
620 * If the next token is a double, consume it and return its value
    [all...]