Searched refs:param_types (Results 1 – 5 of 5) sorted by relevance
66 const dex::TypeList* param_types = dex_file->GetProtoParameters(proto_id); in GetImtHashComponents() local67 if (param_types != nullptr) { in GetImtHashComponents()68 for (size_t i = 0; i != param_types->Size(); ++i) { in GetImtHashComponents()69 const dex::TypeItem& type = param_types->GetTypeItem(i); in GetImtHashComponents()
407 ObjPtr<mirror::ObjectArray<mirror::Class>> param_types(callsite_type->GetPTypes()); in IsCallerTransformer() local408 if (param_types->GetLength() == 1) { in IsCallerTransformer()409 ObjPtr<mirror::Class> param(param_types->GetWithoutChecks(0)); in IsCallerTransformer()
42 const std::vector<std::string>& param_types) { in CreateMethodType() argument43 CHECK_LT(param_types.size(), 3u); in CreateMethodType()61 mirror::ObjectArray<mirror::Class>::Alloc(self, class_array_type, param_types.size())); in CreateMethodType()63 for (uint32_t i = 0; i < param_types.size(); ++i) { in CreateMethodType()65 soa.Self(), FullyQualifiedType(param_types[i]).c_str(), boot_class_loader)); in CreateMethodType()
35 Handle<ObjectArray<Class>> param_types)
225 param_types = sig_to_parameter_type_list(sig)226 pretty_params = param_types227 pretty_params = [javafy_name(i) for i in param_types]