HomeSort by relevance Sort by last modified time
    Searched defs:Consume (Results 26 - 50 of 58) sorted by null

12 3

  /external/chromium/third_party/libjingle/source/talk/base/
bytebuffer.cc 195 void ByteBuffer::Consume(size_t size) {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
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() {
LegacyCommonTokenStream.cs 80 * to consume). p==-1 indicates that the tokens list is empty
169 * must become active with LT(1) available. consume() simply
171 * input symbol. Consume at least one token.
178 public virtual void Consume() {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
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()
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/chromium_org/third_party/libjingle/source/talk/base/
bytebuffer.cc 225 bool ByteBuffer::Consume(size_t size) {
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
regexp_adapter_icu.cc 84 // call to ConsumeRegExp() or RegExp::Consume() advances the position in the
119 virtual bool Consume(RegExpInput* input_string,
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BufferedTreeNodeStream.cs 143 * to consume). If -1, nodes array not filled yet.</summary>
377 public virtual void Consume() {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BufferedTreeNodeStream.cs 152 * to consume). If -1, nodes array not filled yet.</summary>
444 public virtual void Consume()
  /external/chromium_org/third_party/protobuf/python/google/protobuf/
text_format.py 190 tokenizer.Consume(']')
218 tokenizer.Consume('{')
253 tokenizer.Consume(':')
355 """Tries to consume a given piece of text.
358 token: Text to consume.
368 def Consume(self, token):
372 token: Text to consume.
521 """Consume one token of a string literal.
  /external/chromium_org/third_party/re2/util/
pcre.h 118 // The "Consume" operation may be useful if you want to repeatedly
129 // while (PCRE::Consume(&input, "(\\w+) = (\\d+)\n", &var, &value)) {
133 // Each successful call to "Consume" will set "var/value", and also
140 // The "FindAndConsume" operation is similar to "Consume" but does not
354 static const ConsumeFunctor Consume;
356 // Like Consume(..), but does not anchor the match at the beginning of the
pcre.cc 50 const PCRE::ConsumeFunctor PCRE::Consume = { };
    [all...]
  /external/chromium_org/ui/compositor/
compositor.h 194 virtual void Consume(const std::string& mailbox_name,
  /external/protobuf/python/google/protobuf/
text_format.py 170 tokenizer.Consume(']')
198 tokenizer.Consume('{')
233 tokenizer.Consume(':')
359 """Tries to consume a given piece of text.
362 token: Text to consume.
372 def Consume(self, token):
376 token: Text to consume.
545 """Consume one token of a string literal.
  /external/regex-re2/util/
pcre.h 118 // The "Consume" operation may be useful if you want to repeatedly
129 // while (PCRE::Consume(&input, "(\\w+) = (\\d+)\n", &var, &value)) {
133 // Each successful call to "Consume" will set "var/value", and also
140 // The "FindAndConsume" operation is similar to "Consume" but does not
348 static const ConsumeFunctor Consume;
350 // Like Consume(..), but does not anchor the match at the beginning of the
pcre.cc 45 const PCRE::ConsumeFunctor PCRE::Consume = { };
    [all...]
  /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...]
  /external/chromium_org/gpu/command_buffer/service/
texture_manager.cc     [all...]
texture_manager_unittest.cc     [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
parser.cc 131 bool Parser::Consume(const char* text, const char* error) {
140 bool Parser::Consume(const char* text) {
465 DO(Consume("syntax", "File must begin with 'syntax = \"proto2\";'."));
466 DO(Consume("="));
531 DO(Consume("message"));
682 DO(Consume("=", "Missing field number."));
758 DO(Consume("["));
771 DO(Consume("]"));
782 DO(Consume("default"));
783 DO(Consume("="))
    [all...]
  /external/chromium_org/third_party/re2/re2/
re2.cc 37 const VariadicFunction2<bool, StringPiece*, const RE2&, RE2::Arg, RE2::ConsumeN> RE2::Consume = {};
    [all...]
re2.h 118 // The "Consume" operation may be useful if you want to repeatedly
129 // while (RE2::Consume(&input, "(\\w+) = (\\d+)\n", &var, &value)) {
133 // Each successful call to "Consume" will set "var/value", and also
140 // The "FindAndConsume" operation is similar to "Consume" but does not
346 bool, StringPiece*, const RE2&, Arg, RE2::ConsumeN> Consume;
348 // Like Consume(..), but does not anchor the match at the beginning of the
    [all...]
  /external/protobuf/src/google/protobuf/
text_format.cc 135 // Consume the starting token.
145 // Consume fields until we cannot do so anymore.
226 DO(Consume(delimeter));
250 DO(Consume("]"));
303 DO(Consume(":"));
322 DO(Consume("{"));
507 // we actually may consume an additional token (for the minus sign) in this
535 // we actually may consume an additional token (for the minus sign) in this
587 bool Consume(const string& value) {
601 // Attempts to consume the supplied value. Returns false if a th
    [all...]
  /external/regex-re2/re2/
re2.cc 31 const VariadicFunction2<bool, StringPiece*, const RE2&, RE2::Arg, RE2::ConsumeN> RE2::Consume;
    [all...]
re2.h 118 // The "Consume" operation may be useful if you want to repeatedly
129 // while (RE2::Consume(&input, "(\\w+) = (\\d+)\n", &var, &value)) {
133 // Each successful call to "Consume" will set "var/value", and also
140 // The "FindAndConsume" operation is similar to "Consume" but does not
346 bool, StringPiece*, const RE2&, Arg, RE2::ConsumeN> Consume;
348 // Like Consume(..), but does not anchor the match at the beginning of the
    [all...]

Completed in 1106 milliseconds

12 3