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

/external/protobuf/src/google/protobuf/util/internal/
H A Djson_stream_parser.cc64 static const int kUnicodeEscapedLength = 6; member in namespace:google::protobuf::util::converter
408 if (p_.length() < kUnicodeEscapedLength) {
417 for (int i = 2; i < kUnicodeEscapedLength; ++i) {
425 if (p_.length() < 2 * kUnicodeEscapedLength) {
432 } else if (p_.data()[kUnicodeEscapedLength] == '\\' &&
433 p_.data()[kUnicodeEscapedLength + 1] == 'u') {
435 for (int i = kUnicodeEscapedLength + 2; i < 2 * kUnicodeEscapedLength;
448 p_.remove_prefix(kUnicodeEscapedLength);
462 p_.remove_prefix(kUnicodeEscapedLength);
[all...]

Completed in 1010 milliseconds