Home
last modified time | relevance | path

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

/art/runtime/
Ddex_file-inl.h94 const DexFile::TypeList* params = dex_file_->GetProtoParameters(*proto_id_); variable
97 DCHECK_EQ(params == nullptr, rhs_params == nullptr);
98 if (params != nullptr) {
99 uint32_t params_size = params->Size();
102 const DexFile::TypeId& param_id = dex_file_->GetTypeId(params->GetTypeItem(i).type_idx_);
Ddex_file.cc996 const DexFile::TypeList* params = dex_file_->GetProtoParameters(*proto_id_); in ToString() local
998 if (params == nullptr) { in ToString()
1002 for (uint32_t i = 0; i < params->Size(); ++i) { in ToString()
1003 result += dex_file_->StringByTypeIdx(params->GetTypeItem(i).type_idx_); in ToString()
1020 const DexFile::TypeList* params = dex_file_->GetProtoParameters(*proto_id_); in operator ==() local
1021 if (params != nullptr) { in operator ==()
1022 for (uint32_t i = 0; i < params->Size(); ++i) { in operator ==()
1023 StringPiece param(dex_file_->StringByTypeIdx(params->GetTypeItem(i).type_idx_)); in operator ==()
Dreflection.cc353 const DexFile::TypeList* params = m->GetParameterTypeList(); in CheckMethodArguments() local
354 if (params == nullptr) { in CheckMethodArguments()
358 uint32_t num_params = params->Size(); in CheckMethodArguments()
369 uint16_t type_idx = params->GetTypeItem(i).type_idx_; in CheckMethodArguments()
/art/test/046-reflect/
Dexpected.txt120 generic method fancyMethod params='[1] java.util.ArrayList<java.lang.String>' ret='java.util.Map<ja…
121 generic ctor Main params='[1] java.util.ArrayList<java.lang.Integer>'
/art/test/046-reflect/src/
DMain.java35 Class[] params, exceptions; in printMethodInfo() local
41 params = meth.getParameterTypes(); in printMethodInfo()
42 for (i = 0; i < params.length; i++) in printMethodInfo()
43 System.out.println(" Arg " + i + ": " + params[i].getName()); in printMethodInfo()
/art/compiler/dex/quick/
Ddex_file_method_inliner.h245 ClassCacheIndex params[kProtoMaxParams]; member
Ddex_file_method_inliner.cc633 uint32_t param_index = FindClassIndex(dex_file, cache, proto_def.params[i]); in FindProtoIndex()
/art/runtime/interpreter/
Dinterpreter_common.cc556 const DexFile::TypeList* params = method->GetParameterTypeList(); in DoCall() local
585 Class* arg_type = mh.GetClassFromTypeIdx(params->GetTypeItem(shorty_pos).type_idx_); in DoCall()
/art/runtime/verifier/
Dmethod_verifier.cc3440 const DexFile::TypeList* params = res_method->GetParameterTypeList(); in VerifyInvokeVirtualQuickArgs() local
3441 size_t params_size = params == nullptr ? 0 : params->Size(); in VerifyInvokeVirtualQuickArgs()
3456 res_method->GetTypeDescriptorFromTypeIdx(params->GetTypeItem(param_index).type_idx_); in VerifyInvokeVirtualQuickArgs()