Home
last modified time | relevance | path

Searched refs:git_path (Results 1 – 5 of 5) sorted by relevance

/external/toolchain-utils/llvm_tools/patch_sync/src/
Dversion_control.rs108 let git_path = self.cros_checkout.join(CHROMIUMOS_OVERLAY_REL_PATH); in cros_cleanup() localVariable
109 Self::cleanup_branch(&git_path, CROS_MAIN_BRANCH, WORK_BRANCH_NAME) in cros_cleanup()
115 let git_path = self.android_checkout.join(ANDROID_LLVM_REL_PATH); in android_cleanup() localVariable
116 Self::cleanup_branch(&git_path, ANDROID_MAIN_BRANCH, WORK_BRANCH_NAME) in android_cleanup()
169 let git_path = &checkout_path.join(&subproject_git_wd); in repo_upload() localVariable
171 git_path.is_dir(), in repo_upload()
173 git_path.display() in repo_upload()
185 git_cd_cmd(git_path, &["add", "."]) in repo_upload()
186 .and_then(|_| git_cd_cmd(git_path, &["commit", "-m", commit_msg])) in repo_upload()
192 fn cleanup_branch(git_path: &Path, base_branch: &str, rm_branch: &str) -> Result<()> { in cleanup_branch()
[all …]
/external/tensorflow/tensorflow/tools/git/
Dgen_git_source.py75 git_path = os.path.join(src_base_path, ".git")
99 if not os.path.isdir(git_path):
108 git_head_path = os.path.join(git_path, "HEAD")
113 link_map["branch_ref"] = os.path.join(git_path, *
/external/vixl/tools/
Dutil.py243 git_path = os.path.join('/', os.path.relpath(root, config.dir_root), '')
244 if NameMatchesAnyFilter(git_path, include_dirs) and \
245 not NameMatchesAnyFilter(git_path, exclude_dirs):
/external/oss-fuzz/infra/
Drepo_manager_test.py48 git_path = os.path.join(oss_fuzz_repo, '.git')
49 self.assertTrue(os.path.isdir(git_path))
Drepo_manager.py44 git_path = os.path.join(self.repo_dir, '.git')
45 return os.path.isdir(git_path)