Home
last modified time | relevance | path

Searched refs:p_types (Results 1 – 4 of 4) sorted by relevance

/art/runtime/mirror/
Dmethod_type.cc59 RawPTypesAccessor p_types(method_type); in Create() local
60 int32_t num_method_args = p_types.GetLength(); in Create()
73 method_params->Set(i, p_types.Get(i)); in Create()
121 auto p_types = MethodType::GetPTypes(method_type); in NumberOfVRegsImpl() local
122 const int32_t p_types_length = p_types.GetLength(); in NumberOfVRegsImpl()
128 ObjPtr<Class> klass = p_types.Get(i); in NumberOfVRegsImpl()
155 const ObjPtr<ObjectArray<Class>> p_types = GetPTypes(); in IsExactMatch() local
156 const int32_t params_length = p_types->GetLength(); in IsExactMatch()
163 if (p_types->GetWithoutChecks(i) != target_p_types->GetWithoutChecks(i)) { in IsExactMatch()
171 const ObjPtr<ObjectArray<Class>> p_types = GetPTypes(); in IsConvertible() local
[all …]
Dmethod_type-inl.h85 inline MethodType::PTypesAccessor<PTypesType>::PTypesAccessor(PTypesType p_types) in PTypesAccessor() argument
86 : p_types_(p_types) {} in PTypesAccessor()
115 Handle<ObjectArray<mirror::Class>> p_types = hs->NewHandle(method_type->GetPTypes()); in NewHandlePTypes() local
116 return HandlePTypesAccessor(p_types); in NewHandlePTypes()
Demulated_stack_frame.cc37 static void CalculateFrameAndReferencesSize(ObjPtr<mirror::ObjectArray<mirror::Class>> p_types, in CalculateFrameAndReferencesSize() argument
42 const size_t length = p_types->GetLength(); in CalculateFrameAndReferencesSize()
46 ObjPtr<mirror::Class> type = p_types->GetWithoutChecks(i); in CalculateFrameAndReferencesSize()
155 Handle<mirror::ObjectArray<mirror::Class>> p_types(hs.NewHandle(callee_type->GetPTypes())); in CreateFromShadowFrameAndArgs() local
162 CalculateFrameAndReferencesSize(p_types.Get(), r_type.Get(), &frame_size, &refs_size); in CreateFromShadowFrameAndArgs()
Dmethod_type.h110 explicit PTypesAccessor(PTypesType p_types) REQUIRES_SHARED(Locks::mutator_lock_);