Lines Matching refs:string_arg
399 mirror::String* string_arg = mirror::String::AllocFromModifiedUtf8(self, base_string); in TEST_F() local
402 shadow_frame->SetVRegReference(1, string_arg); in TEST_F()
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()
410 string_arg->GetLength() * sizeof(uint8_t)), 0); 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()
413 string_arg->GetLength() * sizeof(uint16_t)), 0); in TEST_F()
416 for (int i = 0; i < string_arg->GetLength(); ++i) { in TEST_F()
417 if (string_arg->CharAt(i) != string_result->CharAt(i)) { in TEST_F()