Lines Matching refs:dst_class
245 ObjPtr<mirror::Class> dst_class( in BuildArgArrayFromObjectArray() local
247 if (dst_class == nullptr) { in BuildArgArrayFromObjectArray()
251 if (UNLIKELY(arg == nullptr || !arg->InstanceOf(dst_class))) { in BuildArgArrayFromObjectArray()
256 mirror::Class::PrettyDescriptor(dst_class).c_str(), in BuildArgArrayFromObjectArray()
909 ObjPtr<mirror::Class> dst_class, in UnboxPrimitive() argument
914 if (!dst_class->IsPrimitive()) { in UnboxPrimitive()
915 if (UNLIKELY(o != nullptr && !o->InstanceOf(dst_class))) { in UnboxPrimitive()
920 dst_class->PrettyDescriptor().c_str(), in UnboxPrimitive()
926 dst_class->PrettyDescriptor().c_str()).c_str()); in UnboxPrimitive()
933 if (UNLIKELY(dst_class->GetPrimitiveType() == Primitive::kPrimVoid)) { in UnboxPrimitive()
943 dst_class->PrettyDescriptor().c_str()).c_str()); in UnboxPrimitive()
947 dst_class->PrettyDescriptor().c_str()).c_str()); in UnboxPrimitive()
984 dst_class->PrettyDescriptor().c_str(), in UnboxPrimitive()
991 dst_class->GetPrimitiveType(), in UnboxPrimitive()
996 ObjPtr<mirror::Class> dst_class, in UnboxPrimitiveForField() argument
1000 return UnboxPrimitive(o, dst_class, f, unboxed_value); in UnboxPrimitiveForField()
1004 ObjPtr<mirror::Class> dst_class, in UnboxPrimitiveForResult() argument
1006 return UnboxPrimitive(o, dst_class, nullptr, unboxed_value); in UnboxPrimitiveForResult()