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()
887 ObjPtr<mirror::Class> dst_class, in UnboxPrimitive() argument
892 if (!dst_class->IsPrimitive()) { in UnboxPrimitive()
893 if (UNLIKELY(o != nullptr && !o->InstanceOf(dst_class))) { in UnboxPrimitive()
898 dst_class->PrettyDescriptor().c_str(), in UnboxPrimitive()
904 dst_class->PrettyDescriptor().c_str()).c_str()); in UnboxPrimitive()
911 if (UNLIKELY(dst_class->GetPrimitiveType() == Primitive::kPrimVoid)) { in UnboxPrimitive()
921 dst_class->PrettyDescriptor().c_str()).c_str()); in UnboxPrimitive()
925 dst_class->PrettyDescriptor().c_str()).c_str()); in UnboxPrimitive()
962 dst_class->PrettyDescriptor().c_str(), in UnboxPrimitive()
969 dst_class->GetPrimitiveType(), in UnboxPrimitive()
974 ObjPtr<mirror::Class> dst_class, in UnboxPrimitiveForField() argument
978 return UnboxPrimitive(o, dst_class, f, unboxed_value); in UnboxPrimitiveForField()
982 ObjPtr<mirror::Class> dst_class, in UnboxPrimitiveForResult() argument
984 return UnboxPrimitive(o, dst_class, nullptr, unboxed_value); in UnboxPrimitiveForResult()