Lines Matching full:outputdir
45 " %s <input>... [-w <outputDir>] [--jpegQuality N] \n"
52 " outputDir: directory to write the rendered pdfs.\n\n");
130 * @param outputDir Output dir.
134 static SkWStream* open_stream(const SkString& outputDir,
136 if (outputDir.isEmpty()) {
141 if (!make_output_filepath(&outputPath, outputDir, inputFilename)) {
156 * @param outputDir Output dir.
159 static bool render_pdf(const SkString& inputPath, const SkString& outputDir,
181 SkWStream* stream(open_stream(outputDir, inputFilename));
200 * @param outputDir Output dir.
203 static int process_input(const SkString& input, const SkString& outputDir,
212 if (!render_pdf(inputPath, outputDir, renderer)) {
218 if (!render_pdf(inputPath, outputDir, renderer)) {
227 SkString* outputDir) {
238 SkDebugf("Missing outputDir for -w\n");
242 *outputDir = SkString(*argv);
276 SkString outputDir;
277 parse_commandline(argc, argv, &inputs, &outputDir);
281 failures += process_input(inputs[i], outputDir, *renderer);