Home
last modified time | relevance | path

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

/third_party/protobuf/src/google/protobuf/stubs/
Dstructurally_valid_unittest.cc47 EXPECT_TRUE(IsStructurallyValidUTF8(valid_str.data(), in TEST()
51 EXPECT_TRUE(IsStructurallyValidUTF8(valid_str.data() + i, in TEST()
58 EXPECT_FALSE(IsStructurallyValidUTF8(invalid_str.data(), in TEST()
62 EXPECT_FALSE(IsStructurallyValidUTF8(invalid_str.data() + i, in TEST()
Dcommon.h131 PROTOBUF_EXPORT bool IsStructurallyValidUTF8(const char* buf, int len);
133 inline bool IsStructurallyValidUTF8(StringPiece str) { in IsStructurallyValidUTF8() function
134 return IsStructurallyValidUTF8(str.data(), static_cast<int>(str.length())); in IsStructurallyValidUTF8()
Dstructurally_valid.cc555 bool IsStructurallyValidUTF8(const char* buf, int len) { in IsStructurallyValidUTF8() function
/third_party/protobuf/src/google/protobuf/
Dparse_context.cc416 if (!IsStructurallyValidUTF8(str)) { in VerifyUTF8()
Dwire_format_lite.cc585 if (!IsStructurallyValidUTF8(data, size)) { in VerifyUtf8String()
/third_party/protobuf/src/google/protobuf/util/internal/
Djson_stream_parser.cc208 bool is_valid_utf8 = internal::IsStructurallyValidUTF8(leftover_); in FinishParse()
/third_party/protobuf/
Dlibprotobuf_lite.map218 "google::protobuf::internal::IsStructurallyValidUTF8(char const*, int)";