/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 | 365 dstFile = getDstCaseListPath(mustpass, package, config) 367 print(" Writing deqp caselist: " + dstFile) 368 writeFile(dstFile, "\n".join(filtered) + "\n")
|
/external/zstd/programs/ |
D | fileio.c | 889 FILE* dstFile; member 1061 if (fwrite(ress->dstBuffer, 1, cSize, ress->dstFile) != cSize) in FIO_compressGzFrame() 1081 if (fwrite(ress->dstBuffer, 1, cSize, ress->dstFile) != cSize) in FIO_compressGzFrame() 1149 if (fwrite(ress->dstBuffer, 1, compBytes, ress->dstFile) != compBytes) in FIO_compressLzmaFrame() 1218 if (fwrite(ress->dstBuffer, 1, headerSize, ress->dstFile) != headerSize) in FIO_compressLz4Frame() 1246 { size_t const sizeCheck = fwrite(ress->dstBuffer, 1, outSize, ress->dstFile); in FIO_compressLz4Frame() 1263 { size_t const sizeCheck = fwrite(ress->dstBuffer, 1, headerSize, ress->dstFile); in FIO_compressLz4Frame() 1288 FILE* const dstFile = ress.dstFile; in FIO_compressZstdFrame() local 1343 size_t const sizeCheck = fwrite(ress.dstBuffer, 1, outBuff.pos, dstFile); in FIO_compressZstdFrame() 1598 if (ress.dstFile == NULL) { in FIO_compressFilename_dstFile() [all …]
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/ |
D | AnalyseNewJavaParserTest.java | 77 Path dstFile = path; in parse() local 84 dstFile = dstFile9; in parse() 95 if (!Files.exists(dstFile)) { in parse() 97 PrintWriter writer = new PrintWriter(dstFile.toAbsolutePath().toFile(), "UTF-8"); in parse() 102 String expected = readFile(dstFile); in parse()
|
D | AnalyseJavaSymbolSolver060Test.java | 94 File dstFile = new File(path); in parse() local 101 dstFile = dstFile9; in parse() 119 String expected = readFile(dstFile); in parse()
|
D | AnalyseJavaParserTest.java | 72 Path dstFile = adaptPath(root.resolve(path)); in parse() local 81 String expected = readFile(dstFile); in parse()
|
/external/lz4/programs/ |
D | lz4io.c | 608 FILE* dstFile; in LZ4IO_compressFilename_extRess() local 620 dstFile = LZ4IO_openDstFile(io_prefs, dstFileName); in LZ4IO_compressFilename_extRess() 621 if (dstFile == NULL) { fclose(srcFile); return 1; } in LZ4IO_compressFilename_extRess() 655 { size_t const sizeCheck = fwrite(dstBuffer, 1, cSize, dstFile); in LZ4IO_compressFilename_extRess() 666 { size_t const sizeCheck = fwrite(dstBuffer, 1, headerSize, dstFile); in LZ4IO_compressFilename_extRess() 681 { size_t const sizeCheck = fwrite(dstBuffer, 1, outSize, dstFile); in LZ4IO_compressFilename_extRess() 694 { size_t const sizeCheck = fwrite(dstBuffer, 1, headerSize, dstFile); in LZ4IO_compressFilename_extRess() 701 if (strcmp(dstFileName,stdoutmark)) fclose (dstFile); /* do not close stdout */ in LZ4IO_compressFilename_extRess() 949 FILE* dstFile; member 984 ress.dstFile = NULL; in LZ4IO_createDResources() [all …]
|
/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/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 | 240 private static long copy(InputStream src, File dstFile) throws IOException { in copy() argument 241 FileOutputStream dst = new FileOutputStream(dstFile); in copy()
|
/external/boringssl/src/util/ |
D | run_android_tests.go | 265 dstFile, err := os.OpenFile(dst, os.O_CREATE|os.O_WRONLY, srcInfo.Mode()) 269 defer dstFile.Close() 271 _, err = io.Copy(dstFile, srcFile)
|
/external/deqp/external/openglcts/scripts/ |
D | mustpass.py | 412 dstFile = getDstCaseListPath(mustpass, package, config) 414 print(" Writing deqp caselist: " + dstFile) 415 writeFile(dstFile, "\n".join(filtered) + "\n")
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/archrast/ |
D | archrast.cpp | 126 std::ofstream dstFile; in EventHandlerApiStats() local 127 dstFile.open(eventsProtoDstFilename.str().c_str(), std::ios::binary); in EventHandlerApiStats() 128 dstFile << srcFile.rdbuf(); in EventHandlerApiStats() 129 dstFile.close(); in EventHandlerApiStats()
|