Home
last modified time | relevance | path

Searched refs:iter (Results 1 – 11 of 11) 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.cc142 CatchHandlerIterator iter(*code_item, 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(*code_item, 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/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.java204 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/tools/ahat/src/heapdump/
DSort.java96 Iterator<Comparator<T>> iter = mComparators.iterator(); in compare() local
97 while (res == 0 && iter.hasNext()) { in compare()
98 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/dexlayout/
Ddex_visualize.cc91 ColorMapType::const_iterator iter = kColorMap.find(section); in GetColor() local
92 if (iter != kColorMap.end()) { in GetColor()
93 return iter->second; in GetColor()
/art/compiler/optimizing/
Dcode_generator.h834 auto iter = slow_path_map_.find(dex_pc); in NewSlowPath() local
835 if (iter != slow_path_map_.end()) { in NewSlowPath()
836 const ArenaVector<std::pair<InstructionType*, SlowPathCode*>>& candidates = iter->second; in NewSlowPath()
849 iter = slow_path_map_.Put(dex_pc, {{}, {graph_->GetArena()->Adapter(kArenaAllocSlowPaths)}}); in NewSlowPath()
853 iter->second.emplace_back(std::make_pair(instruction, slow_path)); in NewSlowPath()
/art/tools/
Danalyze-init-failures.py39 it = iter(lines)
/art/runtime/interpreter/
Dunstarted_runtime.cc1910 const auto& iter = invoke_handlers_.find(name); in Invoke() local
1911 if (iter != invoke_handlers_.end()) { in Invoke()
1918 (*iter->second)(self, shadow_frame, result, arg_offset); in Invoke()
1931 const auto& iter = jni_handlers_.find(name); in Jni() local
1932 if (iter != jni_handlers_.end()) { in Jni()
1935 (*iter->second)(self, method, receiver, args, result); in Jni()
/art/runtime/openjdkjvmti/
Dti_redefine.cc1087 bool Redefiner::ClassRedefinition::CheckVerification(const RedefinitionDataIter& iter) { in CheckVerification() argument
1095 hs.NewHandle(iter.GetNewDexCache()), in CheckVerification()