Home
last modified time | relevance | path

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

/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
DCheckUtf8Test.java34 import proto2_test_check_utf8.TestCheckUtf8.StringWrapper;
55 UTF8_BYTE_STRING_TEXT, StringWrapper.newBuilder().setReqBytes(UTF8_BYTE_STRING).getReq()); in testBuildRequiredStringWithGoodUtf8()
61 assertEquals(UTF8_BYTE_STRING_TEXT, StringWrapper.parser().parseFrom(serialized).getReq()); in testParseRequiredStringWithGoodUtf8()
66 StringWrapper.newBuilder().setReqBytes(NON_UTF8_BYTE_STRING); in testBuildRequiredStringWithBadUtf8()
75 StringWrapper.newBuilder().setOptBytes(NON_UTF8_BYTE_STRING); in testBuildOptionalStringWithBadUtf8()
84 StringWrapper.newBuilder().addRepBytes(NON_UTF8_BYTE_STRING); in testBuildRepeatedStringWithBadUtf8()
94 assertParseBadUtf8(StringWrapper.getDefaultInstance(), serialized); in testParseRequiredStringWithBadUtf8()
/third_party/rust/crates/strsim-rs/src/
Dlib.rs133 struct StringWrapper<'a>(&'a str); struct
135 impl<'a, 'b> IntoIterator for &'a StringWrapper<'b> { implementation
154 generic_jaro(&StringWrapper(a), &StringWrapper(b)) in jaro()
189 generic_jaro_winkler(&StringWrapper(a), &StringWrapper(b)) in jaro_winkler()
237 generic_levenshtein(&StringWrapper(a), &StringWrapper(b)) in levenshtein()
/third_party/protobuf/src/google/protobuf/util/internal/testdata/
Dwrappers.proto48 StringWrapper string_wrapper = 8;
58 StringWrapper string_wrapper_default = 17;
90 message StringWrapper { message
/third_party/protobuf/java/core/src/test/proto/com/google/protobuf/
Dtest_check_utf8.proto41 message StringWrapper { message
/third_party/node/deps/v8/src/objects/
Dobject-list-macros.h227 V(StringWrapper) \
/third_party/node/deps/v8/src/compiler/
Dcode-assembler.h124 class StringWrapper; variable
/third_party/node/deps/v8/src/api/
Dapi.cc3638 VALUE_IS_SPECIFIC_TYPE(StringObject, StringWrapper) in VALUE_IS_SPECIFIC_TYPE()