/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 | 149 CatchHandlerIterator iter(accessor, 4 /* Dex PC in the first try block */); in TEST_F() local 150 EXPECT_STREQ("Ljava/io/IOException;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex())); in TEST_F() 151 ASSERT_TRUE(iter.HasNext()); in TEST_F() 152 iter.Next(); in TEST_F() 153 EXPECT_STREQ("Ljava/lang/Exception;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex())); in TEST_F() 154 ASSERT_TRUE(iter.HasNext()); in TEST_F() 155 iter.Next(); in TEST_F() 156 EXPECT_FALSE(iter.HasNext()); in TEST_F() 159 CatchHandlerIterator iter(accessor, 8 /* Dex PC in the second try block */); in TEST_F() local 160 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 | 31 public DominatorReferenceIterator(Iterable<Reference> iter) { in DominatorReferenceIterator() argument 32 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/libartbase/base/ |
D | hash_set_test.cc | 293 for (auto iter = begin; iter != end; ++iter) { in HashIntSequence() local 294 hash = hash * 2 + *iter; in HashIntSequence()
|
/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/tools/ |
D | analyze-init-failures.py | 39 it = iter(lines)
|
/art/compiler/optimizing/ |
D | code_generator.h | 854 auto iter = slow_path_map_.find(dex_pc); in NewSlowPath() local 855 if (iter != slow_path_map_.end()) { in NewSlowPath() 856 const ArenaVector<std::pair<InstructionType*, SlowPathCode*>>& candidates = iter->second; in NewSlowPath() 869 iter = slow_path_map_.Put(dex_pc, in NewSlowPath() 875 iter->second.emplace_back(std::make_pair(instruction, slow_path)); in NewSlowPath()
|
/art/runtime/interpreter/ |
D | unstarted_runtime.cc | 1956 const auto& iter = invoke_handlers_.find(name); in Invoke() local 1957 if (iter != invoke_handlers_.end()) { in Invoke() 1964 (*iter->second)(self, shadow_frame, result, arg_offset); in Invoke() 1977 const auto& iter = jni_handlers_.find(name); in Jni() local 1978 if (iter != jni_handlers_.end()) { in Jni() 1981 (*iter->second)(self, method, receiver, args, result); in Jni()
|