Home
last modified time | relevance | path

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

/art/runtime/mirror/
Dmethod_type-inl.h49 DCHECK_NE(GetNumberOfPTypes(), 0); in AddPType()
50 DCHECK_EQ(GetPType(GetNumberOfPTypes() - 1), ptype); in AddPType()
53 inline int32_t RawMethodType::GetNumberOfPTypes() const { in GetNumberOfPTypes() function
59 DCHECK_LT(i, GetNumberOfPTypes()); in GetPType()
76 inline int MethodType::GetNumberOfPTypes() { in GetNumberOfPTypes() function
105 return method_type_.GetNumberOfPTypes(); in GetLength()
Dmethod_type.h44 int32_t GetNumberOfPTypes() const REQUIRES_SHARED(Locks::mutator_lock_);
81 int GetNumberOfPTypes() REQUIRES_SHARED(Locks::mutator_lock_);
Dmethod_type.cc84 const int32_t dst_ptypes_count = method_type->GetNumberOfPTypes() - 1; in CloneWithoutLeadingParameter()
99 int32_t ptypes_length = method_type->GetNumberOfPTypes(); in CollectTrailingArguments()
/art/runtime/interpreter/
Dinterpreter_common.cc968 int number_of_bsm_parameters = bsm->GetMethodType()->GetNumberOfPTypes(); in InvokeBootstrapMethod()
982 if (call_site_type->GetNumberOfPTypes() < number_of_bsm_parameters - 1) { in InvokeBootstrapMethod()
987 for (int i = number_of_bsm_parameters - 1; i < call_site_type->GetNumberOfPTypes(); ++i) { in InvokeBootstrapMethod()
996 collector_arguments_length = call_site_type->GetNumberOfPTypes() - number_of_bsm_parameters + 1; in InvokeBootstrapMethod()
1010 if (call_site_type->GetNumberOfPTypes() != bsm->GetMethodType()->GetNumberOfPTypes()) { in InvokeBootstrapMethod()
1019 for (int32_t i = 0; i < call_site_type->GetNumberOfPTypes(); ++i) { in InvokeBootstrapMethod()
1052 int number_of_arguments = call_site_type->GetNumberOfPTypes(); in InvokeBootstrapMethod()