HomeSort by relevance Sort by last modified time
    Searched defs:LookingAt (Results 1 - 5 of 5) sorted by null

  /external/pcre/pcrecpp/
pcre_scanner.cc 123 bool Scanner::LookingAt(const RE& re) const {
  /external/protobuf/python/google/protobuf/
text_format.py 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):
    [all...]
  /external/protobuf/src/google/protobuf/io/
tokenizer.cc 308 inline bool Tokenizer::LookingAt() {
430 } else if (started_with_zero && LookingAt<Digit>()) {
433 if (LookingAt<Digit>()) {
463 if (LookingAt<Letter>() && require_space_after_number_) {
584 if (LookingAt<Unprintable>() || current_char_ == '\0') {
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
parser.cc 137 inline bool Parser::LookingAt(const char* text) {
150 if (LookingAt(text)) {
251 } else if (LookingAt("inf")) {
255 } else if (LookingAt("nan")) {
283 if (LookingAt(text)) {
436 } else if (LookingAt("}")) {
538 if (require_syntax_identifier_ || LookingAt("syntax")) {
563 if (LookingAt("}")) {
608 } else if (LookingAt("message")) {
612 } else if (LookingAt("enum"))
    [all...]
  /external/protobuf/src/google/protobuf/
text_format.cc 348 while (!LookingAt(">") && !LookingAt("}")) {
479 if (TryConsume(":") && !LookingAt("{") && !LookingAt("<")) {
571 if (TryConsume(":") && !LookingAt("{") && !LookingAt("<")) {
612 while (!LookingAt(">") && !LookingAt("}")) {
714 } else if (LookingAt("-") ||
807 bool LookingAt(const string& text)
    [all...]

Completed in 184 milliseconds