Home | History | Annotate | Download | only in interpreter

Lines Matching refs:string_arg

401   mirror::String* string_arg = mirror::String::AllocFromModifiedUtf8(self, base_string);
404 shadow_frame->SetVRegReference(1, string_arg);
413 EXPECT_EQ(string_arg->GetLength(), string_result->GetLength());
415 if (string_arg->IsCompressed() && string_result->IsCompressed()) {
416 EXPECT_EQ(memcmp(string_arg->GetValueCompressed(), string_result->GetValueCompressed(),
417 string_arg->GetLength() * sizeof(uint8_t)), 0);
418 } else if (!string_arg->IsCompressed() && !string_result->IsCompressed()) {
419 EXPECT_EQ(memcmp(string_arg->GetValue(), string_result->GetValue(),
420 string_arg->GetLength() * sizeof(uint16_t)), 0);
423 for (int i = 0; i < string_arg->GetLength(); ++i) {
424 if (string_arg->CharAt(i) != string_result->CharAt(i)) {