/frameworks/native/libs/ui/tools/ |
D | lutgen.cpp | 37 cout << "lutgen -d SIZE -s SOURCE -t TARGET <lut file>" << endl; in printHelp() 38 cout << endl; in printHelp() 39 cout << "Generate a 3D LUT to convert between two color spaces." << endl; in printHelp() 40 cout << endl; in printHelp() 41 cout << "If <lut file> ends in .inc, data is generated without the array declaration." << endl; in printHelp() 42 cout << endl; in printHelp() 43 cout << "Options:" << endl; in printHelp() 44 cout << " --help, -h" << endl; in printHelp() 45 cout << " print this message" << endl; in printHelp() 46 cout << " --dimension=, -d" << endl; in printHelp() [all …]
|
/frameworks/base/tools/streaming_proto/cpp/ |
D | main.cpp | 25 text << indent << "// enum " << enu.name() << endl; in write_enum() 30 << " = " << value.number() << ";" << endl; in write_enum() 36 text << indent << "const int _ENUM_" << name << "_COUNT = " << N << ";" << endl; in write_enum() 37 text << indent << "const char* _ENUM_" << name << "_NAMES[" << N << "] = {" << endl; in write_enum() 39 … text << indent << INDENT << "\"" << stripPrefix(enu.value(i).name(), prefix) << "\"," << endl; in write_enum() 41 text << indent << "};" << endl; in write_enum() 42 text << indent << "const int _ENUM_" << name << "_VALUES[" << N << "] = {" << endl; in write_enum() 44 text << indent << INDENT << make_constant_name(enu.value(i).name()) << "," << endl; in write_enum() 46 text << indent << "};" << endl; in write_enum() 49 text << endl; in write_enum() [all …]
|
/frameworks/minikin/tests/unittest/ |
D | OptimalLineBreakerTest.cpp | 105 EXPECT_TRUE(sameLineBreak(expect, actual)) << toString(expect) << std::endl in TEST_F() 106 << " vs " << std::endl in TEST_F() 109 EXPECT_TRUE(sameLineBreak(expect, actual)) << toString(expect) << std::endl in TEST_F() 110 << " vs " << std::endl in TEST_F() 113 EXPECT_TRUE(sameLineBreak(expect, actual)) << toString(expect) << std::endl in TEST_F() 114 << " vs " << std::endl in TEST_F() 117 EXPECT_TRUE(sameLineBreak(expect, actual)) << toString(expect) << std::endl in TEST_F() 118 << " vs " << std::endl in TEST_F() 127 EXPECT_TRUE(sameLineBreak(expect, actual)) << toString(expect) << std::endl in TEST_F() 128 << " vs " << std::endl in TEST_F() [all …]
|
D | GreedyLineBreakerTest.cpp | 95 EXPECT_TRUE(sameLineBreak(expect, actual)) << toString(expect) << std::endl in TEST_F() 96 << " vs " << std::endl in TEST_F() 106 EXPECT_TRUE(sameLineBreak(expect, actual)) << toString(expect) << std::endl in TEST_F() 107 << " vs " << std::endl in TEST_F() 120 EXPECT_TRUE(sameLineBreak(expect, actual)) << toString(expect) << std::endl in TEST_F() 121 << " vs " << std::endl in TEST_F() 136 EXPECT_TRUE(sameLineBreak(expect, actual)) << toString(expect) << std::endl in TEST_F() 137 << " vs " << std::endl in TEST_F() 152 EXPECT_TRUE(sameLineBreak(expect, actual)) << toString(expect) << std::endl in TEST_F() 153 << " vs " << std::endl in TEST_F() [all …]
|
/frameworks/base/libs/hwui/pipeline/skia/ |
D | DumpOpsCanvas.h | 40 mOutput << mIdent << "clipRect" << std::endl; in onClipRect() 44 mOutput << mIdent << "clipRRect" << std::endl; in onClipRRect() 48 mOutput << mIdent << "clipPath" << std::endl; in onClipPath() 52 mOutput << mIdent << "clipRegion" << std::endl; in onClipRegion() 55 void onDrawPaint(const SkPaint&) override { mOutput << mIdent << "drawPaint" << std::endl; } in onDrawPaint() 58 mOutput << mIdent << "drawPath" << std::endl; in onDrawPath() 62 mOutput << mIdent << "drawRect" << std::endl; in onDrawRect() 66 mOutput << mIdent << "drawRegion" << std::endl; in onDrawRegion() 70 mOutput << mIdent << "drawOval" << std::endl; in onDrawOval() 74 mOutput << mIdent << "drawArc" << std::endl; in onDrawArc() [all …]
|
/frameworks/base/tools/aapt/tests/ |
D | FileFinder_test.cpp | 19 using std::endl; 26 cout << "\n\n STARTING FILE FINDER TESTS" << endl; in main() 53 cout << "PASSED" << endl; in main() 59 cout << "PASSED" << endl; in main() 66 cout << "PASSED" << endl; in main() 68 cout << "FAILED" << endl; in main() 86 cout << "PASSED" << endl; in main() 88 cout << "FAILED" << endl; in main() 89 cout << "The following extensions didn't check out" << endl << wrongExts; in main() 96 cout << "ALL TESTS PASSED" << endl; in main() [all …]
|
D | CrunchCache_test.cpp | 16 using std::endl; 21 cout << ( (got == expected) ? "PASSED" : "FAILED") << endl; in expectEqual() 59 cout << ((result > 0) ? "PASSED" : "FAILED") << endl; in main() 65 cout << "Checking calls to deleteFile and processImage:" << endl; in main() 79 cout << "ALL TESTS PASSED!" << endl; in main() 81 cout << errno << " TESTS FAILED" << endl; in main()
|
/frameworks/base/tools/streaming_proto/java/ |
D | main.cpp | 79 text << indent << "// enum " << enu.name() << endl; in write_enum() 84 << " = " << value.number() << ";" << endl; in write_enum() 86 text << endl; in write_enum() 103 << field.name() << " = " << field.number() << packed_comment << ';' << endl; in write_field() 111 text << "L;" << endl; in write_field() 113 text << endl; in write_field() 125 text << indent << "// message " << message.name() << endl; in write_message() 126 text << indent << "public final class " << message.name() << " {" << endl; in write_message() 127 text << endl; in write_message() 147 text << indent << "}" << endl; in write_message() [all …]
|
/frameworks/native/cmds/service/ |
D | service.cpp | 85 aerr << "service: Unknown option -" << ic << endl; in main() 97 aerr << "service: Unable to get default service manager!" << endl; in main() 109 (service == NULL ? ": not found" : ": found") << endl; in main() 111 aerr << "service: No service specified for check" << endl; in main() 118 aout << "Found " << services.size() << " services:" << endl; in main() 125 << endl; in main() 145 aerr << "service: no integer supplied for 'i32'" << endl; in main() 154 aerr << "service: no integer supplied for 'i64'" << endl; in main() 163 aerr << "service: no string supplied for 's16'" << endl; in main() 172 aerr << "service: no number supplied for 'f'" << endl; in main() [all …]
|
/frameworks/native/libs/binder/tests/ |
D | binderThroughputTest.cpp | 27 cerr << __func__ << ":" << __LINE__ << " condition:" << #cond << " failed\n" << endl; \ 141 << m_worst / 1000 << " microseconds" << endl; in dump() 147 cout << "average:" << average << "ms worst:" << worst << "ms best:" << best << "ms" << endl; in dump() 167 cout << endl; in dump() 201 cout << "Created BinderWorker" << num << endl; in worker_fx() 230 cout << "thread " << num << " failed " << ret << "i : " << i << endl; in worker_fx() 291 cout << "waiting for workers to complete" << endl; in run_main() 299 cout << "iterations per sec: " << iterations_per_sec << endl; in run_main() 302 cout << "collecting results" << endl; in run_main() 312 cout << "killing workers" << endl; in run_main() [all …]
|
D | schd-dbg.cpp | 32 << endl; \ 68 file << '0' << endl; in traceStop() 86 cout << "--------------------------------------------------" << endl; in thread_dump() 88 << " tid: " << gettid() << " cpu: " << sched_getcpu() << endl; in thread_dump() 95 cout << setw(12) << left << s << param.sched_priority << endl; in thread_dump() 131 << ", priority:" << priority << endl; in onTransact() 237 cout << endl; in add_time() 238 cout << "deadline triggered: halt & stop trace" << endl; in add_time() 239 cout << "log:" + trace_path + "/trace" << endl; in add_time() 240 cout << endl; in add_time() [all …]
|
/frameworks/native/libs/vr/libpdx_default_transport/ |
D | pdx_benchmarks.cpp | 517 << std::endl; in ServiceCommand() 523 std::cerr << "Failed to create service instance!!" << std::endl; in ServiceCommand() 531 << " service " << service_id_counter << std::endl; in ServiceCommand() 548 << ret.GetErrorMessage() << std::endl; in ServiceCommand() 551 << service_id << std::endl; in ServiceCommand() 605 << service_id_counter << std::endl; in ClientCommand() 625 << std::endl; in ClientCommand() 661 << std::endl; in ClientCommand() 674 << std::endl; in ClientCommand() 678 << "; actual ret=" << ret << std::endl; in ClientCommand() [all …]
|
/frameworks/native/cmds/lshal/ |
D | HelpCommand.cpp | 61 << "help:" << std::endl in usage() 62 << " lshal -h" << std::endl in usage() 63 << " lshal --help" << std::endl in usage() 64 << " lshal help" << std::endl in usage() 65 << " Print this help message" << std::endl; in usage() 67 mLshal.err() << " lshal help " << e->getName() << std::endl in usage() 68 << " Print help message for " << e->getName() << std::endl; in usage()
|
D | Lshal.cpp | 59 err() << "lshal: List and debug HALs." << std::endl << std::endl in usage() 60 << "commands:" << std::endl; in usage() 68 if (!first) err() << std::endl; in usage() 73 err() << std::endl << "If no command is specified, `" << ListCommand::GetName() in usage() 74 << "` is the default." << std::endl << std::endl; in usage() 78 if (!first) err() << std::endl; in usage() 112 err << msg << std::endl; in emitDebugInfo() 121 err << msg << std::endl; in emitDebugInfo() 130 err << msg << std::endl; in emitDebugInfo() 142 err << msg << std::endl; in emitDebugInfo() [all …]
|
D | ListCommand.cpp | 168 err() << "Could not parse number " << ptrString << std::endl; in getPidInfo() 177 err() << "Could not parse number " << pidStr << std::endl; in getPidInfo() 316 << "' is not a valid FQName." << std::endl; in dumpVintf() 328 << ". It is removed from the generated manifest." << std::endl; in dumpVintf() 360 << "' doesn't have bitness info, assuming 32+64." << std::endl; in dumpVintf() 364 … err() << "Warning: '" << entry.transport << "' is not a valid transport." << std::endl; in dumpVintf() 374 << std::endl; in dumpVintf() 401 err() << "Warning: cannot add hal '" << fqInstanceName << "'" << std::endl; in dumpVintf() 405 out << "<!-- " << std::endl in dumpVintf() 406 << " This is a skeleton " << manifest.type() << " manifest. Notes: " << std::endl in dumpVintf() [all …]
|
/frameworks/native/cmds/surfacereplayer/replayer/ |
D | Main.cpp | 39 std::cout << " File path must be absolute" << std::endl << std::endl; in printHelpMenu() 56 std::cout << std::endl; in printHelpMenu() 90 std::cerr << "Invalid argument...exiting" << std::endl; in main() 98 std::cerr << "No trace file provided...exiting" << std::endl; in main() 110 std::cout << "Successfully finished replaying trace" << std::endl; in main() 112 std::cerr << "Trace replayer returned error: " << status << std::endl; in main()
|
/frameworks/native/vulkan/vkjson/ |
D | vkjson_info.cc | 53 std::cerr << "Missing parameter after: " << arg << std::endl; in ParseOptions() 61 std::cerr << "Unable to parse index: " << arg2 << std::endl; in ParseOptions() 69 std::cerr << "Unknown argument: " << arg << std::endl; in ParseOptions() 77 "the whole instance." << std::endl; in ParseOptions() 82 << std::endl; in ParseOptions() 87 << std::endl; in ParseOptions() 94 "output file." << std::endl; in ParseOptions() 107 << " devices found." << std::endl; in Dump() 119 << "' requested but not found." << std::endl; in Dump() 142 std::cerr << "Unable to open file " << output_file << "." << std::endl; in Dump() [all …]
|
D | vkjson_unittest.cc | 40 << std::endl; in ReportFailure() 67 std::cout << json << std::endl; in main() 73 std::cout << "Error: " << errors << std::endl; in main() 90 std::cout << "Error: " << errors << std::endl; in main() 95 std::cout << g_failures << " failures." << std::endl; in main() 98 std::cout << "Success." << std::endl; in main()
|
/frameworks/native/cmds/cmd/ |
D | cmd.cpp | 72 aerr << "Open attempt after active for: " << fullPath << endl; in openFile() 94 aerr << "Invalid mode requested: " << mode.string() << endl; in openFile() 119 << seLinuxContext8.string() << ")" << endl; in openFile() 133 << seLinuxContext8.string() << ")" << endl; in openFile() 186 aerr << "cmd: Unable to get default service manager!" << endl; in main() 191 aerr << "cmd: No service specified; use -l to list all services" << endl; in main() 198 aout << "Currently running services:" << endl; in main() 203 aout << " " << services[i] << endl; in main() 217 aerr << "cmd: Can't find service: " << argv[1] << endl; in main() 243 << (-err) << ")" << endl; in main()
|
/frameworks/ml/nn/common/ |
D | GraphDump.cpp | 48 outStream << "// " << name << std::endl; in graphDump() 49 outStream << "digraph {" << std::endl; in graphDump() 97 outStream << "\"]" << std::endl; in graphDump() 113 << toString(operation.type) << "\"]" << std::endl; in graphDump() 121 outStream << std::endl; in graphDump() 132 outStream << std::endl; in graphDump() 136 outStream << "}" << std::endl; in graphDump()
|
/frameworks/base/libs/hwui/tests/common/ |
D | LeakChecker.cpp | 59 cout << endl << "Leaked memory!" << endl; in logUnreachable() 62 << endl; in logUnreachable() 79 cerr << "Failed to get unreachable memory!" << endl; in checkForLeaks() 85 cerr << "Failed to get unreachable memory!" << endl; in checkForLeaks()
|
/frameworks/base/tools/aapt2/util/ |
D | Maybe_test.cpp | 30 << (void*)data << std::endl; in Dummy() 40 << (const void*)&rhs << "}" << std::endl; in Dummy() 47 << (const void*)&rhs << "}" << std::endl; in Dummy() 59 << (const void*)&rhs << "}" << std::endl; in operator =() 68 << (const void*)&rhs << "}" << std::endl; in operator =() 74 << (void*)data << std::endl; in ~Dummy()
|
/frameworks/base/tools/aapt2/ |
D | Main.cpp | 49 << std::endl; in PrintVersion() 53 std::cerr << "\nusage: aapt2 [compile|link|dump|diff|optimize|convert|version] ..." << std::endl; in PrintUsage() 86 std::cout << "Ready" << std::endl; in RunDaemon() 115 std::cerr << "Error" << std::endl; in RunDaemon() 117 std::cerr << "Done" << std::endl; in RunDaemon() 119 std::cout << "Exiting daemon" << std::endl; in RunDaemon() 165 std::cerr << "error converting input arguments to UTF-8" << std::endl; in main()
|
/frameworks/base/libs/hwui/ |
D | RenderProperties.cpp | 105 output << ")" << std::endl; in dumpMatrix() 113 << mPrimitiveFields.mTop << ")" << std::endl; in debugOutputProperties() 122 << ", " << getZ() << ")" << std::endl; in debugOutputProperties() 137 output << indent << "(ScaleAlpha " << mPrimitiveFields.mAlpha << ")" << std::endl; in debugOutputProperties() 149 << ")" << std::dec << std::endl; in debugOutputProperties() 157 << (int)clipRect.right << ", " << (int)clipRect.bottom << ")" << std::endl; in debugOutputProperties() 164 << ", " << bounds.right << ", " << bounds.bottom << ")" << std::endl; in debugOutputProperties() 174 << ", " << bounds.right << ", " << bounds.bottom << ")" << std::endl; in debugOutputProperties()
|
/frameworks/native/cmds/dumpsys/ |
D | dumpsys.cpp | 223 aout << "Currently running services:" << endl; in main() 230 aout << " " << services[i] << (skipped ? " (skipped)" : "") << endl; in main() 255 aout << endl in main() 257 << "ms) EXPIRED ***" << endl in main() 258 << endl; in main() 313 aerr << "Can't find service: " << serviceName << endl; in startDumpThread() 320 << strerror(errno) << endl; in startDumpThread() 340 << serviceName << endl; in startDumpThread() 398 << strerror(errno) << endl; in writeDump() 410 << strerror(errno) << endl; in writeDump() [all …]
|