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.cc889 JValue* unboxed_value) in UnboxPrimitive() argument
908 unboxed_value->SetL(o); in UnboxPrimitive()
970 boxed_value, unboxed_value); in UnboxPrimitive()
976 JValue* unboxed_value) { in UnboxPrimitiveForField() argument
978 return UnboxPrimitive(o, dst_class, f, unboxed_value); in UnboxPrimitiveForField()
983 JValue* unboxed_value) { in UnboxPrimitiveForResult() argument
984 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.cc289 JValue unboxed_value; in ConvertJValueCommon() local
290 if (UNLIKELY(!GetUnboxedTypeAndValue(from_obj, &unboxed_type, &unboxed_value))) { in ConvertJValueCommon()
295 if (UNLIKELY(!ConvertPrimitiveValueNoThrow(unboxed_type, to_type, unboxed_value, value))) { in ConvertJValueCommon()
/art/runtime/native/
Djava_lang_reflect_Field.cc351 JValue unboxed_value; in Field_set() local
355 &unboxed_value)) { in Field_set()
364 SetFieldValue(o, f, field_prim_type, true, unboxed_value); in Field_set()