Home | History | Annotate | Download | only in runtime

Lines Matching refs:dst_class

233         mirror::Class* dst_class =
235 if (UNLIKELY(arg == nullptr || !arg->InstanceOf(dst_class))) {
240 PrettyDescriptor(dst_class).c_str(),
694 mirror::Class* dst_class, mirror::ArtField* f,
698 if (!dst_class->IsPrimitive()) {
699 if (UNLIKELY(o != nullptr && !o->InstanceOf(dst_class))) {
704 PrettyDescriptor(dst_class).c_str(),
710 PrettyDescriptor(dst_class).c_str()).c_str());
717 if (UNLIKELY(dst_class->GetPrimitiveType() == Primitive::kPrimVoid)) {
728 PrettyDescriptor(dst_class).c_str()).c_str());
732 PrettyDescriptor(dst_class).c_str()).c_str());
770 PrettyDescriptor(dst_class).c_str(),
776 src_class->GetPrimitiveType(), dst_class->GetPrimitiveType(),
780 bool UnboxPrimitiveForField(mirror::Object* o, mirror::Class* dst_class, mirror::ArtField* f,
783 return UnboxPrimitive(nullptr, o, dst_class, f, unboxed_value);
787 mirror::Class* dst_class, JValue* unboxed_value) {
788 return UnboxPrimitive(&throw_location, o, dst_class, nullptr, unboxed_value);