Home
last modified time | relevance | path

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

/art/runtime/
Dreflection.h42 JValue* unboxed_value)
47 JValue* unboxed_value)
Dreflection.cc772 JValue* unboxed_value) in UnboxPrimitive() argument
791 unboxed_value->SetL(o); in UnboxPrimitive()
853 boxed_value, unboxed_value); in UnboxPrimitive()
859 JValue* unboxed_value) { in UnboxPrimitiveForField() argument
861 return UnboxPrimitive(o, dst_class, f, unboxed_value); in UnboxPrimitiveForField()
866 JValue* unboxed_value) { in UnboxPrimitiveForResult() argument
867 return UnboxPrimitive(o, dst_class, nullptr, unboxed_value); in UnboxPrimitiveForResult()
Dmethod_handles.cc285 JValue unboxed_value; in ConvertJValueCommon() local
286 if (UNLIKELY(!GetUnboxedTypeAndValue(from_obj, &unboxed_type, &unboxed_value))) { in ConvertJValueCommon()
291 if (UNLIKELY(!ConvertPrimitiveValueNoThrow(unboxed_type, to_type, unboxed_value, value))) { in ConvertJValueCommon()
/art/runtime/native/
Djava_lang_reflect_Field.cc344 JValue unboxed_value; in Field_set() local
348 &unboxed_value)) { in Field_set()
357 SetFieldValue(o, f, field_prim_type, true, unboxed_value); in Field_set()