Searched refs:param_types (Results 1 - 5 of 5) sorted by relevance

/art/runtime/
H A Dimtable-inl.h66 const DexFile::TypeList* param_types = dex_file->GetProtoParameters(proto_id); local
67 if (param_types != nullptr) {
68 for (size_t i = 0; i != param_types->Size(); ++i) {
69 const DexFile::TypeItem& type = param_types->GetTypeItem(i);
H A Dmethod_handles.cc406 ObjPtr<mirror::ObjectArray<mirror::Class>> param_types(callsite_type->GetPTypes());
407 if (param_types->GetLength() == 1) {
408 ObjPtr<mirror::Class> param(param_types->GetWithoutChecks(0));
/art/runtime/mirror/
H A Dmethod_type_test.cc40 const std::vector<std::string>& param_types) {
41 CHECK_LT(param_types.size(), 3u);
59 mirror::ObjectArray<mirror::Class>::Alloc(self, class_array_type, param_types.size()));
61 for (uint32_t i = 0; i < param_types.size(); ++i) {
63 soa.Self(), FullyQualifiedType(param_types[i]).c_str(), boot_class_loader));
39 CreateMethodType(const std::string& return_type, const std::vector<std::string>& param_types) argument
H A Dmethod_type.cc30 Handle<ObjectArray<Class>> param_types) {
41 mt->SetFieldObject<false>(PTypesOffset(), param_types.Get());
28 Create(Thread* const self, Handle<Class> return_type, Handle<ObjectArray<Class>> param_types) argument
H A Dmethod_type.h36 Handle<ObjectArray<Class>> param_types)

Completed in 76 milliseconds