/external/skqp/tools/ |
D | git-sync-deps | 102 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/ |
D | git-sync-deps | 126 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/ |
D | git-sync-deps | 126 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/ |
D | git-sync-deps | 118 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/ |
D | pdf-comparison.py | 201 def checkout_worktree(checkoutable): argument 203 commit = check_output(['git', 'rev-parse', checkoutable]).strip()
|