Home
last modified time | relevance | path

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

/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DDeprecator.java63 File dstDir = null; in main() local
76 dstDir = new File(dstPath); in main()
77 if (!dstDir.exists()) { in main()
78 if (!dstDir.mkdirs()) { in main()
81 } else if (!dstDir.isDirectory()) { in main()
97 System.out.println("dst: " + dstDir.getCanonicalPath()); in main()
102 new Deprecator(undep, log).process(srcDir, dstDir); in main()
139 void process(File srcDir, File dstDir) { in process() argument
143 File d = new File(dstDir, f.getName()); in process()
/third_party/astc-encoder/Test/testlib/
Dencoder.py270 dstDir = os.path.dirname(dstPath)
272 dstPath = os.path.join(dstDir, self.name, preset[1:], blockSize, dstFile)
274 dstDir = os.path.dirname(dstPath)
275 os.makedirs(dstDir, exist_ok=True)
375 dstDir = os.path.dirname(dstPath)
377 dstPath = os.path.join(dstDir, self.name, preset[1:], blockSize, dstFile)
379 dstDir = os.path.dirname(dstPath)
380 os.makedirs(dstDir, exist_ok=True)
/third_party/vk-gl-cts/external/openglcts/scripts/
Dbuild_caselists.py134 def genAndCopyCaseList (buildCfg, generator, module, dstDir, caseListType): argument
137 dstPath = os.path.join(dstDir, caseListFile)
/third_party/vk-gl-cts/scripts/
Dbuild_caselists.py97 def genAndCopyCaseList (buildCfg, generator, module, dstDir, caseListType): argument
100 dstPath = os.path.join(dstDir, caseListFile)
Dmake_release.py313 def makeFileCopyGroup (srcDir, dstDir, includePatterns, excludePatterns=[]): argument
314 return FileTargetGroup(srcDir, dstDir, [copyFileFilter(includePatterns, excludePatterns)])
316 def makeTmpFileCopyGroup (srcDir, dstDir, includePatterns, excludePatterns=[]): argument
317 …return FileTargetGroup(srcDir, dstDir, [copyFileFilter(includePatterns, excludePatterns)], Package…
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
DvkBinaryRegistry.cpp127 void writeBinary (const std::string& dstDir, deUint32 index, const ProgramBinary& binary) in writeBinary() argument
129 writeBinary(binary, getProgramPath(dstDir, index)); in writeBinary()
/third_party/vk-gl-cts/scripts/android/
Dbuild_apk.py460 dstDir = os.path.dirname(resolvePath(config, [GeneratedResSourcePath(self.package)]))
462 if not os.path.exists(dstDir):
463 os.makedirs(dstDir)