Home
last modified time | relevance | path

Searched refs:kUnicodeEscapedLength (Results 1 – 1 of 1) sorted by relevance

/third_party/protobuf/src/google/protobuf/util/internal/
Djson_stream_parser.cc65 static const int kUnicodeEscapedLength = 6; variable
466 if (p_.length() < kUnicodeEscapedLength) { in ParseUnicodeEscape()
475 for (int i = 2; i < kUnicodeEscapedLength; ++i) { in ParseUnicodeEscape()
483 if (p_.length() < 2 * kUnicodeEscapedLength) { in ParseUnicodeEscape()
490 } else if (p_.data()[kUnicodeEscapedLength] == '\\' && in ParseUnicodeEscape()
491 p_.data()[kUnicodeEscapedLength + 1] == 'u') { in ParseUnicodeEscape()
493 for (int i = kUnicodeEscapedLength + 2; i < 2 * kUnicodeEscapedLength; in ParseUnicodeEscape()
506 p_.remove_prefix(kUnicodeEscapedLength); in ParseUnicodeEscape()
520 p_.remove_prefix(kUnicodeEscapedLength); in ParseUnicodeEscape()