HomeSort by relevance Sort by last modified time
    Searched defs:outDir (Results 1 - 25 of 209) sorted by null

1 2 3 4 5 6 7 8 9

  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/serializable/
SerializableWriter.java 65 String outDir = null;
68 outDir = dataURL.getPath() + "/" + folderName();
70 outDir = args[0] + "/" + folderName();
77 SerializableWriter writer = new SerializableWriter(outDir);
83 File outDir = new File(this.path);
84 if (!outDir.exists()) {
85 outDir.mkdirs();
  /external/icu/icu4c/source/tools/genbrk/
genbrk.cpp 134 const char *outDir = NULL;
170 outDir = options[6].value;
186 pData = udata_create(outDir, NULL, outFileName, &dummyDataInfo, NULL, &status);
317 pData = udata_create(outDir, NULL, outFileName, &(dh.info), copyright, &status);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/
SerializableWriter.java 64 String outDir = null;
67 outDir = dataURL.getPath() + "/" + folderName();
69 outDir = args[0] + "/" + folderName();
76 SerializableWriter writer = new SerializableWriter(outDir);
82 File outDir = new File(this.path);
83 if (!outDir.exists()) {
84 outDir.mkdirs();
  /build/soong/cmd/multiproduct_kati/
main.go 50 var outDir = flag.String("out", "", "path to store output directories (defaults to tmpdir under $OUT when empty)")
186 if *outDir == "" {
189 *outDir = filepath.Join(config.OutDir(), name)
198 if err := os.MkdirAll(*outDir, 0777); err != nil {
205 os.RemoveAll(*outDir)
210 config.Environment().Set("OUT_DIR", *outDir)
211 log.Println("Output directory:", *outDir)
220 log.SetOutput(filepath.Join(config.OutDir(), "soong.log"))
221 trace.SetOutput(filepath.Join(config.OutDir(), "build.trace")
    [all...]
  /cts/tools/vm-tests-tf/src/util/build/
JillBuildStep.java 34 File outDir = outputFile.fileName.getParentFile();
35 if (!outDir.exists() && !outDir.mkdirs()) {
37 + outDir.getAbsolutePath());
JackBuildStep.java 52 File outDir = new File(destPath).getParentFile();
53 if (!outDir.exists() && !outDir.mkdirs()) {
55 + outDir.getAbsolutePath());
59 File tmpOutDir = new File(outDir, outputFile.fileName.getName() + ".dexTmp");
67 File tmpArgs = new File(outDir, outputFile.fileName.getName() + ".args");
JackDexBuildStep.java 44 File outDir = outputFile.fileName.getParentFile();
45 if (!outDir.exists() && !outDir.mkdirs()) {
47 + outDir.getAbsolutePath());
51 File tmpOutDir = new File(outDir, outputFile.fileName.getName() + ".dexTmp");
JarBuildStep.java 61 File outDir = outputFile.fileName.getParentFile();
62 if (!outDir.exists() && !outDir.mkdirs()) {
64 + outDir.getAbsolutePath());
  /external/icu/icu4c/source/tools/gencfu/
gencfu.cpp 140 const char *outDir = NULL;
176 outDir = options[7].value;
200 pData = udata_create(outDir, NULL, outFileName, &dummyDataInfo, NULL, &status);
267 pData = udata_create(outDir, NULL, outFileName, &(dh.info), copyright, &status);
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/index/
IndexGenerator.java 43 File outDir = inDir;
45 outDir = new File(args[1]);
46 if (!outDir.isDirectory() || !outDir.exists()) {
68 File outFile = new File(outDir, "res_index.txt");
95 System.out.println("Usage: IndexGenerator inDir outDir");
97 System.out.println(" outDir is an existing directory in which the res_index.txt file will be placed");
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
JitManager.cpp 246 std::stringstream outDir;
247 outDir << JITTER_OUTPUT_DIR << pBaseName << "_" << pid << std::ends;
248 CreateDirectory(outDir.str().c_str(), NULL);
256 sprintf(fName, "%s\\%s.%s.asm", outDir.str().c_str(), funcName, fileName);
289 std::stringstream outDir;
290 outDir << JITTER_OUTPUT_DIR << pBaseName << "_" << pid << std::ends;
291 CreateDirectory(outDir.str().c_str(), NULL);
298 sprintf(fName, "%s\\%s.%s.ll", outDir.str().c_str(), funcName, fileName);
307 sprintf(fName, "%s\\cfg.%s.%s.dot", outDir.str().c_str(), funcName, fileName);
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/
genvk.py 41 outDir = '.'
70 elif (arg == '-outdir'):
71 outDir = sys.argv[i]
73 write('Using output directory ', outDir, file=sys.stderr)
287 genDirectory = outDir)
309 genDirectory = outDir)
322 if (not os.path.isdir(outDir)):
323 write('Output directory does not exist: ', outDir)
  /external/icu/icu4c/source/tools/gendict/
gendict.cpp 296 const char* outDir=NULL;
307 pData = udata_create(outDir, NULL, outFileName, &dataInfo, NULL, &tempstatus);
  /external/lzma/CPP/7zip/UI/Common/
Extract.cpp 41 FString outDir = options.OutputDir;
54 outDir.Replace(FSTRING_ANY_MASK, us2fs(Get_Correct_FsFile_Name(replaceName)));
58 FString outDirReduced = outDir;
63 SplitPathToParts_Smart(fs2us(outDir), dirPrefix, elimPrefix);
149 // outDir = outDirReduced;
154 // outDir.TrimRight();
155 // outDir = GetCorrectFullFsPath(outDir);
158 if (outDir.IsEmpty())
159 outDir = FTEXT(".") FSTRING_PATH_SEPARATOR;
    [all...]
  /tools/apksig/src/test/java/com/android/apksig/
ApkSignerTest.java 53 File outDir = (params.length > 0) ? new File(params[0]) : new File(".");
54 generateGoldenFiles(outDir);
57 private static void generateGoldenFiles(File outDir) throws Exception {
60 + " into " + outDir);
61 if (!outDir.mkdirs()) {
62 throw new IOException("Failed to create directory: " + outDir);
69 new File(outDir, "golden-unaligned-out.apk"),
73 new File(outDir, "golden-legacy-aligned-out.apk"),
77 new File(outDir, "golden-aligned-out.apk"),
82 new File(outDir, "golden-unaligned-v1-out.apk")
    [all...]
  /external/testng/src/main/java/org/testng/internal/
Utils.java 105 final File outDir = (outputDir != null) ? new File(outputDir) : new File("").getAbsoluteFile();
106 if (!outDir.exists()) {
107 outDir.mkdirs();
109 final File file = new File(outDir, fileName);
125 * Writes the content of the sb string to the file named filename in outDir encoding the output as UTF-8.
126 * If outDir does not exist, it is created.
134 final File outDir= new File(outDirPath);
135 writeFile(outDir, fileName, escapeUnicode(sb), "UTF-8", false /* don't append */);
139 * Writes the content of the sb string to the file named filename in outDir. If
140 * outDir does not exist, it is created
    [all...]
  /external/skia/tests/
RRectInPathTest.cpp 55 SkPath::Direction outDir;
57 SkRRect rrect = path_contains_rrect(reporter, path, &outDir, &outStart);
58 REPORTER_ASSERT(reporter, outDir == dir && outStart == start);
96 SkPath::Direction outDir;
98 path_contains_rrect(reporter, path, &outDir, &outStart);
99 REPORTER_ASSERT(reporter, outDir == dir && outStart == start);
SkpSkGrTest.cpp 201 SkString outDir = make_filepath(0, OUT_DIR, "");
202 if (!sk_exists(outDir.c_str())) {
203 if (!sk_mkdir(outDir.c_str())) {
204 SkDebugf("could not create dir %s\n", outDir.c_str());
368 static void writePict(const SkBitmap& bitmap, const char* outDir, const char* pngName) {
369 SkString outFile = make_filepath(0, outDir, pngName);
  /external/vogar/src/vogar/android/
AndroidSdk.java 141 String outDir = System.getenv("OUT_DIR");
142 if (Strings.isNullOrEmpty(outDir)) {
144 outDir = ".";
148 outDir = androidBuildTop;
150 outDir += "/out/";
153 outDir += "/";
158 String desugarPattern = outDir + "host/linux-x86/framework/desugar.jar";
168 String pattern = outDir + "target/common/obj/JAVA_LIBRARIES/%s_intermediates/classes";
170 pattern = outDir + "host/common/obj/JAVA_LIBRARIES/%s_intermediates/classes";
  /packages/apps/DocumentsUI/src/com/android/documentsui/clipping/
ClipStorage.java 77 * @param outDir see {@link #prepareStorage(File)}.
79 public ClipStorage(File outDir, SharedPreferences pref) {
80 assert(outDir.isDirectory());
81 mOutDir = outDir;
  /external/icu/icu4c/source/tools/genrb/
wrtxml.cpp 58 static const char* outDir = NULL;
806 int32_t tLen = ( outDir == NULL) ? 0 :(int32_t)uprv_strlen(outDir);
1034 outDir = outputDir;
    [all...]
  /external/r8/src/test/java/com/android/tools/r8/maindexlist/
MainDexListTests.java 322 private void failedToFindClassInExpectedFile(Path outDir, String clazz) throws IOException {
323 Files.list(outDir)
359 Path outDir = temp.newFolder().toPath();
367 .setOutputPath(outDir)
374 1 < Files.list(outDir).filter(FileUtils::isDexFile).count());
377 new DexInspector(AndroidApp.fromProgramFiles(outDir.resolve("classes.dex")));
380 failedToFindClassInExpectedFile(outDir, clazz);
  /dalvik/dx/src/com/android/dx/command/dexer/
Main.java 412 File outDir = new File(args.outName);
413 assert outDir.isDirectory();
415 OutputStream out = new FileOutputStream(new File(outDir, getDexFileName(i)));
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/
Tool.java 166 File outDir = new File(outputDirectory);
168 if (outDir.exists() && !outDir.isDirectory()) {
185 File outDir = new File(getLibraryDirectory());
186 if (!outDir.exists()) {
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/
ReportGenerator.java 90 File outDir = m_settings.getOutDir ();
91 if ((outDir == null) /* this should never happen */ || (outDir.equals (new File (Property.getSystemProperty ("user.dir", "")))))
93 outDir = new File ("coverage");
94 m_settings.setOutDir (outDir);
    [all...]

Completed in 1734 milliseconds

1 2 3 4 5 6 7 8 9