Home
last modified time | relevance | path

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

/third_party/vk-gl-cts/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)
/third_party/lz4/programs/
Dlz4io.c668 FILE* dstFile; in LZ4IO_compressFilename_extRess() local
680 dstFile = LZ4IO_openDstFile(dstFileName, io_prefs); in LZ4IO_compressFilename_extRess()
681 if (dstFile == NULL) { fclose(srcFile); return 1; } in LZ4IO_compressFilename_extRess()
715 if (fwrite(dstBuffer, 1, cSize, dstFile) != cSize) { in LZ4IO_compressFilename_extRess()
726 if (fwrite(dstBuffer, 1, headerSize, dstFile) != headerSize) in LZ4IO_compressFilename_extRess()
740 if (fwrite(dstBuffer, 1, outSize, dstFile) != outSize) in LZ4IO_compressFilename_extRess()
753 if (fwrite(dstBuffer, 1, endSize, dstFile) != endSize) in LZ4IO_compressFilename_extRess()
760 if (!LZ4IO_isStdout(dstFileName)) fclose(dstFile); /* do not close stdout */ in LZ4IO_compressFilename_extRess()
1017 FILE* dstFile; member
1053 ress.dstFile = NULL; in LZ4IO_createDResources()
[all …]
/third_party/astc-encoder/Test/testlib/
Dencoder.py271 dstFile = os.path.basename(dstPath)
272 dstPath = os.path.join(dstDir, self.name, preset[1:], blockSize, dstFile)
376 dstFile = os.path.basename(dstPath)
377 dstPath = os.path.join(dstDir, self.name, preset[1:], blockSize, dstFile)
/third_party/vk-gl-cts/framework/qphelper/
Dgen_release_info.py134 dstFile = args.out if args.out != None else defaultDstFile variable
136 writeFile(dstFile, releaseInfo)
/third_party/vk-gl-cts/external/openglcts/scripts/
Dmustpass.py414 dstFile = getDstCaseListPath(mustpass, package, config)
416 print(" Writing deqp caselist: " + dstFile)
417 writeFile(dstFile, "\n".join(filtered) + "\n")
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DDeprecator.java171 void processFile(File srcFile, File dstFile) { in processFile() argument