Searched defs:params (Results 1 - 6 of 6) sorted by relevance

/art/compiler/dex/quick/
H A Ddex_file_method_inliner.h239 * The return_type and params are used with the IndexCache to look up
245 ClassCacheIndex params[kProtoMaxParams]; member in struct:art::DexFileMethodInliner::ProtoDef
/art/runtime/
H A Ddex_file-inl.h94 const DexFile::TypeList* params = dex_file_->GetProtoParameters(*proto_id_); local
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_);
H A Dreflection.cc353 const DexFile::TypeList* params = m->GetParameterTypeList(); local
354 if (params == nullptr) {
358 uint32_t num_params = params->Size();
369 uint16_t type_idx = params->GetTypeItem(i).type_idx_;
H A Ddex_file.cc996 const DexFile::TypeList* params = dex_file_->GetProtoParameters(*proto_id_); local
998 if (params == nullptr) {
1002 for (uint32_t i = 0; i < params->Size(); ++i) {
1003 result += dex_file_->StringByTypeIdx(params->GetTypeItem(i).type_idx_);
1020 const DexFile::TypeList* params = dex_file_->GetProtoParameters(*proto_id_); local
1021 if (params != nullptr) {
1022 for (uint32_t i = 0; i < params->Size(); ++i) {
1023 StringPiece param(dex_file_->StringByTypeIdx(params->GetTypeItem(i).type_idx_));
/art/runtime/interpreter/
H A Dinterpreter_common.cc556 const DexFile::TypeList* params = method->GetParameterTypeList(); local
585 Class* arg_type = mh.GetClassFromTypeIdx(params->GetTypeItem(shorty_pos).type_idx_);
/art/runtime/verifier/
H A Dmethod_verifier.cc3440 const DexFile::TypeList* params = res_method->GetParameterTypeList(); local
3441 size_t params_size = params == nullptr ? 0 : params->Size();
3456 res_method->GetTypeDescriptorFromTypeIdx(params->GetTypeItem(param_index).type_idx_);

Completed in 1967 milliseconds