CHARACTER_CLASS   122 third_party/protobuf/src/google/protobuf/io/tokenizer.cc CHARACTER_CLASS(Whitespace, c == ' ' || c == '\n' || c == '\t' ||
CHARACTER_CLASS   124 third_party/protobuf/src/google/protobuf/io/tokenizer.cc CHARACTER_CLASS(WhitespaceNoNewline, c == ' ' || c == '\t' ||
CHARACTER_CLASS   127 third_party/protobuf/src/google/protobuf/io/tokenizer.cc CHARACTER_CLASS(Unprintable, c < ' ' && c > '\0');
CHARACTER_CLASS   129 third_party/protobuf/src/google/protobuf/io/tokenizer.cc CHARACTER_CLASS(Digit, '0' <= c && c <= '9');
CHARACTER_CLASS   130 third_party/protobuf/src/google/protobuf/io/tokenizer.cc CHARACTER_CLASS(OctalDigit, '0' <= c && c <= '7');
CHARACTER_CLASS   131 third_party/protobuf/src/google/protobuf/io/tokenizer.cc CHARACTER_CLASS(HexDigit, ('0' <= c && c <= '9') ||
CHARACTER_CLASS   135 third_party/protobuf/src/google/protobuf/io/tokenizer.cc CHARACTER_CLASS(Letter, ('a' <= c && c <= 'z') ||
CHARACTER_CLASS   139 third_party/protobuf/src/google/protobuf/io/tokenizer.cc CHARACTER_CLASS(Alphanumeric, ('a' <= c && c <= 'z') ||
CHARACTER_CLASS   144 third_party/protobuf/src/google/protobuf/io/tokenizer.cc CHARACTER_CLASS(Escape, c == 'a' || c == 'b' || c == 'f' || c == 'n' ||