Home
last modified time | relevance | path

Searched refs:params (Results 1 – 14 of 14) 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_);
Dart_method.cc537 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()
Ddex_file.cc1059 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 ==()
Dreflection.cc347 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()
Dart_method.h526 bool EqualParameters(Handle<mirror::ObjectArray<mirror::Class>> params)
/art/runtime/gc/space/
Dvalgrind_malloc_space.h60 explicit ValgrindMallocSpace(MemMap* mem_map, size_t initial_size, Params... params);
Dvalgrind_malloc_space-inl.h243 MemMap* mem_map, size_t initial_size, Params... params) : S(mem_map, initial_size, params...) { in ValgrindMallocSpace()
/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.h292 ClassCacheIndex params[kProtoMaxParams]; member
Ddex_file_method_inliner.cc761 uint32_t param_index = FindClassIndex(dex_file, cache, proto_def.params[i]); in FindProtoIndex()
/art/runtime/native/
Djava_lang_Class.cc266 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/
Dinterpreter_common.cc526 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/
Dmethod_verifier.cc3633 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()