/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/fmtlib/support/ |
D | travis-build.py | 6 from subprocess import call, check_call, Popen, PIPE, STDOUT 27 check_call('curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key ' + 29 check_call('echo "deb https://deb.nodesource.com/node_0.10 precise main" ' + 31 check_call(['sudo', 'apt-get', 'update']) 32 check_call(['sudo', 'apt-get', 'install', 'python-virtualenv', 'nodejs']) 33 check_call(['sudo', 'npm', 'install', '-g', 'less@2.6.1', 'less-plugin-clean-css']) 37 check_call(['sudo', 'dpkg', '-i', deb_file]) 59 check_call(['git', 'clone', git_url + 'fmtlib/{}.git'.format(repo)]) 65 check_call(['git', 'config', '--global', 'user.name', 'amplbot']) 66 check_call(['git', 'config', '--global', 'user.email', 'viz@ampl.com']) [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/skia/infra/bots/assets/clang_linux/ |
D | create.py | 25 subprocess.check_call(["git", "clone", "--depth", "1", "-b", BRANCH, 30 subprocess.check_call(["cmake", "../llvm", "-G", "Ninja", 37 subprocess.check_call(["ninja", "install"]) 40 subprocess.check_call(["cp", "bin/llvm-symbolizer", target_dir + "/bin"]) 41 subprocess.check_call(["cp", "bin/llvm-profdata", target_dir + "/bin"]) 42 subprocess.check_call(["cp", "bin/llvm-cov", target_dir + "/bin"]) 45 subprocess.check_call(["cp", libstdcpp.strip(), target_dir + "/lib"]) 51 subprocess.check_call( 58 subprocess.check_call(["ninja", "cxx"]) 59 subprocess.check_call(["cp", "-r", "lib", target_dir + "/" + short])
|
/external/skia/infra/bots/ |
D | git_utils.py | 32 subprocess.check_call(['git', 'config', '--local', k, v]) 37 subprocess.check_call( 40 subprocess.check_call(['git', 'config', '--local', '--unset', k]) 61 subprocess.check_call(['git', 'reset', '--hard', 'HEAD']) 62 subprocess.check_call(['git', 'checkout', 'master']) 64 subprocess.check_call(['git', 'branch', '-D', self._branch_name]) 65 subprocess.check_call(['git', 'checkout', '-b', self._branch_name, 71 subprocess.check_call(['git', 'commit', '-a', '-m', self._commit_msg]) 83 subprocess.check_call(upload_cmd) 95 subprocess.check_call(['git', 'checkout', 'master']) [all …]
|
/external/llvm-project/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/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', 55 subprocess.check_call(['chmod', '+x', os.path.join(target_dir, fs_jar)]) 56 subprocess.check_call([gcloud_exe, 'components','update', '--quiet'], env=env)
|
/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/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/skia/tools/android/ |
D | upload_to_android.py | 93 subprocess.check_call( 99 subprocess.check_call('%s sync %s tools/repohooks -j 32 -c' % ( 104 subprocess.check_call( 106 subprocess.check_call( 108 subprocess.check_call( 133 subprocess.check_call( 136 subprocess.check_call('git cherry-pick FETCH_HEAD', shell=True) 144 subprocess.check_call('git add %s' % SK_USER_CONFIG_PATH, shell=True) 157 subprocess.check_call('git commit --amend -m "%s"' % new_commit_message, 194 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/llvm-project/libcxx/test/std/utilities/function.objects/func.not_fn/ |
D | not_fn.pass.cpp | 173 static bool check_call(CallType type) { in check_call() function 474 assert(Fn::check_call<>(CT_NonConst | CT_LValue)); in call_operator_forwarding_test() 476 assert(Fn::check_call<>(CT_NonConst | CT_RValue)); in call_operator_forwarding_test() 478 assert(Fn::check_call<>(CT_Const | CT_LValue)); in call_operator_forwarding_test() 480 assert(Fn::check_call<>(CT_Const | CT_RValue)); in call_operator_forwarding_test() 486 assert(Fn::check_call<int&>(CT_NonConst | CT_LValue)); in call_operator_forwarding_test() 488 assert(Fn::check_call<const int&>(CT_NonConst | CT_LValue)); in call_operator_forwarding_test() 490 assert(Fn::check_call<int&&>(CT_NonConst | CT_LValue)); in call_operator_forwarding_test() 492 assert(Fn::check_call<const int&&>(CT_NonConst | CT_LValue)); in call_operator_forwarding_test() 494 assert(Fn::check_call<int&&>(CT_NonConst | CT_LValue)); in call_operator_forwarding_test() [all …]
|
/external/angle/third_party/abseil-cpp/ |
D | roll_abseil.py | 19 subprocess.check_call(['git', 'clone', ABSL_URI], 24 subprocess.check_call(['git', 'checkout', 'main'], cwd=chromium_dir) 25 subprocess.check_call(['git', 'pull', '--rebase'], cwd=chromium_dir) 26 subprocess.check_call(['gclient', 'sync'], cwd=chromium_dir) 72 subprocess.check_call(params, cwd=chromium_dir) 78 …subprocess.check_call(['patch', '--strip', '1', '-i', os.path.join(abseil_in_chromium_dir, 'patche… 94 subprocess.check_call(['git', 'add', 'third_party/abseil-cpp'], cwd=chromium_dir) 95 subprocess.check_call(['git', 'commit', '-m', desc], cwd=chromium_dir) 98 subprocess.check_call(['git', 'cl', 'upload', '-m', desc, '--bypass-hooks'], cwd=chromium_dir) 108 subprocess.check_call(['git', 'checkout', '-b', branch_name], cwd=chromium_dir)
|
/external/rust/crates/grpcio-sys/grpc/tools/profiling/bloat/ |
D | bloat_diff.py | 51 subprocess.check_call('mkdir -p %s' % output_dir, shell=True, cwd='.') 52 subprocess.check_call( 56 subprocess.check_call('make -j%d' % args.jobs, shell=True, cwd=output_dir) 65 subprocess.check_call(['git', 'checkout', args.diff_base]) 66 subprocess.check_call(['git', 'submodule', 'update']) 71 subprocess.check_call(['git', 'checkout', where_am_i]) 72 subprocess.check_call(['git', 'submodule', 'update']) 74 subprocess.check_call('make -j%d' % args.jobs,
|
/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/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/skia/tools/calmbench/ |
D | calmbench.py | 138 subprocess.check_call(command, cwd=args.skiadir) 143 subprocess.check_call( 145 subprocess.check_call( 152 subprocess.check_call(['git', 'reset', 'HEAD^', '--soft']) 153 subprocess.check_call(['git', 'stash']) 155 subprocess.check_call(['gclient', 'sync'], cwd=args.skiadir) 156 subprocess.check_call( 158 subprocess.check_call( 161 subprocess.check_call(['git', 'stash', 'pop'], cwd=args.skiadir) 177 subprocess.check_call(['cp', orig_ab_name, temp_ab_name])
|
/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/infra/bots/assets/ccache_mac/ |
D | create.py | 27 subprocess.check_call(["curl", "-L", "-o", VERSION + ".tar.gz", 29 subprocess.check_call(["tar", "-xzf", VERSION + ".tar.gz"]) 32 subprocess.check_call(["./configure", "--disable-man", "--prefix=" + target_dir]) 33 subprocess.check_call(["make"]) 34 subprocess.check_call(["make" ,"install"])
|
/external/skia/infra/bots/assets/ccache_linux/ |
D | create.py | 27 subprocess.check_call(["wget", "-O", VERSION + ".tar.gz", 29 subprocess.check_call(["tar", "-xzf", VERSION + ".tar.gz"]) 32 subprocess.check_call(["./configure", "--disable-man", "--prefix=" + target_dir]) 33 subprocess.check_call(["make"]) 34 subprocess.check_call(["make" ,"install"])
|
/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/rust/crates/grpcio-sys/grpc/tools/distrib/python/ |
D | docgen.py | 63 subprocess.check_call(args=subprocess_arguments) 83 subprocess.check_call([ 91 subprocess.check_call(['git', 'checkout', '-b', doc_branch], cwd=repo_dir) 92 subprocess.check_call([ 103 subprocess.check_call(['git', 'add', '--all'], cwd=repo_dir) 104 subprocess.check_call( 107 subprocess.check_call(
|
/external/fmtlib/doc/ |
D | build.py | 6 from subprocess import check_call, check_output, CalledProcessError, Popen, PIPE 16 check_call(['pip', 'install', package]) 21 check_call(['virtualenv', dirname]) 35 check_call(['pip', 'install', '--upgrade', 'pip']) 42 check_call(['pip', 'install', '--upgrade', 'distribute']) 94 check_call(['sphinx-build', 100 check_call(['lessc', '--clean-css',
|
/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))
|