HomeSort by relevance Sort by last modified time
    Searched full:outputdir (Results 1 - 25 of 185) sorted by null

1 2 3 4 5 6 7 8

  /external/chromium_org/third_party/skia/tools/
skdiff_html.h 19 const SkString& outputDir);
render_pdfs_main.cpp 45 " %s <input>... [-w <outputDir>] [--jpegQuality N] \n"
52 " outputDir: directory to write the rendered pdfs.\n\n");
121 * @param outputDir Output dir.
125 static SkWStream* open_stream(const SkString& outputDir,
127 if (outputDir.isEmpty()) {
132 if (!make_output_filepath(&outputPath, outputDir, inputFilename)) {
147 * @param outputDir Output dir.
150 static bool render_pdf(const SkString& inputPath, const SkString& outputDir,
171 SkWStream* stream(open_stream(outputDir, inputFilename));
190 * @param outputDir Output dir
    [all...]
skdiff_image.cpp 20 /// If outputDir.isEmpty(), don't write out diff files.
25 const SkString& outputDir,
72 create_and_write_diff_image(drp, dmp, colorThreshold, outputDir, outputFilename);
73 //TODO: copy fBase.fFilename and fComparison.fFilename to outputDir
76 //TODO: serialize drp to outputDir
100 "\n --outputdir: directory to write difference images"
105 "\n The base <filename> will be used to create files in outputdir."
128 SkString outputDir;
196 if (!strcmp(argv[i], "--outputdir")) {
198 SkDebugf("outputdir expects one argument.\n")
    [all...]
skdiff_utils.h 45 * If !outputDir.isEmpty(), writes out difference and white images.
50 const SkString& outputDir,
  /external/skia/tools/
skdiff_html.h 19 const SkString& outputDir);
render_pdfs_main.cpp 45 " %s <input>... [-w <outputDir>] [--jpegQuality N] \n"
52 " outputDir: directory to write the rendered pdfs.\n\n");
121 * @param outputDir Output dir.
125 static SkWStream* open_stream(const SkString& outputDir,
127 if (outputDir.isEmpty()) {
132 if (!make_output_filepath(&outputPath, outputDir, inputFilename)) {
147 * @param outputDir Output dir.
150 static bool render_pdf(const SkString& inputPath, const SkString& outputDir,
171 SkWStream* stream(open_stream(outputDir, inputFilename));
190 * @param outputDir Output dir
    [all...]
skdiff_image.cpp 20 /// If outputDir.isEmpty(), don't write out diff files.
25 const SkString& outputDir,
72 create_and_write_diff_image(drp, dmp, colorThreshold, outputDir, outputFilename);
73 //TODO: copy fBase.fFilename and fComparison.fFilename to outputDir
76 //TODO: serialize drp to outputDir
100 "\n --outputdir: directory to write difference images"
105 "\n The base <filename> will be used to create files in outputdir."
128 SkString outputDir;
196 if (!strcmp(argv[i], "--outputdir")) {
198 SkDebugf("outputdir expects one argument.\n")
    [all...]
skdiff_utils.h 45 * If !outputDir.isEmpty(), writes out difference and white images.
50 const SkString& outputDir,
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
BuildDependencyGenerator.java 61 * outputdir/TParser.java : T.g
100 File outputDir = tool.getOutputDirectory(grammarFileName);
101 if (outputDir.getName().equals(".")) {
102 outputDir = null;
103 } else if (outputDir.getName().indexOf(' ') >= 0) { // has spaces?
104 String escSpaces = Utils.replace(outputDir.toString(),
107 outputDir = new File(escSpaces);
112 files.add(new File(outputDir, recognizer));
124 files.add(new File(outputDir, fileName));
132 files.add(new File(outputDir, lexer))
    [all...]
  /external/chromium_org/third_party/icu/source/tools/genrb/
parse.h 30 struct SRBRoot* parse(UCHARBUF *buf, const char* inputDir, const char* outputDir, UErrorCode *status);
genrb.h 46 const char *outputDir,
  /external/clang/include/clang/ARCMigrate/
FileRemapper.h 45 bool initFromDisk(StringRef outputDir, DiagnosticsEngine &Diag,
49 bool flushToDisk(StringRef outputDir, DiagnosticsEngine &Diag);
53 StringRef outputDir = StringRef());
59 void clear(StringRef outputDir = StringRef());
70 std::string getRemapInfoFile(StringRef outputDir);
ARCMT.h 55 /// and metadata into the \p outputDir path.
68 StringRef outputDir,
72 /// \brief Get the set of file remappings from the \p outputDir path that
77 StringRef outputDir,
103 StringRef outputDir = StringRef());
  /external/clang/lib/ARCMigrate/
FileRemapper.cpp 31 void FileRemapper::clear(StringRef outputDir) {
37 if (!outputDir.empty()) {
38 std::string infoFile = getRemapInfoFile(outputDir);
43 std::string FileRemapper::getRemapInfoFile(StringRef outputDir) {
44 assert(!outputDir.empty());
45 SmallString<128> InfoFile = outputDir;
50 bool FileRemapper::initFromDisk(StringRef outputDir, DiagnosticsEngine &Diag,
52 std::string infoFile = getRemapInfoFile(outputDir);
112 bool FileRemapper::flushToDisk(StringRef outputDir, DiagnosticsEngine &Diag) {
115 if (fs::create_directory(outputDir))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
blink_idl_lexer.py 91 def __init__(self, debug=False, optimize=True, outputdir=None):
95 outputdir = None
96 if outputdir:
97 # Need outputdir in path because lex imports the cached lex table
99 sys.path.append(outputdir)
111 outputdir=outputdir)
119 outputdir = argv[1]
123 lexer = BlinkIDLLexer(outputdir=outputdir)
    [all...]
  /packages/apps/OMA-DM/engine/dmlib/tool-src/dmt_gen_tool/com/mot/dm/tool/
DMTS.java 80 public void dmts2dir(String dmtsPath, String outputDir) throws Exception {
90 if (outputDir.length() == 0) {
91 outputDir = ".";
94 File output = new File(outputDir);
135 public void dir2dmtsDir(String dmtDir, String outputDir) throws Exception {
137 if(outputDir.toUpperCase().endsWith(".DMTS")){
138 dir2dmts(dmtDir, outputDir);
142 if (outputDir.length() > 0) {
143 outputDir += (outputDir.endsWith("/")) ? "" : "/"
    [all...]
  /external/chromium_org/third_party/skia/experimental/PdfViewer/
pdf_viewer_main.cpp 118 * @param outputDir Output dir.
133 static bool render_page(const SkString& outputDir,
203 if (!make_output_filepath(&outputPath, outputDir, inputFilename, page)) {
218 * @param outputDir Output dir.
220 static bool process_pdf(const SkString& inputPath, const SkString& outputDir) {
261 success &= render_page(outputDir, inputFilename, *renderer,
266 success &= render_page(outputDir, inputFilename, *renderer,
270 success &= render_page(outputDir, inputFilename, *renderer,
273 success &= render_page(outputDir, inputFilename, *renderer,
278 success &= render_page(outputDir, inputFilename, *renderer
    [all...]
  /external/skia/experimental/PdfViewer/
pdf_viewer_main.cpp 118 * @param outputDir Output dir.
133 static bool render_page(const SkString& outputDir,
203 if (!make_output_filepath(&outputPath, outputDir, inputFilename, page)) {
218 * @param outputDir Output dir.
220 static bool process_pdf(const SkString& inputPath, const SkString& outputDir) {
261 success &= render_page(outputDir, inputFilename, *renderer,
266 success &= render_page(outputDir, inputFilename, *renderer,
270 success &= render_page(outputDir, inputFilename, *renderer,
273 success &= render_page(outputDir, inputFilename, *renderer,
278 success &= render_page(outputDir, inputFilename, *renderer
    [all...]
  /external/chromium_org/third_party/binutils/
build-all.sh 19 OUTPUTDIR="${1:-$PWD/output-$(date +%Y%m%d-%H%M%S)}"
20 if [ ! -d "$OUTPUTDIR" ]; then
21 mkdir -p "$OUTPUTDIR"
92 LOGFILE="$OUTPUTDIR/build-$ARCH.log"
107 cp -a "$BUILDDIR/output/$ARCHNAME" "$OUTPUTDIR"
114 echo " $OUTPUTDIR"
  /packages/apps/OMA-DM/engine/dmlib/dmt-tools/
generateDMT 137 OUTPUTDIR=./treedata
157 -output ) OUTPUTDIR=$2/treedata ;
158 printOut "OUTPUTDIR: $OUTPUTDIR"
195 OUTPUTDIR=$1/treedata ;
196 printOut "OUTPUTDIR: $OUTPUTDIR"
218 rm -rf $OUTPUTDIR
223 if [ -d "$OUTPUTDIR" ]
226 rm -rf $OUTPUTDIR
    [all...]
  /external/chromium_org/third_party/skia/tools/tests/skdiff/identical-bits/output-expected/
stdout 3 not writing any diffs to outputDir [tools/tests/skdiff/identical-bits/output-actual/]
  /external/chromium_org/third_party/skia/tools/tests/skdiff/identical-bits-or-pixels/output-expected/
stdout 3 not writing any diffs to outputDir [tools/tests/skdiff/identical-bits-or-pixels/output-actual/]
  /external/icu/icu4c/source/tools/genrb/
parse.h 30 struct SRBRoot* parse(UCHARBUF *buf, const char* inputDir, const char* outputDir,
  /external/skia/tools/tests/skdiff/identical-bits/output-expected/
stdout 3 not writing any diffs to outputDir [tools/tests/skdiff/identical-bits/output-actual/]
  /external/skia/tools/tests/skdiff/identical-bits-or-pixels/output-expected/
stdout 3 not writing any diffs to outputDir [tools/tests/skdiff/identical-bits-or-pixels/output-actual/]

Completed in 533 milliseconds

1 2 3 4 5 6 7 8