HomeSort by relevance Sort by last modified time
    Searched refs:outputDir (Results 1 - 25 of 128) sorted by null

1 2 3 4 5 6

  /external/chromium_org/third_party/icu/source/tools/genrb/
genrb.h 46 const char *outputDir,
parse.h 30 struct SRBRoot* parse(UCHARBUF *buf, const char* inputDir, const char* outputDir, UErrorCode *status);
genrb.c 25 void processFile(const char *filename, const char* cp, const char *inputDir, const char *outputDir, const char *packageName, UErrorCode *status);
26 static char *make_res_filename(const char *filename, const char *outputDir,
120 const char *outputDir = NULL; /* NULL = no output directory, use current */
238 outputDir = options[DESTDIR].value;
427 processFile(arg, encoding, inputDir, outputDir, gPackageName, &status);
434 bundle_write(newPoolBundle, outputDir, NULL, outputFileName, sizeof(outputFileName), &status);
451 processFile(const char *filename, const char *cp, const char *inputDir, const char *outputDir, const char *packageName, UErrorCode *status) {
558 data = parse(ucbuf, inputDir, outputDir, status);
591 rbname = make_res_filename(filename, outputDir, packageName, status);
597 bundle_write_java(data,outputDir,outputEnc, outputFileName, sizeof(outputFileName),packageName,bundleName,status)
    [all...]
  /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_utils.h 45 * If !outputDir.isEmpty(), writes out difference and white images.
50 const SkString& outputDir,
skdiff_html.cpp 229 const SkString& outputDir) {
233 SkASSERT(!outputDir.isEmpty());
235 SkString outputPath(outputDir);
240 // Need to convert paths from relative-to-cwd to relative-to-outputDir
241 // FIXME this doesn't work if there are '..' inside the outputDir
245 if (outputDir.size() > 0 && PATH_DIV_CHAR == outputDir[0]) {
251 if (outputDir.size() > 1 && ':' == outputDir[1]) {
259 for (ui = 0; ui < outputDir.size(); ui++)
    [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...]
  /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_utils.h 45 * If !outputDir.isEmpty(), writes out difference and white images.
50 const SkString& outputDir,
skdiff_html.cpp 229 const SkString& outputDir) {
233 SkASSERT(!outputDir.isEmpty());
235 SkString outputPath(outputDir);
240 // Need to convert paths from relative-to-cwd to relative-to-outputDir
241 // FIXME this doesn't work if there are '..' inside the outputDir
245 if (outputDir.size() > 0 && PATH_DIV_CHAR == outputDir[0]) {
251 if (outputDir.size() > 1 && ':' == outputDir[1]) {
259 for (ui = 0; ui < outputDir.size(); ui++)
    [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...]
  /external/icu/icu4c/source/tools/genrb/
parse.h 30 struct SRBRoot* parse(UCHARBUF *buf, const char* inputDir, const char* outputDir,
genrb.h 53 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/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/WebKit/Source/build/scripts/
rule_bison.py 48 outputDir = sys.argv[2]
69 os.path.join(outputDir, inputRoot + '.cpp.h'),
70 os.path.join(outputDir, inputRoot + '.hpp'),
80 outputCpp = os.path.join(outputDir, inputRoot + '.cpp')
105 outputH = os.path.join(outputDir, inputRoot + '.h')
  /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/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...]
  /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...]
Zip.java 54 public void unzip(String zipFilePath, String outputDir) throws Exception {
71 outputDir +=
72 (outputDir.length() > 0 && !outputDir.endsWith(File.separator)) ?
75 File newFile = new File(outputDir + entry);
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ResourceExtractor.java 56 final File outputDir = getOutputDir();
57 if (!outputDir.exists() && !outputDir.mkdirs()) {
62 String timestampFile = checkPakTimestamp(outputDir);
77 if (!new File(outputDir, file).exists()) {
116 File output = new File(isICUData ? getAppDataDir() : outputDir, file);
174 new File(outputDir, timestampFile).createNewFile();
194 private String checkPakTimestamp(File outputDir) {
211 String[] timestamps = outputDir.list(new FilenameFilter() {

Completed in 9498 milliseconds

1 2 3 4 5 6