Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dpretty_printer_test.cc38 StringPrettyPrinter printer(graph); in TestCode() local
39 printer.VisitInsertionOrder(); in TestCode()
40 ASSERT_STREQ(expected, printer.str().c_str()); in TestCode()
Dgraph_visualizer.cc989 HGraphVisualizerPrinter printer(graph_, *output_, "", true, false, codegen_, namer_); in PrintHeader() local
990 printer.StartTag("compilation"); in PrintHeader()
991 printer.PrintProperty("name", method_name); in PrintHeader()
992 printer.PrintProperty("method", method_name); in PrintHeader()
993 printer.PrintTime("date"); in PrintHeader()
994 printer.EndTag("compilation"); in PrintHeader()
995 printer.Flush(); in PrintHeader()
1022 HGraphVisualizerPrinter printer(graph_, in DumpGraph() local
1029 printer.Run(); in DumpGraph()
1036 HGraphVisualizerPrinter printer(graph_, in DumpGraphWithDisassembly() local
[all …]
Dssa_test.cc98 SsaPrettyPrinter printer(graph); in TestCode() local
99 printer.VisitInsertionOrder(); in TestCode()
101 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/libartbase/base/metrics/
Dmetrics_common.cc245 tinyxml2::XMLPrinter printer(/*file=*/nullptr, /*compact=*/true); in GetAndResetBuffer() local
246 document_.Print(&printer); in GetAndResetBuffer()
247 std::string result = printer.CStr(); in GetAndResetBuffer()
/art/disassembler/
Ddisassembler_riscv64.cc1975 Printer printer(this, os); in Dump() local
1977 printer.DumpByte(begin); in Dump()
1982 printer.Dump32(begin); in Dump()
1985 printer.Dump2Byte(begin); in Dump()
1989 printer.Dump16(begin); in Dump()
1995 Printer printer(this, os); in Dump() local
1999 printer.DumpByte(cur); in Dump()
2007 printer.Dump32(cur); in Dump()
2010 printer.Dump16(cur); in Dump()
2017 printer.Dump2Byte(cur); in Dump()
[all …]
/art/tools/jvmti-agents/ti-fast/
Dtifast.cc572 LogPrinter printer(event); \
573 printer.PrintRest argnames; \
574 LOG(INFO) << "Got event " << #name << "(" << printer.GetResult() << ")"; \
579 LogPrinter printer(event); \
580 printer.PrintRestNoJNI argnames; \
581 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