Searched refs:params (Results 1 - 8 of 8) sorted by relevance

/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 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_));
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_;
/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
H A Ddex_file_method_inliner.cc633 uint32_t param_index = FindClassIndex(dex_file, cache, proto_def.params[i]);
/art/test/046-reflect/src/
H A DMain.java35 Class[] params, exceptions;
41 params = meth.getParameterTypes();
42 for (i = 0; i < params.length; i++)
43 System.out.println(" Arg " + i + ": " + params[i].getName());
511 System.out.println("generic method " + method.getName() + " params='"
521 System.out.println("generic ctor " + ctor.getName() + " params='"
/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 262 milliseconds