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...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Interpreter.java 256 input.consume(); // recover
342 input.consume();
354 input.consume(); // recover
364 input.consume(); // recover
375 input.consume(); // recover
412 input.consume();
  /external/clang/lib/ASTMatchers/Dynamic/
Parser.cpp 63 /// \brief Returns but doesn't consume the next token.
142 /// \brief Consume an unsigned literal.
146 // Consume the 'x' or 'b' radix modifier, if present.
170 /// \brief Consume a string literal.
204 /// \brief Consume all leading whitespace from \c Code.
281 Tokenizer->consumeNextToken(); // consume the period.
  /external/chromium_org/third_party/WebKit/Source/core/loader/cache/
MemoryCache.h 119 // - minDeadBytes: The maximum number of bytes that dead resources should consume when the cache is under pressure.
120 // - maxDeadBytes: The maximum number of bytes that dead resources should consume when the cache is not under pressure.
121 // - totalBytes: The maximum number of bytes that the cache should consume overall.
  /sdk/emulator/opengl/tests/ut_renderer/
RenderingThread.cpp 360 readBuf.consume(last);
367 readBuf.consume(last);
375 readBuf.consume(last);
  /bionic/libc/upstream-netbsd/libc/isc/
ev_streams.c 49 static void consume(evStream *str, size_t bytes);
233 consume(evStream *str, size_t bytes) { function
280 consume(str, bytes);
303 consume(str, bytes);
  /development/samples/Support4Demos/res/layout/
drawer_layout.xml 19 using match_parent for both width and height to consume the full space available.
  /development/samples/training/NavigationDrawer/res/layout/
activity_main.xml 18 <!-- A DrawerLayout is intended to be used as the top-level content view using match_parent for both width and height to consume the full space available. -->
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
CommonTokenStream.as 61 * to consume). p==-1 indicates that the tokens list is empty
114 * must become active with LT(1) available. consume() simply
116 * input symbol. Consume at least one token.
120 public function consume():void { function
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
CommonErrorNode.as 21 // sometimes resync does not consume a token (when LT(1) is
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimTokenStream.cs 67 * to consume). p==-1 indicates that the tokens list is empty
135 * must become active with LT(1) available. consume() simply
137 * input symbol. Consume at least one token.
144 public void Consume()
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
BufferedTokenStream.java 63 * to consume). tokens[p] should be LT(1). p=-1 indicates need
111 * must become active with LT(1) available. consume() simply
113 * input symbol. Consume at least one token.
117 public void consume() { method in class:BufferedTokenStream
LegacyCommonTokenStream.java 65 * to consume). p==-1 indicates that the tokens list is empty
129 * must become active with LT(1) available. consume() simply
131 * input symbol. Consume at least one token.
135 public void consume() { method in class:LegacyCommonTokenStream

Completed in 927 milliseconds

1 2 3 4 5 6 7 891011>>