/external/skia/infra/bots/assets/clang_linux/ |
D | create.py | 26 subprocess.check_call(["git", "clone", "--depth", "1", "-b", 29 subprocess.check_call(["git", "clone", "--depth", "1", "-b", 31 subprocess.check_call(["git", "clone", "--depth", "1", "-b", 34 subprocess.check_call(["git", "clone", "--depth", "1", "-b", 38 subprocess.check_call(["git", "clone", "--depth", "1", "-b", 40 subprocess.check_call(["git", "clone", "--depth", "1", "-b", 42 subprocess.check_call(["git", "clone", "--depth", "1", "-b", 47 subprocess.check_call(["cmake", "..", "-G", "Ninja", 52 subprocess.check_call(["ninja", "install"]) 55 subprocess.check_call(["cp", "bin/llvm-symbolizer", target_dir + "/bin"]) [all …]
|
/external/skqp/infra/bots/assets/clang_linux/ |
D | create.py | 26 subprocess.check_call(["git", "clone", "--depth", "1", "-b", 29 subprocess.check_call(["git", "clone", "--depth", "1", "-b", 31 subprocess.check_call(["git", "clone", "--depth", "1", "-b", 34 subprocess.check_call(["git", "clone", "--depth", "1", "-b", 38 subprocess.check_call(["git", "clone", "--depth", "1", "-b", 40 subprocess.check_call(["git", "clone", "--depth", "1", "-b", 42 subprocess.check_call(["git", "clone", "--depth", "1", "-b", 47 subprocess.check_call(["cmake", "..", "-G", "Ninja", 52 subprocess.check_call(["ninja", "install"]) 55 subprocess.check_call(["cp", "bin/llvm-symbolizer", target_dir + "/bin"]) [all …]
|
/external/libcxx/test/std/utilities/variant/variant.visit/ |
D | visit.pass.cpp | 79 template <class... Args> static bool check_call(CallType type) { in check_call() function 100 assert(Fn::check_call<>(CT_NonConst | CT_LValue)); in test_call_operator_forwarding() 102 assert(Fn::check_call<>(CT_Const | CT_LValue)); in test_call_operator_forwarding() 104 assert(Fn::check_call<>(CT_NonConst | CT_RValue)); in test_call_operator_forwarding() 106 assert(Fn::check_call<>(CT_Const | CT_RValue)); in test_call_operator_forwarding() 112 assert(Fn::check_call<int &>(CT_NonConst | CT_LValue)); in test_call_operator_forwarding() 114 assert(Fn::check_call<int &>(CT_Const | CT_LValue)); in test_call_operator_forwarding() 116 assert(Fn::check_call<int &>(CT_NonConst | CT_RValue)); in test_call_operator_forwarding() 118 assert(Fn::check_call<int &>(CT_Const | CT_RValue)); in test_call_operator_forwarding() 124 assert(Fn::check_call<long &>(CT_NonConst | CT_LValue)); in test_call_operator_forwarding() [all …]
|
/external/skqp/infra/bots/ |
D | git_utils.py | 31 subprocess.check_call(['git', 'config', '--local', k, v]) 36 subprocess.check_call( 39 subprocess.check_call(['git', 'config', '--local', '--unset', k]) 60 subprocess.check_call(['git', 'reset', '--hard', 'HEAD']) 61 subprocess.check_call(['git', 'checkout', 'master']) 63 subprocess.check_call(['git', 'branch', '-D', self._branch_name]) 64 subprocess.check_call(['git', 'checkout', '-b', self._branch_name, 70 subprocess.check_call(['git', 'commit', '-a', '-m', self._commit_msg]) 82 subprocess.check_call(upload_cmd) 94 subprocess.check_call(['git', 'checkout', 'master']) [all …]
|
/external/skia/infra/bots/ |
D | git_utils.py | 31 subprocess.check_call(['git', 'config', '--local', k, v]) 36 subprocess.check_call( 39 subprocess.check_call(['git', 'config', '--local', '--unset', k]) 60 subprocess.check_call(['git', 'reset', '--hard', 'HEAD']) 61 subprocess.check_call(['git', 'checkout', 'master']) 63 subprocess.check_call(['git', 'branch', '-D', self._branch_name]) 64 subprocess.check_call(['git', 'checkout', '-b', self._branch_name, 70 subprocess.check_call(['git', 'commit', '-a', '-m', self._commit_msg]) 82 subprocess.check_call(upload_cmd) 94 subprocess.check_call(['git', 'checkout', 'master']) [all …]
|
/external/skia/tools/android/ |
D | upload_to_android.py | 91 subprocess.check_call( 97 subprocess.check_call('%s sync %s tools/repohooks -j 32 -c' % ( 102 subprocess.check_call( 104 subprocess.check_call( 106 subprocess.check_call( 131 subprocess.check_call( 134 subprocess.check_call('git cherry-pick FETCH_HEAD', shell=True) 142 subprocess.check_call('git add %s' % SK_USER_CONFIG_PATH, shell=True) 155 subprocess.check_call('git commit --amend -m "%s"' % new_commit_message, 192 subprocess.check_call('git add %s' % config_file, shell=True) [all …]
|
/external/skqp/tools/android/ |
D | upload_to_android.py | 91 subprocess.check_call( 97 subprocess.check_call('%s sync %s tools/repohooks -j 32 -c' % ( 102 subprocess.check_call( 104 subprocess.check_call( 106 subprocess.check_call( 131 subprocess.check_call( 134 subprocess.check_call('git cherry-pick FETCH_HEAD', shell=True) 142 subprocess.check_call('git add %s' % SK_USER_CONFIG_PATH, shell=True) 155 subprocess.check_call('git commit --amend -m "%s"' % new_commit_message, 192 subprocess.check_call('git add %s' % config_file, shell=True) [all …]
|
/external/libcxx/test/std/utilities/function.objects/func.not_fn/ |
D | not_fn.pass.cpp | 174 static bool check_call(CallType type) { in check_call() function 475 assert(Fn::check_call<>(CT_NonConst | CT_LValue)); in call_operator_forwarding_test() 477 assert(Fn::check_call<>(CT_NonConst | CT_RValue)); in call_operator_forwarding_test() 479 assert(Fn::check_call<>(CT_Const | CT_LValue)); in call_operator_forwarding_test() 481 assert(Fn::check_call<>(CT_Const | CT_RValue)); in call_operator_forwarding_test() 487 assert(Fn::check_call<int&>(CT_NonConst | CT_LValue)); in call_operator_forwarding_test() 489 assert(Fn::check_call<const int&>(CT_NonConst | CT_LValue)); in call_operator_forwarding_test() 491 assert(Fn::check_call<int&&>(CT_NonConst | CT_LValue)); in call_operator_forwarding_test() 493 assert(Fn::check_call<const int&&>(CT_NonConst | CT_LValue)); in call_operator_forwarding_test() 495 assert(Fn::check_call<int&&>(CT_NonConst | CT_LValue)); in call_operator_forwarding_test() [all …]
|
/external/toolchain-utils/android_bench_suite/ |
D | apply_patches.py | 33 subprocess.check_call(['git', '-C', skia_dir, 'apply', skia_patch]) 51 subprocess.check_call(['git', '-C', autotest_dir, 'apply', autotest_patch]) 52 subprocess.check_call(['cp', '-rf', 'dex2oat_input', dex2oat_dir]) 53 subprocess.check_call(['cp', '-rf', 'panorama_input', panorama_dir]) 67 subprocess.check_call(['git', '-C', panorama_dir, 'apply', panorama_patch]) 78 subprocess.check_call([ 86 subprocess.check_call(['git', '-C', synthmark_dir, 89 subprocess.check_call(['mv', '-f', synthmark_dir, config.android_home]) 90 subprocess.check_call(['rm', '-rf', 'devrel'])
|
/external/grpc-grpc/tools/profiling/bloat/ |
D | bloat_diff.py | 49 subprocess.check_call('make -j%d' % args.jobs, shell=True, cwd='.') 60 subprocess.check_call(['git', 'checkout', args.diff_base]) 61 subprocess.check_call(['git', 'submodule', 'update']) 66 subprocess.check_call(['make', 'clean']) 69 subprocess.check_call(['git', 'checkout', where_am_i]) 70 subprocess.check_call(['git', 'submodule', 'update']) 72 subprocess.check_call(
|
/external/skqp/tools/calmbench/ |
D | calmbench.py | 136 subprocess.check_call(command, cwd=args.skiadir) 141 subprocess.check_call( 143 subprocess.check_call( 150 subprocess.check_call(['git', 'reset', 'HEAD^', '--soft']) 151 subprocess.check_call(['git', 'stash']) 153 subprocess.check_call(['gclient', 'sync'], cwd=args.skiadir) 154 subprocess.check_call( 156 subprocess.check_call( 159 subprocess.check_call(['git', 'stash', 'pop'], cwd=args.skiadir) 175 subprocess.check_call(['cp', orig_ab_name, temp_ab_name])
|
/external/skia/tools/calmbench/ |
D | calmbench.py | 136 subprocess.check_call(command, cwd=args.skiadir) 141 subprocess.check_call( 143 subprocess.check_call( 150 subprocess.check_call(['git', 'reset', 'HEAD^', '--soft']) 151 subprocess.check_call(['git', 'stash']) 153 subprocess.check_call(['gclient', 'sync'], cwd=args.skiadir) 154 subprocess.check_call( 156 subprocess.check_call( 159 subprocess.check_call(['git', 'stash', 'pop'], cwd=args.skiadir) 175 subprocess.check_call(['cp', orig_ab_name, temp_ab_name])
|
/external/skia/infra/bots/assets/gcloud_linux/ |
D | create.py | 28 subprocess.check_call(['curl', GCLOUD_URL, '-o', GCLOUD_ARCHIVE]) 31 subprocess.check_call(['tar', '-xzf', GCLOUD_ARCHIVE, 40 subprocess.check_call([gcloud_exe, 'components', 43 subprocess.check_call([gcloud_exe, 'components', 46 subprocess.check_call([gcloud_exe, 'components', 49 subprocess.check_call([gcloud_exe, 'components','update', '--quiet'], env=env)
|
/external/skqp/infra/bots/assets/gcloud_linux/ |
D | create.py | 28 subprocess.check_call(['curl', GCLOUD_URL, '-o', GCLOUD_ARCHIVE]) 31 subprocess.check_call(['tar', '-xzf', GCLOUD_ARCHIVE, 40 subprocess.check_call([gcloud_exe, 'components', 43 subprocess.check_call([gcloud_exe, 'components', 46 subprocess.check_call([gcloud_exe, 'components', 49 subprocess.check_call([gcloud_exe, 'components','update', '--quiet'], env=env)
|
/external/grpc-grpc/tools/distrib/python/ |
D | docgen.py | 92 subprocess.check_call(**subprocess_arguments) 110 subprocess.check_call( 116 subprocess.check_call( 119 subprocess.check_call(['git', 'fetch', 'upstream'], cwd=repo_dir) 120 subprocess.check_call( 128 subprocess.check_call(['git', 'add', '--all'], cwd=repo_dir) 129 subprocess.check_call( 132 subprocess.check_call(
|
/external/skia/tools/rebaseline/ |
D | toggle_legacy_flag.py | 54 subprocess.check_call(['git', 'stash', 'pop']) 58 subprocess.check_call(['git', 'pull']) 59 subprocess.check_call(['gclient', 'sync']); 64 subprocess.check_call(['git', 'checkout', '-b', 'legacyflag_%d' % random]) 92 subprocess.check_call('git commit -a -m "%s"' % message, shell=True) 93 subprocess.check_call('git cl upload -m "%s" -f' % message, 96 subprocess.check_call(['git', 'checkout', 'master']) 97 subprocess.check_call(['git', 'branch', '-D', 'legacyflag_%d' % random])
|
/external/grpc-grpc/tools/profiling/ios_bin/ |
D | binary_size.py | 78 subprocess.check_call(['make', 'clean']) 82 subprocess.check_call( 101 subprocess.check_call(['git', 'checkout', '--', '.']) 102 subprocess.check_call(['git', 'checkout', args.diff_base]) 103 subprocess.check_call(['git', 'submodule', 'update']) 108 subprocess.check_call(['git', 'checkout', '--', '.']) 109 subprocess.check_call(['git', 'checkout', where_am_i]) 110 subprocess.check_call(['git', 'submodule', 'update'])
|
/external/python/cpython2/Lib/test/ |
D | make_ssl_certs.py | 113 check_call(['openssl'] + args) 118 check_call(['openssl'] + args) 152 check_call(['openssl'] + args) 157 check_call(['openssl'] + args) 159 check_call(['openssl'] + args) 169 …check_call(['openssl','rsa','-in','ssl_key.pem','-out','ssl_key.passwd.pem','-des3','-passout','pa… 170 …check_call(['openssl','rsa','-in','ssl_key.pem','-out','keycert.passwd.pem','-des3','-passout','pa… 217 check_call(['openssl','x509','-in','keycert.pem','-dates','-serial','-noout'])
|
/external/skqp/tools/rebaseline/ |
D | toggle_legacy_flag.py | 54 subprocess.check_call(['git', 'stash', 'pop']) 58 subprocess.check_call(['git', 'pull']) 59 subprocess.check_call(['gclient', 'sync']); 64 subprocess.check_call(['git', 'checkout', '-b', 'legacyflag_%d' % random]) 92 subprocess.check_call('git commit -a -m "%s"' % message, shell=True) 93 subprocess.check_call('git cl upload -m "%s" -f' % message, 96 subprocess.check_call(['git', 'checkout', 'master']) 97 subprocess.check_call(['git', 'branch', '-D', 'legacyflag_%d' % random])
|
/external/python/setuptools/setuptools/tests/ |
D | test_namespaces.py | 40 subprocess.check_call(install_cmd) 50 subprocess.check_call(install_cmd) 56 subprocess.check_call(try_import) 75 subprocess.check_call(install_cmd) 82 subprocess.check_call(try_import) 102 subprocess.check_call(install_cmd) 111 subprocess.check_call(pkg_resources_imp, cwd=str(pkg_A))
|
/external/grpc-grpc/tools/profiling/microbenchmarks/bm_diff/ |
D | bm_build.py | 63 subprocess.check_call(['git', 'submodule', 'update']) 65 subprocess.check_call(_make_cmd('opt', benchmarks, jobs)) 67 subprocess.check_call(_make_cmd('counters', benchmarks, jobs)) 69 subprocess.check_call(['make', 'clean']) 70 subprocess.check_call(_make_cmd('opt', benchmarks, jobs)) 72 subprocess.check_call(_make_cmd('counters', benchmarks, jobs))
|
/external/grpc-grpc/tools/profiling/qps/ |
D | qps_diff.py | 70 subprocess.check_call(['git', 'submodule', 'update']) 72 subprocess.check_call(_make_cmd(jobs)) 74 subprocess.check_call(['make', 'clean']) 75 subprocess.check_call(_make_cmd(jobs)) 90 subprocess.check_call(_run_cmd(name, scenarios[sn], fname)) 150 subprocess.check_call(['git', 'checkout', args.diff_base]) 154 subprocess.check_call(['git', 'checkout', where_am_i]) 155 subprocess.check_call(['git', 'submodule', 'update'])
|
/external/python/cpython3/Lib/test/ |
D | make_ssl_certs.py | 134 check_call(['openssl'] + args) 146 check_call(['openssl'] + args) 180 check_call(['openssl'] + args) 185 check_call(['openssl'] + args) 187 check_call(['openssl'] + args) 190 check_call([ 209 …check_call(['openssl','rsa','-in','ssl_key.pem','-out','ssl_key.passwd.pem','-des3','-passout','pa… 210 …check_call(['openssl','rsa','-in','ssl_key.pem','-out','keycert.passwd.pem','-des3','-passout','pa…
|
/external/skqp/infra/bots/assets/opencl_intel_neo_linux/ |
D | create.py | 31 subprocess.check_call(apt_get_cmd) 43 subprocess.check_call(['git', 'clone', '--depth', '1', '--branch', branch, 49 subprocess.check_call(['cmake', '-DBUILD_TYPE=Release', 52 subprocess.check_call(['make', '-j%d' % multiprocessing.cpu_count(), 57 subprocess.check_call(['dpkg-deb', '--extract',
|
/external/skia/infra/bots/assets/opencl_intel_neo_linux/ |
D | create.py | 31 subprocess.check_call(apt_get_cmd) 43 subprocess.check_call(['git', 'clone', '--depth', '1', '--branch', branch, 49 subprocess.check_call(['cmake', '-DBUILD_TYPE=Release', 52 subprocess.check_call(['make', '-j%d' % multiprocessing.cpu_count(), 57 subprocess.check_call(['dpkg-deb', '--extract',
|