Searched refs:params (Results 1 – 9 of 9) sorted by relevance
94 const DexFile::TypeList* params = dex_file_->GetProtoParameters(*proto_id_); variable97 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_);
996 const DexFile::TypeList* params = dex_file_->GetProtoParameters(*proto_id_); in ToString() local998 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 ==() local1021 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 ==()
353 const DexFile::TypeList* params = m->GetParameterTypeList(); in CheckMethodArguments() local354 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()
120 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>'
35 Class[] params, exceptions; in printMethodInfo() local41 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()
245 ClassCacheIndex params[kProtoMaxParams]; member
633 uint32_t param_index = FindClassIndex(dex_file, cache, proto_def.params[i]); in FindProtoIndex()
556 const DexFile::TypeList* params = method->GetParameterTypeList(); in DoCall() local585 Class* arg_type = mh.GetClassFromTypeIdx(params->GetTypeItem(shorty_pos).type_idx_); in DoCall()
3440 const DexFile::TypeList* params = res_method->GetParameterTypeList(); in VerifyInvokeVirtualQuickArgs() local3441 size_t params_size = params == nullptr ? 0 : params->Size(); in VerifyInvokeVirtualQuickArgs()3456 res_method->GetTypeDescriptorFromTypeIdx(params->GetTypeItem(param_index).type_idx_); in VerifyInvokeVirtualQuickArgs()