Home
last modified time | relevance | path

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

/art/runtime/interpreter/
Dunstarted_runtime_test.cc405 mirror::String* string_result = reinterpret_cast<mirror::String*>(result.GetL()); in TEST_F() local
406 EXPECT_EQ(string_arg->GetLength(), string_result->GetLength()); in TEST_F()
408 if (string_arg->IsCompressed() && string_result->IsCompressed()) { in TEST_F()
409 EXPECT_EQ(memcmp(string_arg->GetValueCompressed(), string_result->GetValueCompressed(), in TEST_F()
411 } else if (!string_arg->IsCompressed() && !string_result->IsCompressed()) { in TEST_F()
412 EXPECT_EQ(memcmp(string_arg->GetValue(), string_result->GetValue(), in TEST_F()
417 if (string_arg->CharAt(i) != string_result->CharAt(i)) { in TEST_F()
1035 ObjPtr<mirror::String> string_result = reinterpret_cast<mirror::String*>(result.GetL()); in TEST_F() local
1036 ASSERT_TRUE(string_result != nullptr); in TEST_F()
1038 std::string mod_utf = string_result->ToModifiedUtf8(); in TEST_F()