Home
last modified time | relevance | path

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

/art/runtime/interpreter/
Dunstarted_runtime_test.cc367 ObjPtr<mirror::String> string_result = down_cast<mirror::String*>(result.GetL()); in TEST_F() local
368 EXPECT_EQ(string_arg->GetLength(), string_result->GetLength()); in TEST_F()
370 if (string_arg->IsCompressed() && string_result->IsCompressed()) { in TEST_F()
371 EXPECT_EQ(memcmp(string_arg->GetValueCompressed(), string_result->GetValueCompressed(), in TEST_F()
373 } else if (!string_arg->IsCompressed() && !string_result->IsCompressed()) { in TEST_F()
374 EXPECT_EQ(memcmp(string_arg->GetValue(), string_result->GetValue(), in TEST_F()
379 if (string_arg->CharAt(i) != string_result->CharAt(i)) { in TEST_F()
896 ObjPtr<mirror::String> string_result = down_cast<mirror::String*>(result.GetL()); in TEST_F() local
897 ASSERT_TRUE(string_result != nullptr); in TEST_F()
899 std::string mod_utf = string_result->ToModifiedUtf8(); in TEST_F()