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

  /external/protobuf/src/google/protobuf/io/
tokenizer.cc 300 inline bool Tokenizer::TryConsume(char c) {
349 } else if (TryConsume('x') || TryConsume('X')) {
376 if (started_with_zero && (TryConsume('x') || TryConsume('X'))) {
396 if (TryConsume('.')) {
402 if (TryConsume('e') || TryConsume('E')) {
404 TryConsume('-') || TryConsume('+')
    [all...]
tokenizer.h 276 inline bool TryConsume(char c);
  /external/protobuf/src/google/protobuf/compiler/
parser.cc 122 bool Parser::TryConsume(const char* text) {
132 if (TryConsume(text)) {
141 if (TryConsume(text)) {
276 if (TryConsume(";")) {
278 } else if (TryConsume("{")) {
294 if (TryConsume("}")) {
296 } else if (TryConsume("{")) {
367 if (TryConsume(";")) {
405 while (!TryConsume("}")) {
422 if (TryConsume(";")) {
    [all...]
parser.h 149 bool TryConsume(const char* text);
  /external/protobuf/python/google/protobuf/
text_format.py 152 if tokenizer.TryConsume('['):
154 while tokenizer.TryConsume('.'):
193 tokenizer.TryConsume(':')
195 if tokenizer.TryConsume('<'):
213 while not tokenizer.TryConsume(end_token):
358 def TryConsume(self, token):
381 if not self.TryConsume(token):
  /external/protobuf/src/google/protobuf/
text_format.cc 241 if (TryConsume("[")) {
244 while (TryConsume(".")) {
300 TryConsume(":");
319 if (TryConsume("<")) {
513 if (TryConsume("-")) {
541 if (TryConsume("-")) {
603 bool TryConsume(const string& value) {
    [all...]

Completed in 59 milliseconds