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

/art/tools/ahat/src/
H A DQuery.java91 Map<String, String> params = new TreeMap<String, String>(mParams);
92 params.put(name, value);
94 for (Map.Entry<String, String> entry : params.entrySet()) {
/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 Dart_method.cc335 bool ArtMethod::EqualParameters(Handle<mirror::ObjectArray<mirror::Class>> params) { argument
342 auto param_len = params.Get() != nullptr ? params->GetLength() : 0u;
354 if (type != params->GetWithoutChecks(i)) {
H A Dreflection.cc349 const DexFile::TypeList* params = m->GetParameterTypeList(); local
350 if (params == nullptr) {
354 uint32_t num_params = params->Size();
363 uint16_t type_idx = params->GetTypeItem(i).type_idx_;
H A Ddex_file.cc2265 const DexFile::TypeList* params = dex_file_->GetProtoParameters(*proto_id_); local
2267 if (params == nullptr) {
2271 for (uint32_t i = 0; i < params->Size(); ++i) {
2272 result += dex_file_->StringByTypeIdx(params->GetTypeItem(i).type_idx_);
2289 const DexFile::TypeList* params = dex_file_->GetProtoParameters(*proto_id_); local
2290 if (params != nullptr) {
2291 for (uint32_t i = 0; i < params->Size(); ++i) {
2292 StringPiece param(dex_file_->StringByTypeIdx(params->GetTypeItem(i).type_idx_));
H A Dart_method.h637 bool EqualParameters(Handle<mirror::ObjectArray<mirror::Class>> params)
/art/runtime/gc/space/
H A Dmemory_tool_malloc_space.h56 MemoryToolMallocSpace(MemMap* mem_map, size_t initial_size, Params... params);
H A Dmemory_tool_malloc_space-inl.h242 MemMap* mem_map, size_t initial_size, Params... params) : S(mem_map, initial_size, params...) {
241 MemoryToolMallocSpace( MemMap* mem_map, size_t initial_size, Params... params) argument
/art/compiler/dex/quick/
H A Ddex_file_method_inliner.h312 * The return_type and params are used with the IndexCache to look up
318 ClassCacheIndex params[kProtoMaxParams]; member in struct:art::DexFileMethodInliner::ProtoDef
H A Ddex_file_method_inliner.cc768 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());
527 System.out.println("generic method " + method.getName() + " params='"
537 System.out.println("generic ctor " + ctor.getName() + " params='"
/art/runtime/interpreter/
H A Dinterpreter_common.cc663 const DexFile::TypeList* params = method->GetParameterTypeList(); local
692 params->GetTypeItem(shorty_pos).type_idx_, true /* resolve */, pointer_size);
/art/runtime/verifier/
H A Dmethod_verifier.cc4233 const DexFile::TypeList* params = res_method->GetParameterTypeList(); local
4234 size_t params_size = params == nullptr ? 0 : params->Size();
4249 res_method->GetTypeDescriptorFromTypeIdx(params->GetTypeItem(param_index).type_idx_);

Completed in 234 milliseconds