/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 | 120 EXPECT_TRUE(sameLineBreak(expect, actual)) << toString(expect) << std::endl in TEST_F() 121 << " vs " << std::endl in TEST_F() 124 EXPECT_TRUE(sameLineBreak(expect, actual)) << toString(expect) << std::endl in TEST_F() 125 << " vs " << std::endl in TEST_F() 128 EXPECT_TRUE(sameLineBreak(expect, actual)) << toString(expect) << std::endl in TEST_F() 129 << " vs " << std::endl in TEST_F() 132 EXPECT_TRUE(sameLineBreak(expect, actual)) << toString(expect) << std::endl in TEST_F() 133 << " vs " << std::endl in TEST_F() 142 EXPECT_TRUE(sameLineBreak(expect, actual)) << toString(expect) << std::endl in TEST_F() 143 << " vs " << std::endl in TEST_F() [all …]
|
D | GreedyLineBreakerTest.cpp | 110 EXPECT_TRUE(sameLineBreak(expect, actual)) << toString(expect) << std::endl in TEST_F() 111 << " vs " << std::endl in TEST_F() 121 EXPECT_TRUE(sameLineBreak(expect, actual)) << toString(expect) << std::endl in TEST_F() 122 << " vs " << std::endl in TEST_F() 135 EXPECT_TRUE(sameLineBreak(expect, actual)) << toString(expect) << std::endl in TEST_F() 136 << " vs " << std::endl in TEST_F() 151 EXPECT_TRUE(sameLineBreak(expect, actual)) << toString(expect) << std::endl in TEST_F() 152 << " vs " << std::endl in TEST_F() 167 EXPECT_TRUE(sameLineBreak(expect, actual)) << toString(expect) << std::endl in TEST_F() 168 << " 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 == nullptr ? ": 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/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/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/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 …]
|
/frameworks/opt/gamesdk/samples/device_info_exe/ |
D | main.cpp | 20 std::cout << "*Proto debug begin:" << std::endl; in main() 25 std::cout << "cpu present:" << std::endl; in main() 26 std::cout << proto.info().cpu_present() << std::endl; in main() 28 std::cout << "compressed texture formats:" << std::endl; in main() 31 std::cout << i << std::endl; in main() 34 std::cout << "*Proto debug end." << std::endl; in main()
|
/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/av/media/codec2/hidl/1.0/utils/ |
D | ComponentStore.cpp | 325 out << indent << "name: " << comp->name << std::endl; in dump() 326 out << indent << "domain: " << comp->domain << std::endl; in dump() 327 out << indent << "kind: " << comp->kind << std::endl; in dump() 328 out << indent << "rank: " << comp->rank << std::endl; in dump() 329 out << indent << "mediaType: " << comp->mediaType << std::endl; in dump() 334 out << std::endl; in dump() 356 << std::endl; in dump() 361 out << indent << "Unknown component -- null interface" << std::endl; in dump() 364 out << indent << "Name: " << intf->getName() << std::endl; in dump() 365 out << indent << "Id: " << intf->getId() << std::endl; in dump() [all …]
|
/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 …]
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/ |
D | command_line_interface.cc | 163 std::cerr << path << ": " << strerror(errno) << std::endl; in VerifyDirectoryExists() 183 << path_so_far << ": " << strerror(errno) << std::endl; in TryCreateParentDirectory() 325 out << ": warning: " << message << std::endl; in AddErrorOrWarning() 327 out << ": " << message << std::endl; in AddErrorOrWarning() 476 std::cerr << filename << ": write() returned zero?" << std::endl; in WriteAllToDisk() 526 std::cerr << filename << ": " << strerror(stream.GetErrno()) << std::endl; in WriteAllToZip() 530 std::cerr << filename << ": " << strerror(stream.GetErrno()) << std::endl; in WriteAllToZip() 604 << std::endl; in ~MemoryOutputStream() 624 << std::endl; in ~MemoryOutputStream() 637 << "\" not found." << std::endl; in ~MemoryOutputStream() [all …]
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/examples/ |
D | list_people.cc | 14 cout << "Person ID: " << person.id() << endl; in ListPeople() 15 cout << " Name: " << person.name() << endl; in ListPeople() 17 cout << " E-mail address: " << person.email() << endl; in ListPeople() 34 cout << phone_number.number() << endl; in ListPeople() 47 cerr << "Usage: " << argv[0] << " ADDRESS_BOOK_FILE" << endl; in main() 57 cerr << "Failed to parse address book." << endl; in main()
|
/frameworks/ml/nn/common/ |
D | GraphDump.cpp | 63 *mStream << mStringStream.str() << std::endl; in operator <<() 81 static const EndlType endl; member in android::nn::__anonbb80a43c0111::Dumper 87 const Dumper::EndlType Dumper::endl; member in android::nn::__anonbb80a43c0111::Dumper 133 dump << "// " << name << Dumper::endl; in graphDump() 134 dump << "digraph {" << Dumper::endl; in graphDump() 185 dump << "\"]" << Dumper::endl; in graphDump() 201 << toString(operation.type) << "\"]" << Dumper::endl; in graphDump() 209 dump << Dumper::endl; in graphDump() 220 dump << Dumper::endl; in graphDump() 224 dump << "}" << Dumper::endl; in graphDump()
|
/frameworks/opt/gamesdk/samples/tuningfork/prototest/src/ |
D | sztool.cc | 51 std::cout << fd->name() << " " << fd->type_name() << std::endl; in FieldSize() 59 std::cerr << std::endl; in FieldSize() 125 << " in " << fdesc->name() << std::endl; in MakeAnnotation() 167 << " in " << fdesc->name() << std::endl; in RandomFidelityParams() 185 << "of tuningfork.proto" << std::endl; in main() 195 std::cout << "Annotation extensions:" << std::endl; in main() 202 << std::endl; in main() 212 << nAnnotationCombinations << std::endl; in main() 225 std::cerr << "Bad file: " << argv[2] << std::endl; in main() 265 << n*nAnnotationCombinations << std::endl; in main() [all …]
|
/frameworks/native/cmds/cmd/ |
D | cmd.cpp | 77 mErrorLog << "Open attempt after active for: " << fullPath << endl; in openFile() 99 mErrorLog << "Invalid mode requested: " << mode.string() << endl; in openFile() 122 … << " (from path " << fullPath.string() << ", context " << seLinuxContext8.string() << ")" << endl; in openFile() 134 … << " (from path " << fullPath.string() << ", context " << seLinuxContext8.string() << ")" << endl; in openFile() 181 errorLog << "cmd: Unable to get default service manager!" << endl; in cmdMain() 188 errorLog << "cmd: No service specified; use -l to list all services" << endl; in cmdMain() 195 outputLog << "Currently running services:" << endl; in cmdMain() 200 outputLog << " " << services[i] << endl; in cmdMain() 218 errorLog << "cmd: Can't find service: " << cmd << endl; in cmdMain() 245 << ")" << endl; in cmdMain()
|
/frameworks/base/libs/hwui/tests/common/ |
D | LeakChecker.cpp | 58 cout << endl << "Leaked memory!" << endl; in logUnreachable() 61 << endl; in logUnreachable() 75 cerr << "Failed to get unreachable memory!" << endl; in checkForLeaks() 81 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()
|