Home | History | Annotate | Download | only in interpreter

Lines Matching refs:string_arg

415   Handle<mirror::String> string_arg =
420 shadow_frame->SetVRegReference(1, string_arg.Get());
429 EXPECT_EQ(string_arg->GetLength(), string_result->GetLength());
431 if (string_arg->IsCompressed() && string_result->IsCompressed()) {
432 EXPECT_EQ(memcmp(string_arg->GetValueCompressed(), string_result->GetValueCompressed(),
433 string_arg->GetLength() * sizeof(uint8_t)), 0);
434 } else if (!string_arg->IsCompressed() && !string_result->IsCompressed()) {
435 EXPECT_EQ(memcmp(string_arg->GetValue(), string_result->GetValue(),
436 string_arg->GetLength() * sizeof(uint16_t)), 0);
439 for (int i = 0; i < string_arg->GetLength(); ++i) {
440 if (string_arg->CharAt(i) != string_result->CharAt(i)) {