/external/cldr/tools/java/org/unicode/cldr/util/ |
FileCopier.java | 163 final File targetDir = new File(targetDirectory); 164 if (!targetDir.exists()) { 165 targetDir.mkdirs();
|
/external/emma/core/java12/com/vladium/util/ |
Files.java | 278 final File targetDir = target.getParentFile (); 279 if ((targetDir != null) && ! targetDir.equals (source.getParentFile ())) 280 targetDir.mkdirs (); // TODO: clean this up on failure?
|
/external/syzkaller/vm/qemu/ |
qemu.go | 69 TargetDir string 81 TargetDir: "/", 99 TargetDir: "/", 105 TargetDir: "/", 110 TargetDir: "/", 115 TargetDir: "/", 120 TargetDir: "/", 125 TargetDir: "/", 131 TargetDir: "/tmp", 140 TargetDir: "/" [all...] |
/external/icu/icu4c/source/tools/pkgdata/ |
pkgtypes.h | 116 const char *targetDir; /* dir for packaged data to go */
|
pkgdata.cpp | 76 static int32_t pkg_createSymLinks(const char *targetDir, UBool specialHandling=FALSE); 82 static int32_t pkg_createWithoutAssemblyCode(UPKGOptions *o, const char *targetDir, const char mode); 90 static int32_t pkg_createWithAssemblyCode(const char *targetDir, const char mode, const char *gencFilePath); 91 static int32_t pkg_generateLibraryFile(const char *targetDir, const char mode, const char *objectFile, char *command = NULL, UBool specialHandling=FALSE); 92 static int32_t pkg_archiveLibrary(const char *targetDir, const char *version, UBool reverseExt); 430 o.targetDir = options[DESTDIR].value; 432 o.targetDir = "."; /* cwd */ 440 o.tmpDir = o.targetDir; 563 char targetDir[SMALL_BUFFER_MAX_SIZE] = ""; 574 uprv_strcpy(targetDir, o->install) [all...] |
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/aosp/ |
RepackagingTransform.java | 157 Path targetDir = optionSet.valueOf(targetDirOption); 233 .execute(new TransformRules(sourceDir, targetDir, ruleBuilder.build())); 250 private final Path targetDir; 253 TransformRules(Path sourceDir, Path targetDir, List<Rule> rules) { 255 this.targetDir = targetDir; 271 File outputDir = targetDir.toFile();
|
/external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/ |
Icu4jTransform.java | [all...] |
/cts/tests/providerui/src/android/providerui/cts/ |
MediaStoreUiTest.java | 263 final File targetDir = new File(mContext.getFilesDir(), "debug"); 264 final File target = new File(targetDir, timeStamp + "capture.jpg"); 266 targetDir.mkdirs();
|
/external/cldr/tools/java/org/unicode/cldr/icu/ |
ConvertTransforms.java | 343 String targetDir = options[DESTDIR].value; // Utility.GEN_DIRECTORY + "main/"; 355 writeTransforms(sourceDir, match, targetDir + File.separator);
|
ResourceSplitter.java | 125 public List<ResultInfo> split(File targetDir, ResourceTable root) { 126 return new SplitProcessor(new ResultInfo(targetDir, root)).split(); 218 File targetDir = targetDirs.get(dirPath); 220 if (!new File(targetDir, fileName).exists()) {
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
ShowRegionalVariants.java | 52 targetDir(".*", CLDRPaths.GEN_DIRECTORY + "/regional/", "target output file."),; 62 myOptions.parse(MyOptions.targetDir, args, true); 64 MY_DIR = MyOptions.targetDir.option.getValue();
|
ShowData.java | 101 String targetDir = options[DESTDIR].value; // Utility.GEN_DIRECTORY + 228 PrintWriter pw = FileUtilities.openUTF8Writer(targetDir, locale + ".html"); 364 PrintWriter pw = FileUtilities.openUTF8Writer(targetDir, "all-changed.html"); [all...] |
VettingAdder.java | 131 public void incorporateVetting(String locale, String targetDir) throws IOException { 171 Log.logln("Writing: " + targetDir + locale + ".xml"); 172 PrintWriter pw = FileUtilities.openUTF8Writer(targetDir, locale + ".xml"); 176 Log.logln("No data left in: " + targetDir + locale + ".xml"); 250 public void showFiles(Factory cldrFactory, String targetDir) throws IOException { 263 incorporateVetting(it.next(), targetDir);
|
CLDRModify.java | 349 String targetDir = targetDirBase + dir; 350 Log.setLog(targetDir + "/diff", "log.txt"); 362 va.showFiles(cldrFactory, targetDir); 529 PrintWriter pw = FileUtilities.openUTF8Writer(targetDir, test + ".xml"); 561 QuickCheck.check(new File(targetDir, test + ".xml")); 568 // ToolUtilities.generateBat(sourceDir, test + ".xml", targetDir, test + ".xml", lineComparer); 572 * targetDir + test + ".xml", failureLines, Utility.TRIM + Utility.SKIP_SPACES); [all...] |
ShowLocaleCoverage.java | 120 targetDir(".*", [all...] |
GenerateXMB.java | 160 String targetDir = myOptions.get("target").getValue(); 161 countFile = FileUtilities.openUTF8Writer(targetDir + "/log/", "counts.txt"); 170 showDefaultContents(targetDir, english); 171 EnglishInfo englishInfo = new EnglishInfo(targetDir, english, root); 176 compareFiles(fileMatcherString, contentMatcher, targetDir, cldrFactory1, english, englishInfo); 187 writeFile(targetDir, "en", englishInfo, english, true, false); 188 writeFile(targetDir + "/filtered/", "en", englishInfo, english, true, true); 225 writeFile(targetDir + "/wsb/", file, englishInfo, cldrFile, false, false); 226 writeFile(targetDir + "/wsb/filtered/", file, englishInfo, cldrFile, false, true); 230 PrintWriter errorFile = FileUtilities.openUTF8Writer(targetDir + "/log/", "errors.txt") [all...] |
/cts/hostsidetests/compilation/src/android/compilation/cts/ |
AdbRootDependentCompilationTest.java | 264 String targetDir = location.getDirectory(); 265 if (!doesFileExist(targetDir)) { 269 String owner = executeSuShellAdbCommand(1, "stat", "-c", "%U:%g", targetDir)[0]; 276 executePush(textProfileFile.getAbsolutePath(), targetPathTemp, targetDir); 280 executePush(apkFile.getAbsolutePath(), targetPathApk, targetDir);
|
/external/cldr/tools/java/org/unicode/cldr/ant/ |
CLDRBuild.java | 230 infos.add(new SplitInfo(remap.sourcePath, remap.targetDir, remap.targetPath)); 637 public String targetDir; 647 public void setTargetDir(String targetDir) { 648 this.targetDir = targetDir; 670 if (remap.targetDir != null && remap.targetDir.trim().isEmpty()) { 671 remap.targetDir = null;
|
/external/python/cpython3/Tools/msi/bundle/bootstrap/ |
PythonBootstrapperApplication.cpp | 154 { ID_TARGETDIR_EDITBOX, L"TargetDir" }, 264 LPWSTR targetDir = nullptr; 291 ExitOnFailure(hr, L"Failed to set TargetDir"); 323 ExitOnFailure(hr, L"Failed to set TargetDir"); 325 hr = BalGetStringVariable(L"TargetDir", &targetDir); 328 ReleaseStr(targetDir); 358 ThemeGetTextControl(_theme, ID_TARGETDIR_EDITBOX, &targetDir); 359 if (targetDir) { 370 if (wcscmp(formatted, targetDir) == 0) [all...] |
/external/emma/lib/ |
emma.jar | |
/external/owasp/sanitizer/tools/emma/lib/ |
emma.jar | |