Home
last modified time | relevance | path

Searched refs:GetRType (Results 1 – 9 of 9) sorted by relevance

/art/runtime/mirror/
Dmethod_type-inl.h42 DCHECK_EQ(rtype, GetRType()); in SetRType()
63 inline ObjPtr<mirror::Class> RawMethodType::GetRType() const { in GetRType() function
80 inline ObjPtr<Class> MethodType::GetRType() { in GetRType() function
137 inline ObjPtr<mirror::Class> MethodType::GetRType(ObjPtr<MethodType> method_type) { in GetRType() function
138 return method_type->GetRType(); in GetRType()
141 inline ObjPtr<mirror::Class> MethodType::GetRType(Handle<MethodType> method_type) { in GetRType() function
142 return GetRType(method_type.Get()); in GetRType()
145 inline ObjPtr<mirror::Class> MethodType::GetRType(RawMethodType method_type) { in GetRType() function
146 return method_type.GetRType(); in GetRType()
Dmethod_type.cc83 Handle<Class> dst_rtype = hs.NewHandle(method_type->GetRType()); in CloneWithoutLeadingParameter()
106 Handle<Class> dst_rtype = hs.NewHandle(method_type->GetRType()); in CollectTrailingArguments()
167 return GetRType() == target->GetRType(); in IsExactMatch()
182 if (!IsReturnTypeConvertible(target->GetRType(), GetRType())) { in IsConvertible()
242 return GetRType()->IsPrimitiveVoid() || in IsInPlaceConvertible()
243 IsParameterInPlaceConvertible(target->GetRType(), GetRType()); in IsInPlaceConvertible()
250 ObjPtr<mirror::Class> r_type = MethodType::GetRType(method_type); in PrettyDescriptorImpl()
Dmethod_type.h46 ObjPtr<mirror::Class> GetRType() const REQUIRES_SHARED(Locks::mutator_lock_);
87 ObjPtr<Class> GetRType() REQUIRES_SHARED(Locks::mutator_lock_);
150 static ObjPtr<mirror::Class> GetRType(ObjPtr<MethodType> method_type)
152 static ObjPtr<mirror::Class> GetRType(Handle<MethodType> method_type)
154 static ObjPtr<mirror::Class> GetRType(RawMethodType method_type)
Demulated_stack_frame.cc161 Handle<mirror::Class> r_type(hs.NewHandle(callee_type->GetRType())); in CreateFromShadowFrameAndArgs()
213 Handle<mirror::Class> r_type(hs.NewHandle(GetType()->GetRType())); in GetReturnValue()
237 Handle<mirror::Class> r_type(hs.NewHandle(GetType()->GetRType())); in SetReturnValue()
Dvar_handle.cc1344 ObjPtr<Class> mt_rtype = MethodType::GetRType(method_type); in GetMethodTypeMatchForAccessModeImpl()
/art/runtime/
Dvar_handles.cc87 mirror::MethodType::GetRType(accessor_type), in VarHandleInvokeAccessorWithConversions()
88 mirror::MethodType::GetRType(callsite_type), in VarHandleInvokeAccessorWithConversions()
Dmethod_handles.cc469 DCHECK(handle_type->GetRType()->IsStringClass()); in RefineTargetMethod()
Dclass_linker_test.cc1600 ASSERT_OBJ_PTR_EQ(string_class.Get(), method1_type->GetRType()); in TEST_F()
/art/runtime/interpreter/
Dinterpreter_common.cc1027 if (!IsReturnTypeConvertible(call_site_type->GetRType(), bsm->GetMethodType()->GetRType())) { in InvokeBootstrapMethod()
1028 ThrowClassCastException(bsm->GetMethodType()->GetRType(), call_site_type->GetRType()); in InvokeBootstrapMethod()