HomeSort by relevance Sort by last modified time
    Searched full:unboxed_value (Results 1 - 3 of 3) sorted by null

  /art/runtime/
reflection.h 36 bool UnboxPrimitiveForArgument(mirror::Object* o, mirror::Class* dst_class, JValue& unboxed_value,
39 bool UnboxPrimitiveForField(mirror::Object* o, mirror::Class* dst_class, JValue& unboxed_value,
43 mirror::Class* dst_class, JValue& unboxed_value)
reflection.cc 282 mirror::Class* dst_class, JValue& unboxed_value,
302 unboxed_value.SetL(o);
365 boxed_value, unboxed_value);
368 bool UnboxPrimitiveForArgument(mirror::Object* o, mirror::Class* dst_class, JValue& unboxed_value,
371 return UnboxPrimitive(NULL, o, dst_class, unboxed_value, m, index, NULL);
374 bool UnboxPrimitiveForField(mirror::Object* o, mirror::Class* dst_class, JValue& unboxed_value,
377 return UnboxPrimitive(NULL, o, dst_class, unboxed_value, NULL, -1, f);
381 mirror::Class* dst_class, JValue& unboxed_value) {
382 return UnboxPrimitive(&throw_location, o, dst_class, unboxed_value, NULL, -1, NULL);
  /art/runtime/native/
java_lang_reflect_Field.cc 229 JValue unboxed_value; local
230 if (!UnboxPrimitiveForField(boxed_value, FieldHelper(f).GetType(), unboxed_value, f)) {
240 SetFieldValue(o, f, unboxed_value, true);

Completed in 235 milliseconds