Home | History | Annotate | Download | only in PdfViewer

Lines Matching refs:outputDir

104  * @param outputDir Output dir.
115 static bool render_page(const SkString& outputDir,
162 if (!make_output_filepath(&outputPath, outputDir, inputFilename, page)) {
177 * @param outputDir Output dir.
179 static bool process_pdf(const SkString& inputPath, const SkString& outputDir) {
220 success &= render_page(outputDir, inputFilename, *renderer,
225 success &= render_page(outputDir, inputFilename, *renderer,
229 success &= render_page(outputDir, inputFilename, *renderer,
232 success &= render_page(outputDir, inputFilename, *renderer,
237 success &= render_page(outputDir, inputFilename, *renderer,
252 * @param outputDir Output dir.
254 static int process_input(const char* input, const SkString& outputDir) {
261 if (!process_pdf(inputPath, outputDir)) {
267 if (!process_pdf(inputPath, outputDir)) {
284 SkString outputDir;
286 outputDir.set(FLAGS_writePath[0]);
291 failures += process_input(FLAGS_readPath[i], outputDir);