Home
last modified time | relevance | path

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

/aosp12/system/iorap/src/prefetcher/
H A Dprefetcher_daemon.cc238 ParseResult<std::string> string_result; in ParsingRead() local
239 string_result.value.reserve(length); in ParsingRead()
256 string_result.value += char_result.value; in ParsingRead()
258 DEBUG_PREAD << "string preliminary is : " << string_result.value; in ParsingRead()
261 DEBUG_PREAD << "parsed string to: " << string_result.value; in ParsingRead()
262 string_result.next_token = stream; in ParsingRead()
263 return string_result; in ParsingRead()
/aosp12/art/runtime/interpreter/
H A Dunstarted_runtime_test.cc423 ObjPtr<mirror::String> string_result = down_cast<mirror::String*>(result.GetL()); in TEST_F() local
424 EXPECT_EQ(string_arg->GetLength(), string_result->GetLength()); in TEST_F()
426 if (string_arg->IsCompressed() && string_result->IsCompressed()) { in TEST_F()
427 EXPECT_EQ(memcmp(string_arg->GetValueCompressed(), string_result->GetValueCompressed(), in TEST_F()
429 } else if (!string_arg->IsCompressed() && !string_result->IsCompressed()) { in TEST_F()
430 EXPECT_EQ(memcmp(string_arg->GetValue(), string_result->GetValue(), in TEST_F()
435 if (string_arg->CharAt(i) != string_result->CharAt(i)) { in TEST_F()
1022 ObjPtr<mirror::String> string_result = down_cast<mirror::String*>(result.GetL()); in TEST_F() local
1023 ASSERT_TRUE(string_result != nullptr); in TEST_F()
1025 std::string mod_utf = string_result->ToModifiedUtf8(); in TEST_F()
/aosp12/frameworks/base/core/jni/
H A Dandroid_content_res_ApkAssets.cpp191 auto string_result = static_cast<jstring>(env->CallObjectMethod( in LoaderAssetsProvider() local
193 ScopedUtfChars str(env, string_result); in LoaderAssetsProvider()
/aosp12/frameworks/native/libs/vr/libpdx_uds/
H A Dremote_method_tests.cpp633 const std::string string_result = client->SendVector(ttv); in TEST_F() local
634 EXPECT_EQ("abc123", string_result); in TEST_F()