HomeSort by relevance Sort by last modified time
    Searched refs:Consume (Results 1 - 21 of 21) sorted by null

  /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/pcre/
pcre_scanner_unittest.cc 77 s.Consume(re, &var, &number);
86 s.Consume(re, &var, &number);
94 s.Consume(re, &var, &number);
142 s.Consume("(\\w+) = (\\w+);", &name, &value);
pcre_scanner.cc 133 bool Scanner::Consume(const RE& re,
137 const bool result = re.Consume(&input_, arg0, arg1, arg2);
142 // helper function to consume *skip_ and honour save_comments_
145 while (skip_->Consume(&input_)) {
pcre_scanner.h 40 // while (scanner.Consume("(\\w+) = (\\d+)", &var, &number)) {
82 bool Consume(const RE& re,
165 // helper function to consume *skip_ and honour
pcrecpp_unittest.cc 34 // TODO: Test extractions for PartialMatch/Consume
97 while (line_matcher.Consume(&text)) {
381 printf("Testing Consume\n");
389 CHECK(r.Consume(&input, &word));
391 CHECK(r.Consume(&input, &word));
393 CHECK(! r.Consume(&input, &word));
    [all...]
pcrecpp.h 258 // The "Consume" operation may be useful if you want to repeatedly
271 // while (re.Consume(&input, &var, &value)) {
275 // Each successful call to "Consume" will set "var/value", and also
278 // The "FindAndConsume" operation is similar to "Consume" but does not
571 bool Consume(StringPiece* input,
pcrecpp.cc 235 bool RE::Consume(StringPiece* input,
  /external/chromium/base/win/
event_trace_consumer.h 19 // This class is a base class that makes it easier to consume events
31 // consumer.Consume();
56 // Consume all open sessions from beginning to end.
57 HRESULT Consume();
121 HRESULT EtwTraceConsumerBase<ImplClass>::Consume() {
event_trace_consumer_unittest.cc 104 ASSERT_HRESULT_FAILED(consumer_.Consume());
122 HRESULT hr = consumer_.Consume();
296 // Now consume the event(s).
300 hr = consumer_.Consume();
  /external/v8/src/
preparser.cc 266 Consume(i::Token::VAR);
268 Consume(i::Token::CONST);
279 if (nvars > 0) Consume(i::Token::COMMA);
301 Consume(i::Token::COLON);
365 // Consume the return token. It is necessary to do the before
548 Consume(i::Token::CATCH);
559 Consume(i::Token::FINALLY);
634 Consume(i::Token::CONDITIONAL);
722 Consume(i::Token::LBRACK);
740 Consume(i::Token::PERIOD)
    [all...]
preparser.h 248 void Consume(i::Token::Value token) { Next(); }
259 Consume(next);
parser.cc     [all...]
parser.h 270 // "Adds" an empty expression. Does nothing except consume a
602 INLINE(void Consume(Token::Value token));
  /external/chromium/third_party/libjingle/source/talk/base/
bytebuffer.h 66 void Consume(size_t size);
bytebuffer.cc 195 void ByteBuffer::Consume(size_t size) {
  /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/v8/test/cctest/
test-log.cc 739 static bool Consume(const char* str, char** buf) {
921 if (Consume(code_creation, &start)) {
922 if (Consume(lazy_compile, &start)
923 || Consume(script, &start)
924 || Consume(function, &start)) {
927 } else if (Consume(code_delete, &start)) {
929 } else if (Consume(code_move, &start)) {
    [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/chromium/base/debug/
trace_event_win_unittest.cc 193 ASSERT_HRESULT_SUCCEEDED(consumer_.Consume());
  /dalvik/docs/
prettify.js     [all...]

Completed in 503 milliseconds