/external/deqp/scripts/ |
D | make_release.py | 99 def __init__ (self, dstFile): argument 100 self.dstFile = dstFile 103 dirName = os.path.dirname(self.dstFile) 111 def __init__ (self, srcFile, dstFile): argument 112 super(CopyFile, self).__init__(dstFile) 117 if os.path.exists(self.dstFile): 118 die("%s already exists" % self.dstFile) 119 shutil.copyfile(self.srcFile, self.dstFile) 122 def __init__ (self, dstFile): argument 123 super(GenReleaseInfoFileTarget, self).__init__(dstFile) [all …]
|
D | cppcheck.py | 135 def runCppCheck (srcBaseDir, dstFile): argument 136 fullDstFile = os.path.realpath(dstFile) 158 dstFile = sys.argv[1] variable 160 runCppCheck(srcDir, dstFile)
|
D | mustpass.py | 360 dstFile = getDstCaseListPath(mustpass, package, config) 362 print " Writing deqp caselist: " + dstFile 363 writeFile(dstFile, "\n".join(filtered) + "\n")
|
/external/lz4/programs/ |
D | lz4io.c | 534 FILE* dstFile; in LZ4IO_compressFilename_extRess() local 546 dstFile = LZ4IO_openDstFile(dstFileName); in LZ4IO_compressFilename_extRess() 547 if (dstFile == NULL) { fclose(srcFile); return 1; } in LZ4IO_compressFilename_extRess() 581 { size_t const sizeCheck = fwrite(dstBuffer, 1, cSize, dstFile); in LZ4IO_compressFilename_extRess() 592 { size_t const sizeCheck = fwrite(dstBuffer, 1, headerSize, dstFile); in LZ4IO_compressFilename_extRess() 607 { size_t const sizeCheck = fwrite(dstBuffer, 1, outSize, dstFile); in LZ4IO_compressFilename_extRess() 620 { size_t const sizeCheck = fwrite(dstBuffer, 1, headerSize, dstFile); in LZ4IO_compressFilename_extRess() 627 fclose (dstFile); in LZ4IO_compressFilename_extRess() 856 FILE* dstFile; member 891 ress.dstFile = NULL; in LZ4IO_createDResources() [all …]
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/ |
D | AnalyseNewJavaParserTest.java | 79 File dstFile = new File(path); in parse() local 86 dstFile = dstFile9; in parse() 97 if (!dstFile.exists()) { in parse() 99 PrintWriter writer = new PrintWriter(dstFile.getAbsoluteFile(), "UTF-8"); in parse() 104 String expected = readFile(dstFile); in parse()
|
D | AnalyseJavaSymbolSolver060Test.java | 100 File dstFile = new File(path); in parse() local 107 dstFile = dstFile9; in parse() 118 if (!dstFile.exists()) { in parse() 125 String expected = readFile(dstFile); in parse()
|
D | AnalyseJavaParserTest.java | 74 File dstFile = adaptPath(new File(path)); in parse() local 83 String expected = readFile(dstFile); in parse()
|
/external/boringssl/src/util/ |
D | run_android_tests.go | 172 dstFile, err := os.OpenFile(dst, os.O_CREATE|os.O_WRONLY, srcInfo.Mode()) 176 defer dstFile.Close() 178 _, err = io.Copy(dstFile, srcFile)
|
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
D | SwatDeprecated.java | 27 private File dstFile; field in SwatDeprecated 99 this.dstFile = new File(dst); in SwatDeprecated() 113 this.dstPrefix = dstFile.getCanonicalPath(); in SwatDeprecated()
|
D | Deprecator.java | 171 void processFile(File srcFile, File dstFile) { in processFile() argument
|
/external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/ |
D | NativeLibrary.java | 186 private static long copy(InputStream src, File dstFile) throws IOException { in copy() argument 187 FileOutputStream dst = new FileOutputStream(dstFile); in copy()
|
/external/deqp/framework/qphelper/ |
D | gen_release_info.py | 134 dstFile = args.out if args.out != None else defaultDstFile variable 136 writeFile(dstFile, releaseInfo)
|
/external/deqp/external/openglcts/scripts/ |
D | mustpass.py | 402 dstFile = getDstCaseListPath(mustpass, package, config) 404 print " Writing deqp caselist: " + dstFile 405 writeFile(dstFile, "\n".join(filtered) + "\n")
|
/external/cldr/tools/java/org/unicode/cldr/ant/ |
D | CLDRBuild.java | 98 for (File dstFile : destFiles) { in getLocalesList() 99 String destName = stripExtension(dstFile.getName()); in getLocalesList() 102 … if (srcName.equals(destName) && dstFile.lastModified() > srcFile.lastModified()) { in getLocalesList()
|