Lines Matching refs:endl
33 using std::endl;
41 sstr << "usage:" << endl in GetUsage()
42 << myname_ << " --lang={java|cpp} [OPTION]... INPUT..." << endl in GetUsage()
43 << " Generate Java or C++ files for AIDL file(s)." << endl in GetUsage()
44 << endl in GetUsage()
45 << myname_ << " --preprocess OUTPUT INPUT..." << endl in GetUsage()
46 << " Create an AIDL file having declarations of AIDL file(s)." << endl in GetUsage()
47 << endl in GetUsage()
49 << myname_ << " --dumpapi --out=DIR INPUT..." << endl in GetUsage()
50 << " Dump API signature of AIDL file(s) to DIR." << endl in GetUsage()
51 << endl in GetUsage()
52 << myname_ << " --checkapi OLD_DIR NEW_DIR" << endl in GetUsage()
53 << " Checkes whether API dump NEW_DIR is backwards compatible extension " << endl in GetUsage()
54 << " of the API dump OLD_DIR." << endl in GetUsage()
56 << endl; in GetUsage()
60 sstr << myname_ << " [OPTION]... INPUT [OUTPUT]" << endl in GetUsage()
61 << " Generate a Java file for an AIDL file." << endl in GetUsage()
62 << endl; in GetUsage()
64 sstr << myname_ << " [OPTION]... INPUT HEADER_DIR OUTPUT" << endl in GetUsage()
65 << " Generate C++ headers and source for an AIDL file." << endl in GetUsage()
66 << endl; in GetUsage()
69 sstr << "OPTION:" << endl in GetUsage()
70 << " -I DIR, --include=DIR" << endl in GetUsage()
71 << " Use DIR as a search path for import statements." << endl in GetUsage()
72 << " -m FILE, --import=FILE" << endl in GetUsage()
73 << " Import FILE directly without searching in the search paths." << endl in GetUsage()
74 << " -p FILE, --preprocessed=FILE" << endl in GetUsage()
75 << " Include FILE which is created by --preprocess." << endl in GetUsage()
76 << " -d FILE, --dep=FILE" << endl in GetUsage()
77 << " Generate dependency file as FILE. Don't use this when" << endl in GetUsage()
78 << " there are multiple input files. Use -a then." << endl in GetUsage()
79 << " -o DIR, --out=DIR" << endl in GetUsage()
80 << " Use DIR as the base output directory for generated files." << endl in GetUsage()
81 << " -h DIR, --header_out=DIR" << endl in GetUsage()
82 << " Generate C++ headers under DIR." << endl in GetUsage()
83 << " -a" << endl in GetUsage()
84 << " Generate dependency file next to the output file with the" << endl in GetUsage()
85 << " name based on the input file." << endl in GetUsage()
86 << " -b" << endl in GetUsage()
87 << " Trigger fail when trying to compile a parcelable." << endl in GetUsage()
88 << " --ninja" << endl in GetUsage()
89 << " Generate dependency file in a format ninja understands." << endl in GetUsage()
90 << " --structured" << endl in GetUsage()
91 << " Whether this interface is defined exclusively in AIDL." << endl in GetUsage()
92 << " It is therefore a candidate for stabilization." << endl in GetUsage()
93 << " -t, --trace" << endl in GetUsage()
94 << " Include tracing code for systrace. Note that if either" << endl in GetUsage()
95 << " the client or service code is not auto-generated by this" << endl in GetUsage()
96 << " tool, that part will not be traced." << endl in GetUsage()
97 << " --transaction_names" << endl in GetUsage()
98 << " Generate transaction names." << endl in GetUsage()
99 << " --apimapping" << endl in GetUsage()
100 << " Generates a mapping of declared aidl method signatures to" << endl in GetUsage()
101 << " the original line number. e.g.: " << endl in GetUsage()
103 << " void doFoo(int bar, String baz);" << endl in GetUsage()
104 << " Then the result would be:" << endl in GetUsage()
105 << " foo.bar.Baz|doFoo|int,String,|void" << endl in GetUsage()
106 << " foo/bar/IFoo.aidl:39" << endl in GetUsage()
107 << " -v VER, --version=VER" << endl in GetUsage()
108 << " Set the version of the interface and parcelable to VER." << endl in GetUsage()
109 << " VER must be an interger greater than 0." << endl in GetUsage()
110 << " --log" << endl in GetUsage()
111 << " Information about the transaction, e.g., method name, argument" << endl in GetUsage()
112 << " values, execution time, etc., is provided via callback." << endl in GetUsage()
113 << " --help" << endl in GetUsage()
114 << " Show this help." << endl in GetUsage()
115 << endl in GetUsage()
116 << "INPUT:" << endl in GetUsage()
117 << " An AIDL file." << endl in GetUsage()
118 << endl in GetUsage()
119 << "OUTPUT:" << endl in GetUsage()
120 << " Path to the generated Java or C++ source file. This is ignored when" << endl in GetUsage()
121 << " -o or --out is specified or the number of the input files are" << endl in GetUsage()
122 << " more than one." << endl in GetUsage()
123 << " For Java, if omitted, Java source file is generated at the same" << endl in GetUsage()
124 << " place as the input AIDL file," << endl in GetUsage()
125 << endl in GetUsage()
126 << "HEADER_DIR:" << endl in GetUsage()
127 << " Path to where C++ headers are generated." << endl; in GetUsage()
190 error_message_ << "aidl-cpp does not support --lang." << endl; in Options()
205 error_message_ << "Unsupported language: '" << lang << "'" << endl; in Options()
280 << "Version must be a positive natural number." << endl; in Options()
305 error_message_ << "No input file" << endl; in Options()
327 error_message_ << "No HEADER_DIR or OUTPUT." << endl; in Options()
341 error_message_ << endl; in Options()
347 error_message_ << "No input file." << endl; in Options()
353 << "got " << (argc - optind) << "." << endl; in Options()
369 error_message_ << "Output directory is not set. Set with --out." << endl; in Options()
374 << "--header_out." << endl; in Options()
380 error_message_ << "Output directory is not set. Set with --out." << endl; in Options()
385 << "sense for Java." << endl; in Options()
393 error_message_ << "Expected .aidl file for input but got '" << input << "'" << endl; in Options()
400 << "Use --out=DIR instead for output files." << endl; in Options()
407 << "file." << endl; in Options()
411 error_message_ << "--log is currently supported for either --lang=cpp or --lang=ndk" << endl; in Options()
417 error_message_ << "--version should not be used with '--preprocess'." << endl; in Options()
424 << "but got " << input_files_.size() << "." << endl; in Options()
430 error_message_ << "--dump_api requires output directory. Use --out." << endl; in Options()