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

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

Completed in 321 milliseconds