Home
last modified time | relevance | path

Searched refs:dstFile (Results 1 – 14 of 14) sorted by relevance

/external/deqp/scripts/
Dmake_release.py99 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 …]
Dcppcheck.py135 def runCppCheck (srcBaseDir, dstFile): argument
136 fullDstFile = os.path.realpath(dstFile)
158 dstFile = sys.argv[1] variable
160 runCppCheck(srcDir, dstFile)
Dmustpass.py360 dstFile = getDstCaseListPath(mustpass, package, config)
362 print " Writing deqp caselist: " + dstFile
363 writeFile(dstFile, "\n".join(filtered) + "\n")
/external/lz4/programs/
Dlz4io.c534 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/
DAnalyseNewJavaParserTest.java79 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()
DAnalyseJavaSymbolSolver060Test.java100 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()
DAnalyseJavaParserTest.java74 File dstFile = adaptPath(new File(path)); in parse() local
83 String expected = readFile(dstFile); in parse()
/external/boringssl/src/util/
Drun_android_tests.go172 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/
DSwatDeprecated.java27 private File dstFile; field in SwatDeprecated
99 this.dstFile = new File(dst); in SwatDeprecated()
113 this.dstPrefix = dstFile.getCanonicalPath(); in SwatDeprecated()
DDeprecator.java171 void processFile(File srcFile, File dstFile) { in processFile() argument
/external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/
DNativeLibrary.java186 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/
Dgen_release_info.py134 dstFile = args.out if args.out != None else defaultDstFile variable
136 writeFile(dstFile, releaseInfo)
/external/deqp/external/openglcts/scripts/
Dmustpass.py402 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/
DCLDRBuild.java98 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()