Searched refs:fullDstPath (Results 1 – 5 of 5) sorted by relevance
/third_party/vk-gl-cts/external/openglcts/scripts/ |
D | verify_kc_cts_rev.py | 47 fullDstPath = os.path.join(EXTERNAL_DIR, self.baseDir, self.extractDir) 48 if os.path.exists(fullDstPath): 49 shutil.rmtree(fullDstPath, ignore_errors=False) 58 fullDstPath = os.path.join(EXTERNAL_DIR, self.baseDir, self.extractDir) 60 if not os.path.exists(fullDstPath): 61 execute(["git", "clone", "--no-checkout", self.url, fullDstPath]) 63 pushWorkingDir(fullDstPath) 70 fullDstPath = os.path.join(EXTERNAL_DIR, self.baseDir, self.extractDir) 71 pushWorkingDir(fullDstPath)
|
/third_party/vk-gl-cts/scripts/khr_util/ |
D | registry_cache.py | 77 def checkoutGit (repository, revision, fullDstPath): argument 78 if not os.path.exists(fullDstPath): 79 execute(["git", "clone", "--no-checkout", repository, fullDstPath]) 81 pushWorkingDir(fullDstPath) 100 fullDstPath = os.path.join(cacheDir, "git") 102 checkoutGit(repository, revision, fullDstPath) 103 f = open(os.path.join(fullDstPath, filename), "rt")
|
/third_party/vk-gl-cts/external/ |
D | fetch_sources.py | 52 fullDstPath = os.path.join(EXTERNAL_DIR, self.baseDir, self.extractDir) 54 readonlydir = os.path.join(fullDstPath, ".git", "objects", "pack") 57 if os.path.exists(fullDstPath): 58 shutil.rmtree(fullDstPath, ignore_errors=False) 277 fullDstPath = os.path.join(EXTERNAL_DIR, self.baseDir, self.extractDir) 280 if not os.path.exists(os.path.join(fullDstPath, '.git')): 281 execute(["git", "clone", "--no-checkout", url, fullDstPath]) 283 pushWorkingDir(fullDstPath)
|
/third_party/vk-gl-cts/external/vulkancts/scripts/ |
D | build_spirv_binaries.py | 63 fullDstPath = os.path.realpath(dstPath) 70 …execute([binPath, "--validate-spv", "--dst-path", fullDstPath, "--target-vulkan-version", vulkanVe…
|
/third_party/vk-gl-cts/scripts/ |
D | make_release.py | 181 fullDstPath = os.path.normpath(os.path.join(packageBuildInfo.dstBasePath, self.dstBasePath)) 184 targets = createFileTargets(fullSrcPath, fullDstPath, allFiles, self.filters) 199 fullDstPath = os.path.normpath(os.path.join(packageBuildInfo.dstBasePath, self.dstFile)) 201 target = self.makeTarget(fullSrcPath, fullDstPath)
|