Home
last modified time | relevance | path

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

/aosp12/art/runtime/mirror/
H A Dmethod_type_test.cc42 const std::vector<std::string>& param_types) { in CreateMethodType() argument
43 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()
H A Dmethod_type.h37 Handle<ObjectArray<Class>> param_types)
/aosp12/art/runtime/
H A Dimtable-inl.h66 const dex::TypeList* param_types = dex_file->GetProtoParameters(proto_id); in GetImtHashComponents() local
67 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()
H A Dmethod_handles.cc407 ObjPtr<mirror::ObjectArray<mirror::Class>> param_types(callsite_type->GetPTypes()); in IsCallerTransformer() local
408 if (param_types->GetLength() == 1) { in IsCallerTransformer()
409 ObjPtr<mirror::Class> param(param_types->GetWithoutChecks(0)); in IsCallerTransformer()
/aosp12/art/test/988-method-trace/
H A Dgen_srcs.py225 param_types = sig_to_parameter_type_list(sig)
226 pretty_params = param_types
227 pretty_params = [javafy_name(i) for i in param_types]
/aosp12/frameworks/base/startop/view_compiler/
H A Ddex_builder.cc271 proto->param_types = dex->Alloc<ir::TypeList>(); in Encode()
273 proto->param_types->types.push_back(dex->GetOrAddType(param_type.descriptor())); in Encode()
276 proto->param_types = nullptr; in Encode()
321 decl_->prototype->param_types != nullptr ? decl_->prototype->param_types->types.size() : 0; in Encode()
H A Ddex_builder.h91 explicit Prototype(TypeDescriptor return_type, TypeDescriptors... param_types) in Prototype() argument
92 : return_type_{return_type}, param_types_{param_types...} {} in Prototype()
/aosp12/frameworks/native/vulkan/scripts/
H A Ddriver_generator.py362 param_types = ', '.join([''.join(i) for i in gencom.param_dict[cmd]])
366 '(' + param_types + ') {\n')
/aosp12/system/bt/gd/packet/parser/
H A Dparent_def.cc238 std::set<std::string> param_types = { in GetParamList() local
250 auto parent_params = parent_->GetParamList().GetFieldsWithTypes(param_types); in GetParamList()
260 return params.Merge(fields_.GetFieldsWithTypes(param_types)); in GetParamList()