/art/test/023-many-interfaces/src/ |
D | ManyInterfaces.java | 173 private static void report(String label, long start, long end, int iter, in report() argument 177 + " (" + (end - start) / (iter*rept) + "ns per call)"); in report() 195 int iter = 32768; in run() local 206 testIface001(obj, iter); in run() 208 report("testIface001", start, end, iter, rept); in run() 211 testIface049(obj, iter); in run() 213 report("testIface049", start, end, iter, rept); in run() 216 testIface099(obj, iter); in run() 218 report("testIface099", start, end, iter, rept); in run() 221 testVirt001(obj, iter); in run() [all …]
|
/art/compiler/ |
D | exception_test.cc | 142 CatchHandlerIterator iter(accessor, 4 /* Dex PC in the first try block */); in TEST_F() local 143 EXPECT_STREQ("Ljava/io/IOException;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex())); in TEST_F() 144 ASSERT_TRUE(iter.HasNext()); in TEST_F() 145 iter.Next(); in TEST_F() 146 EXPECT_STREQ("Ljava/lang/Exception;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex())); in TEST_F() 147 ASSERT_TRUE(iter.HasNext()); in TEST_F() 148 iter.Next(); in TEST_F() 149 EXPECT_FALSE(iter.HasNext()); in TEST_F() 152 CatchHandlerIterator iter(accessor, 8 /* Dex PC in the second try block */); in TEST_F() local 153 EXPECT_STREQ("Ljava/io/IOException;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex())); in TEST_F() [all …]
|
/art/tools/ahat/src/main/com/android/ahat/heapdump/ |
D | DominatorReferenceIterator.java | 32 public DominatorReferenceIterator(Reachability retained, Iterable<Reference> iter) { in DominatorReferenceIterator() argument 34 mIter = iter.iterator(); in DominatorReferenceIterator()
|
D | Sort.java | 108 Iterator<Comparator<T>> iter = mComparators.iterator(); in compare() local 109 while (res == 0 && iter.hasNext()) { in compare() 110 res = iter.next().compare(a, b); in compare()
|
/art/test/074-gc-thrash/src/ |
D | Main.java | 204 int iter = 0; in run() local 210 dive(0, iter); in run() 212 iter += MAX_DEPTH; in run() 237 System.out.println("Deep: iters=" + iter / MAX_DEPTH); in run()
|
/art/test/088-monitor-verification/src/ |
D | Main.java | 82 synchronized void recursiveSync(int iter) { in recursiveSync() argument 84 if (iter < 40) { in recursiveSync() 85 recursiveSync(iter+1); in recursiveSync()
|
/art/dexlayout/ |
D | dex_visualize.cc | 93 ColorMapType::const_iterator iter = kColorMap.find(section); in GetColor() local 94 if (iter != kColorMap.end()) { in GetColor() 95 return iter->second; in GetColor()
|
/art/libartbase/base/ |
D | hash_set_test.cc | 295 for (auto iter = begin; iter != end; ++iter) { in HashIntSequence() local 296 hash = hash * 2 + *iter; in HashIntSequence()
|
/art/compiler/optimizing/ |
D | code_generator.h | 875 auto iter = slow_path_map_.find(dex_pc); in NewSlowPath() local 876 if (iter != slow_path_map_.end()) { in NewSlowPath() 877 const ArenaVector<std::pair<InstructionType*, SlowPathCode*>>& candidates = iter->second; in NewSlowPath() 890 iter = slow_path_map_.Put(dex_pc, in NewSlowPath() 896 iter->second.emplace_back(std::make_pair(instruction, slow_path)); in NewSlowPath()
|
D | superblock_cloner.cc | 925 for (auto iter : *bb_map_) { in Run() 926 work_set.SetBit(iter.first->GetBlockId()); // Original block. in Run() 927 work_set.SetBit(iter.second->GetBlockId()); // Copy block. in Run()
|
/art/tools/ |
D | analyze-init-failures.py | 39 it = iter(lines)
|
/art/runtime/gc/space/ |
D | region_space.cc | 498 for (const auto &iter : madvise_list) { in ClearFromSpace() local 499 ZeroAndProtectRegion(iter.first, iter.second); in ClearFromSpace() 502 reinterpret_cast<mirror::Object*>(iter.first), in ClearFromSpace() 503 reinterpret_cast<mirror::Object*>(iter.second)); in ClearFromSpace()
|
/art/runtime/dex/ |
D | dex_file_annotations.cc | 1380 for (DexInstructionIterator iter = accessor.begin(); iter != accessor.end(); ++iter) { in MethodContainsRSensitiveAccess() local 1381 switch (iter->Opcode()) { in MethodContainsRSensitiveAccess() 1412 if (iter->IsQuickened()) { in MethodContainsRSensitiveAccess() 1415 field_index = iter->VRegC_22c(); in MethodContainsRSensitiveAccess() 1442 uint32_t called_method_index = iter->VRegB_35c(); in MethodContainsRSensitiveAccess() 1452 uint32_t called_method_index = iter->VRegB_3rc(); in MethodContainsRSensitiveAccess() 1478 if (QuickenInfoTable::NeedsIndexForInstruction(&iter.Inst())) { in MethodContainsRSensitiveAccess()
|
/art/runtime/interpreter/ |
D | unstarted_runtime.cc | 2024 const auto& iter = invoke_handlers_.find(name); in Invoke() local 2025 if (iter != invoke_handlers_.end()) { in Invoke() 2032 (*iter->second)(self, shadow_frame, result, arg_offset); in Invoke() 2045 const auto& iter = jni_handlers_.find(name); in Jni() local 2046 if (iter != jni_handlers_.end()) { in Jni() 2049 (*iter->second)(self, method, receiver, args, result); in Jni()
|
/art/openjdkjvmti/ |
D | ti_redefine.cc | 176 std::unordered_map<art::ArtMethod*, int32_t>::const_iterator iter) in ObsoleteMapIter() argument 177 : map_(map), iter_(iter) {} in ObsoleteMapIter() 1171 bool Redefiner::ClassRedefinition::CheckVerification(const RedefinitionDataIter& iter) { in CheckVerification() argument 1179 hs.NewHandle(iter.GetNewDexCache()), in CheckVerification()
|