Home
last modified time | relevance | path

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

/art/runtime/interpreter/
Dunstarted_runtime_test.cc428 ObjPtr<mirror::String> string_result = down_cast<mirror::String*>(result.GetL()); in TEST_F() local
429 EXPECT_EQ(string_arg->GetLength(), string_result->GetLength()); in TEST_F()
431 if (string_arg->IsCompressed() && string_result->IsCompressed()) { in TEST_F()
432 EXPECT_EQ(memcmp(string_arg->GetValueCompressed(), string_result->GetValueCompressed(), in TEST_F()
434 } else if (!string_arg->IsCompressed() && !string_result->IsCompressed()) { in TEST_F()
435 EXPECT_EQ(memcmp(string_arg->GetValue(), string_result->GetValue(), in TEST_F()
440 if (string_arg->CharAt(i) != string_result->CharAt(i)) { in TEST_F()
1027 ObjPtr<mirror::String> string_result = down_cast<mirror::String*>(result.GetL()); in TEST_F() local
1028 ASSERT_TRUE(string_result != nullptr); in TEST_F()
1030 std::string mod_utf = string_result->ToModifiedUtf8(); in TEST_F()