Home
last modified time | relevance | path

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

/third_party/mesa3d/.gitlab-ci/container/
Dbuild-skqp_git-sync-deps.patch29 -def status(directory, checkoutable):
39 - checkoutable = truncate(checkoutable, 40)
40 - sys.stdout.write('%-*s @ %s\n' % (dlen, directory, checkoutable))
47 -def git_checkout_to_directory(git, repo, checkoutable, directory, verbose):
52 @@ -117,8 +121,7 @@ def git_checkout_to_directory(git, repo, checkoutable, directory, verbose):
56 - checkoutable (string) a tag, branch, or commit, suitable for
62 @@ -129,7 +132,12 @@ def git_checkout_to_directory(git, repo, checkoutable, directory, verbose):
76 @@ -145,11 +153,11 @@ def git_checkout_to_directory(git, repo, checkoutable, directory, verbose):
80 - if 0 == subprocess.call([git, 'checkout', '--quiet', checkoutable],
85 - status(directory, checkoutable) # Success.
[all …]
/third_party/flutter/skia/tools/
Dgit-sync-deps102 def status(directory, checkoutable): argument
107 checkoutable = truncate(checkoutable, 40)
108 sys.stdout.write('%-*s @ %s\n' % (dlen, directory, checkoutable))
111 def git_checkout_to_directory(git, repo, checkoutable, directory, verbose): argument
148 if 0 == subprocess.call([git, 'checkout', '--quiet', checkoutable],
152 status(directory, checkoutable) # Success.
162 subprocess.check_call([git, 'checkout', '--quiet', checkoutable], cwd=directory)
165 status(directory, checkoutable) # Success.
212 repo, checkoutable = dependencies[directory].split('@', 1)
219 (git, repo, checkoutable, relative_directory, verbose))
/third_party/spirv-tools/utils/
Dgit-sync-deps126 def status(directory, checkoutable): argument
131 checkoutable = truncate(checkoutable, 40)
132 sys.stdout.write('%-*s @ %s\n' % (dlen, directory, checkoutable))
135 def git_checkout_to_directory(git, repo, checkoutable, directory, verbose): argument
172 if 0 == subprocess.call([git, 'checkout', '--quiet', checkoutable],
176 status(directory, checkoutable) # Success.
186 subprocess.check_call([git, 'checkout', '--quiet', checkoutable], cwd=directory)
189 status(directory, checkoutable) # Success.
237 repo, checkoutable = dependencies[directory].split('@', 1)
244 (git, repo, checkoutable, relative_directory, verbose))
/third_party/skia/third_party/externals/spirv-tools/utils/
Dgit-sync-deps126 def status(directory, checkoutable): argument
131 checkoutable = truncate(checkoutable, 40)
132 sys.stdout.write('%-*s @ %s\n' % (dlen, directory, checkoutable))
135 def git_checkout_to_directory(git, repo, checkoutable, directory, verbose): argument
172 if 0 == subprocess.call([git, 'checkout', '--quiet', checkoutable],
176 status(directory, checkoutable) # Success.
186 subprocess.check_call([git, 'checkout', '--quiet', checkoutable], cwd=directory)
189 status(directory, checkoutable) # Success.
237 repo, checkoutable = dependencies[directory].split('@', 1)
244 (git, repo, checkoutable, relative_directory, verbose))
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/
Dgit-sync-deps126 def status(directory, checkoutable): argument
131 checkoutable = truncate(checkoutable, 40)
132 sys.stdout.write('%-*s @ %s\n' % (dlen, directory, checkoutable))
135 def git_checkout_to_directory(git, repo, checkoutable, directory, verbose): argument
172 if 0 == subprocess.call([git, 'checkout', '--quiet', checkoutable],
176 status(directory, checkoutable) # Success.
186 subprocess.check_call([git, 'checkout', '--quiet', checkoutable], cwd=directory)
189 status(directory, checkoutable) # Success.
237 repo, checkoutable = dependencies[directory].split('@', 1)
244 (git, repo, checkoutable, relative_directory, verbose))
/third_party/vk-gl-cts/external/amber/src/tools/
Dgit-sync-deps118 def status(directory, checkoutable):
123 checkoutable = truncate(checkoutable, 40)
124 sys.stdout.write('%-*s @ %s\n' % (dlen, directory, checkoutable))
127 def git_checkout_to_directory(git, repo, checkoutable, directory, verbose):
147 status(directory, checkoutable)
167 if 0 == subprocess.call([git, 'checkout', '--quiet', checkoutable],
179 subprocess.check_call([git, 'checkout', '--quiet', checkoutable], cwd=directory)
227 repo, checkoutable = dependencies[directory].rsplit('@', 1)
246 (git, repo, checkoutable, relative_directory, verbose))
/third_party/skia/experimental/tools/
Dpdf-comparison.py201 def checkout_worktree(checkoutable): argument
203 commit = check_output(['git', 'rev-parse', checkoutable]).strip()