Home
last modified time | relevance | path

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

/external/deqp/scripts/
Dmake_release.py97 def __init__ (self, dstFile): argument
98 self.dstFile = dstFile
101 dirName = os.path.dirname(self.dstFile)
109 def __init__ (self, srcFile, dstFile): argument
110 super(CopyFile, self).__init__(dstFile)
115 if os.path.exists(self.dstFile):
116 die("%s already exists" % self.dstFile)
117 shutil.copyfile(self.srcFile, self.dstFile)
120 def __init__ (self, dstFile): argument
121 super(GenReleaseInfoFileTarget, self).__init__(dstFile)
[all …]
Dcppcheck.py139 def runCppCheck (srcBaseDir, dstFile): argument
140 fullDstFile = os.path.realpath(dstFile)
162 dstFile = sys.argv[1] variable
164 runCppCheck(srcDir, dstFile)
Dmustpass.py406 dstFile = getDstCaseListPath(mustpass, package, config)
408 print " Writing deqp caselist: " + dstFile
409 writeFile(dstFile, "\n".join(filtered) + "\n")
/external/deqp/framework/qphelper/
Dgen_release_info.py92 dstFile = args.out if args.out != None else defaultDstFile variable
94 writeFile(dstFile, releaseInfo)
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DSwatDeprecated.java25 private File dstFile; field in SwatDeprecated
97 this.dstFile = new File(dst); in SwatDeprecated()
111 this.dstPrefix = dstFile.getCanonicalPath(); in SwatDeprecated()
DDeprecator.java169 void processFile(File srcFile, File dstFile) { in processFile() argument