Home
last modified time | relevance | path

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

/art/runtime/
Dreflection.h42 JValue* unboxed_value)
47 JValue* unboxed_value)
Dreflection.cc847 JValue* unboxed_value) in UnboxPrimitive() argument
866 unboxed_value->SetL(o); in UnboxPrimitive()
928 boxed_value, unboxed_value); in UnboxPrimitive()
934 JValue* unboxed_value) { in UnboxPrimitiveForField() argument
936 return UnboxPrimitive(o, dst_class, f, unboxed_value); in UnboxPrimitiveForField()
941 JValue* unboxed_value) { in UnboxPrimitiveForResult() argument
942 return UnboxPrimitive(o, dst_class, nullptr, unboxed_value); in UnboxPrimitiveForResult()
Dmethod_handles_test.cc189 JValue unboxed_value; in TEST_F() local
190 ASSERT_TRUE(UnboxPrimitiveForResult(value.GetL(), cl->FindPrimitiveClass('I'), &unboxed_value)); in TEST_F()
191 ASSERT_EQ(kInitialValue, unboxed_value.GetI()); in TEST_F()
Dmethod_handles.cc288 JValue unboxed_value; in ConvertJValueCommon() local
289 if (UNLIKELY(!GetUnboxedTypeAndValue(from_obj, &unboxed_type, &unboxed_value))) { in ConvertJValueCommon()
294 if (UNLIKELY(!ConvertPrimitiveValueNoThrow(unboxed_type, to_type, unboxed_value, value))) { in ConvertJValueCommon()
/art/runtime/native/
Djava_lang_reflect_Field.cc349 JValue unboxed_value; in Field_set() local
353 &unboxed_value)) { in Field_set()
362 SetFieldValue(o, f, field_prim_type, true, unboxed_value); in Field_set()