Searched refs:LookingAt (Results 1 – 9 of 9) sorted by relevance
137 inline bool Parser::LookingAt(const char* text) { in LookingAt() function in google::protobuf::compiler::Parser150 if (LookingAt(text)) { in TryConsume()251 } else if (LookingAt("inf")) { in ConsumeNumber()255 } else if (LookingAt("nan")) { in ConsumeNumber()283 if (LookingAt(text)) { in TryConsumeEndOfDeclaration()436 } else if (LookingAt("}")) { in SkipStatement()538 if (require_syntax_identifier_ || LookingAt("syntax")) { in Parse()563 if (LookingAt("}")) { in Parse()608 } else if (LookingAt("message")) { in ParseTopLevelStatement()612 } else if (LookingAt("enum")) { in ParseTopLevelStatement()[all …]
147 inline bool LookingAt(const char* text);
308 inline bool Tokenizer::LookingAt() { in LookingAt() function in google::protobuf::io::Tokenizer430 } else if (started_with_zero && LookingAt<Digit>()) { in ConsumeNumber()433 if (LookingAt<Digit>()) { in ConsumeNumber()463 if (LookingAt<Letter>() && require_space_after_number_) { in ConsumeNumber()584 if (LookingAt<Unprintable>() || current_char_ == '\0') { in Next()
371 inline bool LookingAt();
348 while (!LookingAt(">") && !LookingAt("}")) { in ConsumeMessage()479 if (TryConsume(":") && !LookingAt("{") && !LookingAt("<")) { in ConsumeField()571 if (TryConsume(":") && !LookingAt("{") && !LookingAt("<")) { in SkipField()612 while (!LookingAt(">") && !LookingAt("}")) { in SkipFieldMessage()714 } else if (LookingAt("-") || in ConsumeFieldValue()807 bool LookingAt(const string& text) { in LookingAt() function in google::protobuf::TextFormat::Parser::ParserImpl
74 bool LookingAt(const RE& re) const;
690 if tokenizer.TryConsume(':') and not tokenizer.LookingAt(691 '{') and not tokenizer.LookingAt('<'):733 while not tokenizer.LookingAt('>') and not tokenizer.LookingAt('}'):795 def LookingAt(self, token): member in _Tokenizer
123 bool Scanner::LookingAt(const RE& re) const { in LookingAt() function in pcrecpp::Scanner
39 # L Use LookingAt() rather than find()180 ".*def" L "abc\r def xyz" # Normal mode, LookingAt() stops at \r