OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:string_arg
(Results
1 - 3
of
3
) sorted by null
/art/runtime/native/
java_lang_String.cc
59
Handle<mirror::String>
string_arg
(hs.NewHandle(soa.Decode<mirror::String>(java_string_arg)));
61
int32_t length_arg =
string_arg
->GetLength();
64
mirror::String::AllocFromStrings(soa.Self(), string_this,
string_arg
);
/art/runtime/interpreter/
unstarted_runtime_test.cc
415
Handle<mirror::String>
string_arg
=
local
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)
[
all
...]
/art/test/004-JniTest/
jni_test.cc
627
jstring
string_arg
= env->NewStringUTF("helloworld");
local
637
args4[0].l =
string_arg
;
Completed in 578 milliseconds