Lines Matching full:dst_class
226 mirror::Class* dst_class =
230 if (UNLIKELY(arg == nullptr || !arg->InstanceOf(dst_class))) {
235 PrettyDescriptor(dst_class).c_str(),
746 mirror::Class* dst_class, ArtField* f,
750 if (!dst_class->IsPrimitive()) {
751 if (UNLIKELY(o != nullptr && !o->InstanceOf(dst_class))) {
755 PrettyDescriptor(dst_class).c_str(),
760 PrettyDescriptor(dst_class).c_str()).c_str());
767 if (UNLIKELY(dst_class->GetPrimitiveType() == Primitive::kPrimVoid)) {
776 PrettyDescriptor(dst_class).c_str()).c_str());
779 PrettyDescriptor(dst_class).c_str()).c_str());
817 PrettyDescriptor(dst_class).c_str(),
823 src_class->GetPrimitiveType(), dst_class->GetPrimitiveType(),
827 bool UnboxPrimitiveForField(mirror::Object* o, mirror::Class* dst_class, ArtField* f,
830 return UnboxPrimitive(o, dst_class, f, unboxed_value);
833 bool UnboxPrimitiveForResult(mirror::Object* o, mirror::Class* dst_class, JValue* unboxed_value) {
834 return UnboxPrimitive(o, dst_class, nullptr, unboxed_value);