Searched refs:repo_dir (Results 1 – 6 of 6) sorted by relevance
/third_party/vulkan-loader/scripts/ |
D | update_deps.py | 345 self.repo_dir = os.path.join(dir_top, self.sub_dir) 356 print('Cloning {n} into {d}'.format(n=self.name, d=self.repo_dir)) 358 make_or_exist_dirs(self.repo_dir) 360 command_output(['git', 'clone', self.url, '.'], self.repo_dir) 369 if os.path.isdir(self.repo_dir): 370 print("Removing old tree {}".format(self.repo_dir)) 371 shutil.rmtree(self.repo_dir, onerror=on_rm_error) 381 command_output(['git', 'fetch', 'origin'], self.repo_dir) 397 print('Checking out {n} in {d}'.format(n=self.name, d=self.repo_dir)) 399 if os.path.isdir(self.repo_dir): [all …]
|
D | generate_source.py | 51 repo_dir = common_codegen.repo_relative('loader/generated') 61 gen_dir = repo_dir 79 repo_files = set(os.listdir(repo_dir)) 89 os.path.join(repo_dir, filename), 104 repo_filename = os.path.join(repo_dir, filename)
|
/third_party/skia/tools/android/ |
D | upload_to_android.py | 63 repo_dir = os.path.join(work_dir, 'bin') 64 repo_binary = os.path.join(repo_dir, 'repo') 65 if not os.path.isdir(repo_dir): 66 print('Creating %s' % repo_dir) 67 os.makedirs(repo_dir)
|
/third_party/skia/build/fuchsia/ |
D | gen_repo | 30 if not os.path.exists(args.repo_dir): 31 pm_newrepo_command = [args.pm_bin, 'newrepo', '-repo', args.repo_dir] 40 args.repo_dir
|
/third_party/rust/crates/syn/tests/repo/ |
D | mod.rs | 237 let repo_dir = Path::new("tests/rust"); in for_each_rust_file() localVariable 238 for entry in WalkDir::new(repo_dir) in for_each_rust_file() 249 for entry in WalkDir::new(repo_dir.join(ui_test_dir)) { in for_each_rust_file()
|
/third_party/googletest/googletest/scripts/ |
D | upload.py | 1060 def __init__(self, options, repo_dir): argument 1063 self.repo_dir = os.path.normpath(repo_dir) 1066 assert cwd.startswith(self.repo_dir) 1067 self.subdir = cwd[len(self.repo_dir):].lstrip(r"\/")
|