Home
last modified time | relevance | path

Searched refs:printer (Results 1 – 8 of 8) sorted by relevance

/art/dexlayout/
Ddexdiag.cc236 Printer* printer) { in DisplayDexStatistics() argument
249 printer->PrintHeader(); in DisplayDexStatistics()
259 printer->PrintOne(section_info.name.c_str(), in DisplayDexStatistics()
267 printer->PrintOne("GRAND TOTAL", in DisplayDexStatistics()
272 printer->PrintSkipLine(); in DisplayDexStatistics()
279 Printer* printer) { in ProcessOneDexMapping() argument
311 DisplayDexStatistics(start_page, end_page, section_resident_pages, sections, printer); in ProcessOneDexMapping()
326 static bool DisplayMappingIfFromVdexFile(ProcMemInfo& proc, const Vma& vma, Printer* printer) { in DisplayMappingIfFromVdexFile() argument
369 printer); in DisplayMappingIfFromVdexFile()
375 Printer* printer) { in ProcessOneOatMapping() argument
[all …]
/art/compiler/optimizing/
Dpretty_printer_test.cc37 StringPrettyPrinter printer(graph); in TestCode() local
38 printer.VisitInsertionOrder(); in TestCode()
39 ASSERT_STREQ(expected, printer.str().c_str()); in TestCode()
Dgraph_visualizer.cc900 HGraphVisualizerPrinter printer(graph_, *output_, "", true, false, codegen_); in PrintHeader() local
901 printer.StartTag("compilation"); in PrintHeader()
902 printer.PrintProperty("name", method_name); in PrintHeader()
903 printer.PrintProperty("method", method_name); in PrintHeader()
904 printer.PrintTime("date"); in PrintHeader()
905 printer.EndTag("compilation"); in PrintHeader()
906 printer.Flush(); in PrintHeader()
927 HGraphVisualizerPrinter printer(graph_, in DumpGraph() local
933 printer.Run(); in DumpGraph()
940 HGraphVisualizerPrinter printer(graph_, in DumpGraphWithDisassembly() local
[all …]
Dssa_test.cc97 SsaPrettyPrinter printer(graph); in TestCode() local
98 printer.VisitInsertionOrder(); in TestCode()
100 ASSERT_STREQ(expected, printer.str().c_str()); in TestCode()
/art/test/1922-owned-monitors-info/src/art/
DTest1922.java177 public static void runTestsOtherThread(String name, boolean suspend, Consumer<Thread> printer) { in runTestsOtherThread() argument
212 printer.accept(thr); in runTestsOtherThread()
222 public static void runTestsCurrentThread(String name, Runnable printer) { in runTestsCurrentThread() argument
251 r1.apply(r2.apply(r3.apply(printer))).run(); in runTestsCurrentThread()
/art/tools/jvmti-agents/ti-fast/
Dtifast.cc570 LogPrinter printer(event); \
571 printer.PrintRest argnames; \
572 LOG(INFO) << "Got event " << #name << "(" << printer.GetResult() << ")"; \
577 LogPrinter printer(event); \
578 printer.PrintRestNoJNI argnames; \
579 LOG(INFO) << "Got event " << #name << "(" << printer.GetResult() << ")"; \
/art/tools/dexanalyze/
Ddexanalyze_bytecode.cc73 std::function<void(std::ostream& os, T)> printer = in PrintMostUsed() argument
88 printer(os, pair.second);
191 std::function<void(std::ostream& os, size_t)> printer = [&](std::ostream& os, size_t idx) { in Dump() local
194 PrintMostUsed(os, MakeUsageMap(first_arg_reg_count_), 16, printer); in Dump()
/art/test/1974-resize-array/src/art/
DTest1974.java397 Consumer<Object> printer = in runWithJniLocals() local
404 runNativeTest(arr, resize, printer, checker); in runWithJniLocals()
408 Object[] arr, Runnable resize, Consumer<Object> printer, Consumer<Object> checker); in runNativeTest() argument