Home
last modified time | relevance | path

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

/external/skqp/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))
/external/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))
/external/deqp-deps/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))
/external/deqp-deps/amber/tools/
Dgit-sync-deps118 def status(directory, checkoutable): argument
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): argument
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))
/external/skia/experimental/tools/
Dpdf-comparison.py201 def checkout_worktree(checkoutable): argument
203 commit = check_output(['git', 'rev-parse', checkoutable]).strip()