Home
last modified time | relevance | path

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

/aosp_15_r20/art/runtime/
H A Dintern_table-inl.h70 ObjPtr<mirror::String> a_string = a.Read<kWithoutReadBarrier>(); in operator() local
71 uint32_t a_length = static_cast<uint32_t>(a_string->GetLength()); in operator()
76 if (a_string->IsCompressed()) { in operator()
81 memcmp(b.GetUtf8Data(), a_string->GetValueCompressed(), a_length * sizeof(uint8_t)) == 0; in operator()
86 const uint16_t* a_value = a_string->GetValue(); in operator()
/aosp_15_r20/external/python/apitools/apitools/base/protorpclite/
Dprotojson_test.py58 a_string = messages.StringField(2) variable in MyMessage
467 self.protojson.encode_message(MyMessage(a_string='xyz')))
471 MyMessage(a_string='{decoded}xyz'),
476 MyMessage(a_string='{decoded}'),
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/range/test/
Dstring.cpp140 test_string<char, 8> a_string("a string"); in check_char() local
143 const char* char_s = a_string.const_sz(); in check_char()
147 char* char_s2 = a_string.mutable_sz(); in check_char()
/aosp_15_r20/external/protobuf/src/google/protobuf/compiler/ruby/
H A Druby_generated_pkg_implicit.proto6 string a_string = 1; field
H A Druby_generated_pkg_explicit.proto8 string a_string = 1; field
/aosp_15_r20/external/cronet/third_party/protobuf/src/google/protobuf/compiler/ruby/
H A Druby_generated_pkg_implicit.proto6 string a_string = 1; field
H A Druby_generated_pkg_explicit.proto8 string a_string = 1; field
/aosp_15_r20/external/bazelbuild-rules_android/test/rules/android_local_test/java/com/starlark_resources/
H A DSampleTest.java41 "Check resource `a_string`", "Hello World!", resources.getString(R.string.a_string)); in test()
H A DSampleTestNeverlinkDep.java45 "Check resource `a_string`", "Hello World!", resources.getString(R.string.a_string)); in test()
H A DSampleTestMultipleDeps.java41 "Check resource `a_string`", "Hello World!", resources.getString(R.string.a_string)); in test()
/aosp_15_r20/external/bazelbuild-rules_android/test/rules/android_local_test/non_java/
H A DSampleTest.java41 "Check resource `a_string`", "Hello World!", resources.getString(R.string.a_string)); in test()
/aosp_15_r20/external/mesa3d/src/util/
H A Dparson.c2373 const JSON_String *a_string = NULL, *b_string = NULL; in json_value_equals() local
2415 a_string = json_value_get_string_desc(a); in json_value_equals()
2417 if (a_string == NULL || b_string == NULL) { in json_value_equals()
2420 return a_string->length == b_string->length && in json_value_equals()
2421 memcmp(a_string->chars, b_string->chars, a_string->length) == 0; in json_value_equals()
/aosp_15_r20/external/bazelbuild-rules_rust/proto/prost/private/tests/types/
H A Dtypes_test.rs21 a_string: "a".to_string(), in test_types()
H A Dtypes.proto24 string a_string = 15; field
/aosp_15_r20/external/bcc/tests/cc/
H A Dtest_c_api.cc214 extern "C" int _a_test_function(const char *a_string) { in _a_test_function() argument
216 for (i = 0; a_string[i]; ++i) in _a_test_function()
/aosp_15_r20/external/pigweed/pw_protobuf/pw_protobuf_test_protos/
H A Dfull_test.proto222 string a_string = 2; field
/aosp_15_r20/external/cronet/base/
H A Dvalues_unittest.cc585 std::string* a_string = root.EnsureDict("foo")->FindString("a"); in TEST() local
586 ASSERT_NE(nullptr, a_string); in TEST()
587 EXPECT_EQ(*a_string, "b"); in TEST()