Home
last modified time | relevance | path

Searched refs:iter (Results 1 – 10 of 10) sorted by relevance

/art/test/023-many-interfaces/src/
DManyInterfaces.java173 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/
Dexception_test.cc138 CatchHandlerIterator iter(*code_item, 4 /* Dex PC in the first try block */); in TEST_F() local
139 EXPECT_STREQ("Ljava/io/IOException;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex())); in TEST_F()
140 ASSERT_TRUE(iter.HasNext()); in TEST_F()
141 iter.Next(); in TEST_F()
142 EXPECT_STREQ("Ljava/lang/Exception;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex())); in TEST_F()
143 ASSERT_TRUE(iter.HasNext()); in TEST_F()
144 iter.Next(); in TEST_F()
145 EXPECT_FALSE(iter.HasNext()); in TEST_F()
148 CatchHandlerIterator iter(*code_item, 8 /* Dex PC in the second try block */); in TEST_F() local
149 EXPECT_STREQ("Ljava/io/IOException;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex())); in TEST_F()
[all …]
/art/test/088-monitor-verification/src/
DMain.java71 synchronized void recursiveSync(int iter) { in recursiveSync() argument
73 if (iter < 40) { in recursiveSync()
74 recursiveSync(iter+1); in recursiveSync()
/art/test/074-gc-thrash/src/
DMain.java205 int iter = 0; in run() local
211 dive(0, iter); in run()
213 iter += MAX_DEPTH; in run()
238 System.out.println("Deep: iters=" + iter / MAX_DEPTH); in run()
/art/tools/ahat/src/
DSort.java101 Iterator<Comparator<T>> iter = mComparators.iterator(); in compare() local
102 while (res == 0 && iter.hasNext()) { in compare()
103 res = iter.next().compare(a, b); in compare()
/art/runtime/base/
Dhash_set_test.cc293 for (auto iter = begin; iter != end; ++iter) { in HashIntSequence() local
294 hash = hash * 2 + *iter; in HashIntSequence()
/art/compiler/optimizing/
Dcode_generator.h720 auto iter = slow_path_map_.find(dex_pc); in NewSlowPath() local
721 if (iter != slow_path_map_.end()) { in NewSlowPath()
722 auto candidates = iter->second; in NewSlowPath()
735 iter = slow_path_map_.Put(dex_pc, {{}, {graph_->GetArena()->Adapter(kArenaAllocSlowPaths)}}); in NewSlowPath()
739 iter->second.emplace_back(std::make_pair(instruction, slow_path)); in NewSlowPath()
/art/tools/
Danalyze-init-failures.py39 it = iter(lines)
/art/runtime/
Dprofiler.cc526 for (std::vector<InstructionLocation>::const_reverse_iterator iter = stack.rbegin(); in PutStack() local
527 iter != stack.rend(); ++iter) { in PutStack()
528 InstructionLocation inst_loc = *iter; in PutStack()
/art/runtime/interpreter/
Dunstarted_runtime.cc1695 const auto& iter = invoke_handlers_.find(name); in Invoke() local
1696 if (iter != invoke_handlers_.end()) { in Invoke()
1703 (*iter->second)(self, shadow_frame, result, arg_offset); in Invoke()
1716 const auto& iter = jni_handlers_.find(name); in Jni() local
1717 if (iter != jni_handlers_.end()) { in Jni()
1720 (*iter->second)(self, method, receiver, args, result); in Jni()