Searched refs:params (Results 1 – 14 of 14) sorted by relevance
/art/runtime/ |
D | dex_file-inl.h | 94 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_);
|
D | art_method.cc | 537 bool ArtMethod::EqualParameters(Handle<mirror::ObjectArray<mirror::Class>> params) { in EqualParameters() argument 544 auto param_len = params.Get() != nullptr ? params->GetLength() : 0u; in EqualParameters() 556 if (type != params->GetWithoutChecks(i)) { in EqualParameters()
|
D | dex_file.cc | 1059 const DexFile::TypeList* params = dex_file_->GetProtoParameters(*proto_id_); in ToString() local 1061 if (params == nullptr) { in ToString() 1065 for (uint32_t i = 0; i < params->Size(); ++i) { in ToString() 1066 result += dex_file_->StringByTypeIdx(params->GetTypeItem(i).type_idx_); in ToString() 1083 const DexFile::TypeList* params = dex_file_->GetProtoParameters(*proto_id_); in operator ==() local 1084 if (params != nullptr) { in operator ==() 1085 for (uint32_t i = 0; i < params->Size(); ++i) { in operator ==() 1086 StringPiece param(dex_file_->StringByTypeIdx(params->GetTypeItem(i).type_idx_)); in operator ==()
|
D | reflection.cc | 347 const DexFile::TypeList* params = m->GetParameterTypeList(); in CheckMethodArguments() local 348 if (params == nullptr) { in CheckMethodArguments() 352 uint32_t num_params = params->Size(); in CheckMethodArguments() 360 uint16_t type_idx = params->GetTypeItem(i).type_idx_; in CheckMethodArguments()
|
D | art_method.h | 526 bool EqualParameters(Handle<mirror::ObjectArray<mirror::Class>> params)
|
/art/runtime/gc/space/ |
D | valgrind_malloc_space.h | 60 explicit ValgrindMallocSpace(MemMap* mem_map, size_t initial_size, Params... params);
|
D | valgrind_malloc_space-inl.h | 243 MemMap* mem_map, size_t initial_size, Params... params) : S(mem_map, initial_size, params...) { in ValgrindMallocSpace()
|
/art/test/046-reflect/ |
D | expected.txt | 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>'
|
/art/test/046-reflect/src/ |
D | Main.java | 35 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/ |
D | dex_file_method_inliner.h | 292 ClassCacheIndex params[kProtoMaxParams]; member
|
D | dex_file_method_inliner.cc | 761 uint32_t param_index = FindClassIndex(dex_file, cache, proto_def.params[i]); in FindProtoIndex()
|
/art/runtime/native/ |
D | java_lang_Class.cc | 266 auto* params = soa.Decode<mirror::ObjectArray<mirror::Class>*>(args); in Class_getDeclaredConstructorInternal() local 268 auto* declared_constructor = klass->GetDeclaredConstructor(soa.Self(), hs.NewHandle(params)); in Class_getDeclaredConstructorInternal()
|
/art/runtime/interpreter/ |
D | interpreter_common.cc | 526 const DexFile::TypeList* params = new_shadow_frame->GetMethod()->GetParameterTypeList(); in DoCall() local 562 params->GetTypeItem(shorty_pos).type_idx_, true); in DoCall()
|
/art/runtime/verifier/ |
D | method_verifier.cc | 3633 const DexFile::TypeList* params = res_method->GetParameterTypeList(); in VerifyInvokeVirtualQuickArgs() local 3634 size_t params_size = params == nullptr ? 0 : params->Size(); in VerifyInvokeVirtualQuickArgs() 3649 res_method->GetTypeDescriptorFromTypeIdx(params->GetTypeItem(param_index).type_idx_); in VerifyInvokeVirtualQuickArgs()
|