Home
last modified time | relevance | path

Searched refs:second (Results 101 – 125 of 210) sorted by relevance

123456789

/art/tools/hiddenapi/
Dhiddenapi.cc506 return &it->second; in FindClass()
519 HierarchyClass& klass = entry.second; in BuildClassHierarchy()
972 builder.WriteFlags(api_list_found ? it->second : ApiList::Whitelist()); in EncodeAccessFlags()
1056 const ApiStubs::Kind stub_api = cp_entry.second; in ListApi()
1070 it->second.insert(ApiStubs::ToString(stub_api)); in ListApi()
1086 if (entry.second.empty()) { in ListApi()
1090 file_flags << android::base::Join(entry.second, ",") << std::endl; in ListApi()
/art/cmdline/detail/
Dcmdline_parse_argument_detail.h123 return best_match.second; in MaybeMatches()
374 size_t best_match_size = closest_match_res.second; in ParseArgument()
455 return SaveArgument(value_pair.second); in ParseArgumentSingle()
/art/libprofile/profile/
Dprofile_boot_info.cc54 AddUintToBuffer(&buffer, pair.second); in Save()
Dprofile_compilation_info_test.cc1760 ASSERT_EQ(mIt1->second.GetFlags(), Hotness::kFlagHot | Hotness::kFlagStartup); in TEST_F()
1761 ASSERT_EQ(sort(mIt1->second.GetAnnotations()), expectedAnnotations1); in TEST_F()
1765 ASSERT_EQ(cIt1->second.GetFlags(), 0); in TEST_F()
1766 ASSERT_EQ(sort(cIt1->second.GetAnnotations()), expectedAnnotations1); in TEST_F()
1770 ASSERT_EQ(mIt2->second.GetFlags(), Hotness::kFlagHot); in TEST_F()
1771 ASSERT_EQ(sort(mIt2->second.GetAnnotations()), expectedAnnotations2); in TEST_F()
1826 ASSERT_EQ(mIt1->second.GetFlags(), Hotness::kFlagHot | Hotness::kFlagStartup); in TEST_F()
1827 ASSERT_EQ(sort(mIt1->second.GetAnnotations()), expectedAnnotations1); in TEST_F()
1831 ASSERT_EQ(cIt1->second.GetFlags(), 0); in TEST_F()
1832 ASSERT_EQ(sort(cIt1->second.GetAnnotations()).size(), expectedAnnotations1.size()); in TEST_F()
[all …]
/art/test/098-ddmc/
Dexpected.txt21 second > first =true
/art/compiler/debug/
Delf_symtab_writer.h108 const DexFile* dex_file = it.second; in WriteDebugSymbols()
Delf_debug_info_writer.h173 bool unique = owner_->defined_dex_classes_.insert(dex_class_desc).second; in Write()
420 mirror::Class* base_class = base_class_reference.second; in Write()
423 info_.UpdateUint32(reference_offset, it->second); in Write()
503 info_.UpdateUint32(lazy_type.second, WriteTypeDeclaration(lazy_type.first)); in FinishLazyTypes()
523 return it->second; in WriteTypeDeclaration()
Delf_debug_writer.cc75 std::stable_sort(it.second.methods.begin(), in WriteDebugInfo()
76 it.second.methods.end(), in WriteDebugInfo()
80 compilation_units.push_back(std::move(it.second)); in WriteDebugInfo()
/art/dexlayout/
Dcompact_dex_writer.cc226 if (!existing.second) { in Dedupe()
228 return existing.first->second; in Dedupe()
264 uint32_t idx_a = it_a != method_idx_map.end() ? it_a->second : 0u; in SortDebugInfosByMethodIndex()
265 uint32_t idx_b = it_b != method_idx_map.end() ? it_b->second : 0u; in SortDebugInfosByMethodIndex()
/art/compiler/optimizing/
Dregister_allocator_test.cc795 HInstruction* second = new (GetAllocator()) HParameterValue( in BuildDiv() local
798 entry->AddInstruction(second); in BuildDiv()
805 DataType::Type::kInt32, first, second, 0); // don't care about dex_pc. in BuildDiv()
888 LiveInterval* second = BuildInterval(ranges2, arraysize(ranges2), GetScopedAllocator(), -1, two); in TEST_F() local
890 new (GetAllocator()) LocationSummary(second->GetDefinedBy(), LocationSummary::kNoCall); in TEST_F()
925 register_allocator.unhandled_core_intervals_.push_back(second); in TEST_F()
938 intervals.push_back(second); in TEST_F()
Dsuperblock_cloner.h192 return copy_input_iter->second; in GetInstrCopy()
203 if (it.second == copy_instr) { in GetInstrOrig()
Dsuperblock_cloner.cc338 outer_loop_bb_set->SetBit(entry.second->GetBlockId()); in RecalculateBackEdgesInfo()
640 live_out_it->second = phi; in ConstructSubgraphClosedSSA()
670 DCHECK(it.first != it.second); in FixSubgraphClosedSSAAfterCloning()
672 HPhi* phi = it.second->AsPhi(); in FixSubgraphClosedSSAAfterCloning()
778 HInstruction* copy_instr = it.second; in VerifyGraph()
783 DCHECK(it.second->GetBlock() != nullptr); in VerifyGraph()
973 work_set.SetBit(iter.second->GetBlockId()); // Copy block. in Run()
Dloop_optimization.cc841 HInstruction* copy = entry.second; in TryPeelingForLoopInvariantExitsElimination()
1187 HInstruction* repl = ReduceAndExtractIfNeeded(i->second); in Vectorize()
1247 if (i != vector_map_->end() && !i->second->IsInBlock()) { in GenerateNewLoop()
1248 Insert(vector_body_, i->second); in GenerateNewLoop()
1250 if (i->second->NeedsEnvironment()) { in GenerateNewLoop()
1251 i->second->CopyEnvironmentFromWithLoopPhiAdjustment(env, vector_header_); in GenerateNewLoop()
1262 DCHECK(i->second->IsPhi()); in GenerateNewLoop()
1263 GenerateVecReductionPhiInputs(i->second->AsPhi(), i->first); in GenerateNewLoop()
1323 vector_permanent_map_->Put(new_red, vector_map_->Get(redit->second)); in VectorizeDef()
1324 vector_permanent_map_->Overwrite(redit->second, new_red); in VectorizeDef()
[all …]
/art/test/523-checker-can-throw-regression/smali/
DTest.smali42 # Block would be split here but second part not marked as throwing.
/art/runtime/gc/
Dtask_processor.cc83 for (auto it = range.first; it != range.second; ++it) { in UpdateTargetRunTime()
Dtask_processor_test.cc133 auto* task = new TestOrderTask(pair.first, pair.second, &counter); in TEST_F()
/art/compiler/utils/
Ddedupe_set-inl.h99 ++it->second;
104 size_t number_of_entries = entry.second;
/art/perfetto_hprof/
Dperfetto_hprof.cc98 return it->second; in FindOrAppend()
547 const std::vector<art::mirror::Object*>& children = p.second; in DumpPerfetto()
621 reference_object_ids->Append(GetObjectId(p.second)); in DumpPerfetto()
631 uint64_t id = p.second; in DumpPerfetto()
641 uint64_t id = p.second; in DumpPerfetto()
/art/runtime/gc/space/
Dmalloc_space.cc78 freed.second = nullptr; in MallocSpace()
129 return recent_freed_objects_[pos].second; in FindRecentFreedObject()
/art/runtime/base/
Dmutex.cc341 most_common_blocked.Overwrite(blocked_tid, it->second + count); in DumpContention()
347 most_common_blocker.Overwrite(owner_tid, it->second + count); in DumpContention()
356 if (pair.second > max_tid_count) { in DumpContention()
358 max_tid_count = pair.second; in DumpContention()
367 if (pair.second > max_tid_count) { in DumpContention()
369 max_tid_count = pair.second; in DumpContention()
/art/tools/jvmti-agents/field-counts/
Dfieldcount.cc106 jfieldID field = p.second; in DataDumpRequestCb()
190 << "\t" << sz.second; in DataDumpRequestCb()
/art/oatdump/
Doatdump.cc123 return it->second.get(); in OpenDexFile()
313 info.deduped = !seen_offsets_.insert(oat_method.GetCodeOffset()).second; in WalkOatMethod()
800 return seen_stats_objects_.insert(address).second; // Inserted new entry. in AddStatsObject()
818 sorted_children.emplace(std::make_pair(-it.second.Value(), it.first), it.second); in DumpStats()
831 DumpStats(os, it.first.second, it.second, total); in DumpStats()
1688 const uint8_t* live_objects_end = live_objects.second; in DumpDataBimgRelRoEntries()
2508 it->second.bytes += object_bytes_in; in Update()
2509 it->second.count += 1; in Update()
2677 double average = static_cast<double>(sizes_and_count.second.bytes) / in Dump()
2678 static_cast<double>(sizes_and_count.second.count); in Dump()
[all …]
/art/dex2oat/linker/
Dmulti_oat_relative_patcher.h61 return (it != method_offset_map_.map.end()) ? it->second - adjustment_ : 0u; in GetOffset()
Doat_writer.cc947 refs_it->second.ClearAllBits(); in AddBssReference()
949 refs_it->second.SetBit(ref.index); in AddBssReference()
1640 ArtMethod* origin = p.second; in Postprocess()
2146 const BitVector& method_indexes = method_it->second; in InitIndexBssMappings()
2160 const BitVector& type_indexes = type_it->second; in InitIndexBssMappings()
2174 const BitVector& string_indexes = string_it->second; in InitIndexBssMappings()
2321 size_t& entry_offset = entry.second; in InitDataBimgRelRoLayout()
2350 DCHECK_EQ(entry.second, 0u); in InitBssLayout()
2351 entry.second = bss_size_; in InitBssLayout()
2359 DCHECK_EQ(entry.second, 0u); in InitBssLayout()
[all …]
/art/runtime/
Dimage-inl.h112 return std::make_pair(visitor(methods.first), visitor(methods.second)); in VisitPackedImtConflictTables()

123456789