Home | History | Annotate | Download | only in runtime

Lines Matching refs:dst_class

239         ObjPtr<mirror::Class> dst_class(
242 if (dst_class.Ptr() == nullptr) {
246 if (UNLIKELY(arg == nullptr || !arg->InstanceOf(dst_class))) {
251 mirror::Class::PrettyDescriptor(dst_class).c_str(),
770 ObjPtr<mirror::Class> dst_class,
775 if (!dst_class->IsPrimitive()) {
776 if (UNLIKELY(o != nullptr && !o->InstanceOf(dst_class))) {
781 dst_class->PrettyDescriptor().c_str(),
787 dst_class->PrettyDescriptor().c_str()).c_str());
794 if (UNLIKELY(dst_class->GetPrimitiveType() == Primitive::kPrimVoid)) {
804 dst_class->PrettyDescriptor().c_str()).c_str());
808 dst_class->PrettyDescriptor().c_str()).c_str());
846 dst_class->PrettyDescriptor().c_str(),
852 src_class->GetPrimitiveType(), dst_class->GetPrimitiveType(),
857 ObjPtr<mirror::Class> dst_class,
861 return UnboxPrimitive(o, dst_class, f, unboxed_value);
865 ObjPtr<mirror::Class> dst_class,
867 return UnboxPrimitive(o, dst_class, nullptr, unboxed_value);