Home
last modified time | relevance | path

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

/art/runtime/mirror/
Dmethod_type-inl.h72 inline ObjPtr<ObjectArray<Class>> MethodType::GetPTypes() { in GetPTypes() function
77 return GetPTypes()->GetLength(); in GetNumberOfPTypes()
115 Handle<ObjectArray<mirror::Class>> p_types = hs->NewHandle(method_type->GetPTypes()); in NewHandlePTypes()
125 inline MethodType::ObjPtrPTypesAccessor MethodType::GetPTypes(ObjPtr<MethodType> method_type) { in GetPTypes() function
126 return ObjPtrPTypesAccessor(method_type->GetPTypes()); in GetPTypes()
129 inline MethodType::ObjPtrPTypesAccessor MethodType::GetPTypes(Handle<MethodType> method_type) { in GetPTypes() function
130 return GetPTypes(method_type.Get()); in GetPTypes()
133 inline MethodType::RawPTypesAccessor MethodType::GetPTypes(RawMethodType method_type) { in GetPTypes() function
Dmethod_type.cc82 Handle<ObjectArray<Class>> src_ptypes = hs.NewHandle(method_type->GetPTypes()); in CloneWithoutLeadingParameter()
107 Handle<ObjectArray<Class>> src_ptypes = hs.NewHandle(method_type->GetPTypes()); in CollectTrailingArguments()
121 auto p_types = MethodType::GetPTypes(method_type); in NumberOfVRegsImpl()
155 const ObjPtr<ObjectArray<Class>> p_types = GetPTypes(); in IsExactMatch()
158 const ObjPtr<ObjectArray<Class>> target_p_types = target->GetPTypes(); in IsExactMatch()
171 const ObjPtr<ObjectArray<Class>> p_types = GetPTypes(); in IsConvertible()
174 const ObjPtr<ObjectArray<Class>> target_p_types = target->GetPTypes(); in IsConvertible()
228 const ObjPtr<ObjectArray<Class>> ptypes = GetPTypes(); in IsInPlaceConvertible()
229 const ObjPtr<ObjectArray<Class>> target_ptypes = target->GetPTypes(); in IsInPlaceConvertible()
249 auto p_types = MethodType::GetPTypes(method_type); in PrettyDescriptorImpl()
Dmethod_type.h79 ObjPtr<ObjectArray<Class>> GetPTypes() REQUIRES_SHARED(Locks::mutator_lock_);
143 static ObjPtrPTypesAccessor GetPTypes(ObjPtr<MethodType> method_type)
145 static ObjPtrPTypesAccessor GetPTypes(Handle<MethodType> method_type)
147 static RawPTypesAccessor GetPTypes(RawMethodType method_type)
Demulated_stack_frame.cc155 Handle<mirror::ObjectArray<mirror::Class>> p_types(hs.NewHandle(callee_type->GetPTypes())); in CreateFromShadowFrameAndArgs()
Dvar_handle.cc1367 auto mt_ptypes = MethodType::GetPTypes(method_type); in GetMethodTypeMatchForAccessModeImpl()
/art/runtime/
Dmethod_handles.cc477 ObjPtr<mirror::Class> referrer_class = handle_type->GetPTypes()->Get(0); in RefineTargetMethod()
657 callsite_type->GetPTypes()->Get(kPTypeIndex)->GetPrimitiveType(), in MethodHandleFieldAccess()
678 callsite_type->GetPTypes()->Get(kPTypeIndex)->GetPrimitiveType(), in MethodHandleFieldAccess()
699 callsite_ptypes(hs.NewHandle(callsite_type->GetPTypes())); in DoVarHandleInvokeTranslation()
701 mh_ptypes(hs.NewHandle(method_handle->GetMethodType()->GetPTypes())); in DoVarHandleInvokeTranslation()
Dmethod_handles-inl.h204 Handle<mirror::ObjectArray<mirror::Class>> ptypes(hs.NewHandle(method_type->GetPTypes())); in CopyArguments()
Dclass_linker_test.cc1601 ASSERT_OBJ_PTR_EQ(string_class.Get(), method1_type->GetPTypes()->Get(0)); in TEST_F()
/art/runtime/interpreter/
Dinterpreter_common.cc974 hs.NewHandle(bsm->GetMethodType()->GetPTypes()->Get(number_of_bsm_parameters - 1)); in InvokeBootstrapMethod()
988 if (call_site_type->GetPTypes()->Get(i) != collector_array_class->GetComponentType()) { in InvokeBootstrapMethod()
990 call_site_type->GetPTypes()->Get(i)); in InvokeBootstrapMethod()
1020 ObjPtr<mirror::Class> from = call_site_type->GetPTypes()->Get(i); in InvokeBootstrapMethod()
1021 ObjPtr<mirror::Class> to = bsm->GetMethodType()->GetPTypes()->Get(i); in InvokeBootstrapMethod()
1056 call_site_type->GetPTypes()->Get(argument_index)->IsArrayClass()) { in InvokeBootstrapMethod()
1057 ObjPtr<mirror::Class> array_type = call_site_type->GetPTypes()->Get(argument_index); in InvokeBootstrapMethod()