Home
last modified time | relevance | path

Searched refs:all_methods (Results 1 – 3 of 3) sorted by relevance

/art/test/661-oat-writer-layout/src/
DTest.java23 ArrayList<Method> all_methods = new ArrayList<Method>(); in getTestMethods() local
24 all_methods.add(A.class.getDeclaredMethod("m_a$$$")); in getTestMethods()
25 all_methods.add(A.class.getDeclaredMethod("m_a$$Startup$")); in getTestMethods()
26 all_methods.add(A.class.getDeclaredMethod("m_a$Hot$Startup$")); in getTestMethods()
27 all_methods.add(A.class.getDeclaredMethod("m_a$$$Poststartup")); in getTestMethods()
28 all_methods.add(A.class.getDeclaredMethod("m_a$Hot$$Poststartup")); in getTestMethods()
29 all_methods.add(A.class.getDeclaredMethod("m_a$$Startup$Poststartup")); in getTestMethods()
30 all_methods.add(A.class.getDeclaredMethod("m_a$Hot$Startup$Poststartup")); in getTestMethods()
31 all_methods.add(A.class.getDeclaredMethod("m_b$$$")); in getTestMethods()
32 all_methods.add(A.class.getDeclaredMethod("m_b$$Startup$")); in getTestMethods()
[all …]
/art/tools/bisection_search/
Dbisection_search.py285 all_methods = testable.GetAllMethods()
288 len(all_methods) + 1,
289 lambda mid: testable.Test(all_methods[0:mid]))
290 if faulty_method_idx == len(all_methods) + 1:
294 faulty_method = all_methods[faulty_method_idx - 1]
/art/runtime/jit/
Djit.cc772 std::set<uint16_t> all_methods; in CompileMethodsFromProfile() local
775 &all_methods, in CompileMethodsFromProfile()
776 &all_methods, in CompileMethodsFromProfile()
777 &all_methods)) { in CompileMethodsFromProfile()
785 for (uint16_t method_idx : all_methods) { in CompileMethodsFromProfile()