/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/ |
D | git_utils.py | 33 subprocess.check_call(['git', 'config', '--local', k, v]) 38 subprocess.check_call( 41 subprocess.check_call(['git', 'config', '--local', '--unset', k]) 62 subprocess.check_call(['git', 'reset', '--hard', 'HEAD']) 63 subprocess.check_call(['git', 'checkout', 'main']) 66 subprocess.check_call(['git', 'branch', '-D', self._branch_name]) 67 subprocess.check_call(['git', 'checkout', '-b', self._branch_name, 73 subprocess.check_call(['git', 'commit', '-a', '-m', self._commit_msg]) 85 subprocess.check_call(upload_cmd) 98 subprocess.check_call(['git', 'checkout', 'main']) [all …]
|
/external/cronet/buildtools/third_party/libc++/trunk/test/std/utilities/variant/variant.visit/ |
D | visit.pass.cpp | 33 assert(Fn::check_call<>(CT_NonConst | CT_LValue)); in test_call_operator_forwarding() 35 assert(Fn::check_call<>(CT_Const | CT_LValue)); in test_call_operator_forwarding() 37 assert(Fn::check_call<>(CT_NonConst | CT_RValue)); in test_call_operator_forwarding() 39 assert(Fn::check_call<>(CT_Const | CT_RValue)); in test_call_operator_forwarding() 45 assert(Fn::check_call<int &>(CT_NonConst | CT_LValue)); in test_call_operator_forwarding() 47 assert(Fn::check_call<int &>(CT_Const | CT_LValue)); in test_call_operator_forwarding() 49 assert(Fn::check_call<int &>(CT_NonConst | CT_RValue)); in test_call_operator_forwarding() 51 assert(Fn::check_call<int &>(CT_Const | CT_RValue)); in test_call_operator_forwarding() 57 assert(Fn::check_call<long &>(CT_NonConst | CT_LValue)); in test_call_operator_forwarding() 59 assert(Fn::check_call<long &>(CT_Const | CT_LValue)); in test_call_operator_forwarding() [all …]
|
D | visit_return_type.pass.cpp | 34 assert(Fn::check_call<>(CT_NonConst | CT_LValue)); in test_call_operator_forwarding() 36 assert(Fn::check_call<>(CT_Const | CT_LValue)); in test_call_operator_forwarding() 38 assert(Fn::check_call<>(CT_NonConst | CT_RValue)); in test_call_operator_forwarding() 40 assert(Fn::check_call<>(CT_Const | CT_RValue)); in test_call_operator_forwarding() 46 assert(Fn::check_call<int &>(CT_NonConst | CT_LValue)); in test_call_operator_forwarding() 48 assert(Fn::check_call<int &>(CT_Const | CT_LValue)); in test_call_operator_forwarding() 50 assert(Fn::check_call<int &>(CT_NonConst | CT_RValue)); in test_call_operator_forwarding() 52 assert(Fn::check_call<int &>(CT_Const | CT_RValue)); in test_call_operator_forwarding() 58 assert(Fn::check_call<long &>(CT_NonConst | CT_LValue)); in test_call_operator_forwarding() 60 assert(Fn::check_call<long &>(CT_Const | CT_LValue)); in test_call_operator_forwarding() [all …]
|
/external/cronet/buildtools/third_party/libc++/trunk/test/std/utilities/function.objects/func.not_fn/ |
D | not_fn.pass.cpp | 304 assert(st.check_call<>(CT_NonConst | CT_LValue)); in call_operator_forwarding_test() 306 assert(st.check_call<>(CT_NonConst | CT_RValue)); in call_operator_forwarding_test() 308 assert(st.check_call<>(CT_Const | CT_LValue)); in call_operator_forwarding_test() 310 assert(st.check_call<>(CT_Const | CT_RValue)); in call_operator_forwarding_test() 316 assert(st.check_call<int&>(CT_NonConst | CT_LValue)); in call_operator_forwarding_test() 318 assert(st.check_call<const int&>(CT_NonConst | CT_LValue)); in call_operator_forwarding_test() 320 assert(st.check_call<int&&>(CT_NonConst | CT_LValue)); in call_operator_forwarding_test() 322 assert(st.check_call<const int&&>(CT_NonConst | CT_LValue)); in call_operator_forwarding_test() 324 assert(st.check_call<int&&>(CT_NonConst | CT_LValue)); in call_operator_forwarding_test() 330 assert(st.check_call<int&>(CT_NonConst | CT_RValue)); in call_operator_forwarding_test() [all …]
|
/external/skia/infra/bots/assets/gcloud_linux/ |
D | create.py | 30 subprocess.check_call(['curl', GCLOUD_URL, '-o', GCLOUD_ARCHIVE]) 33 subprocess.check_call(['tar', '-xzf', GCLOUD_ARCHIVE, 42 subprocess.check_call([gcloud_exe, 'components', 45 subprocess.check_call([gcloud_exe, 'components', 48 subprocess.check_call([gcloud_exe, 'components', 51 subprocess.check_call([gcloud_exe, 'components', 57 subprocess.check_call(['chmod', '+x', os.path.join(target_dir, fs_jar)]) 58 subprocess.check_call([gcloud_exe, 'components','update', '--quiet'], env=env)
|
/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/flatbuffers/tests/ |
D | TypeScriptTest.py | 42 def check_call(args, cwd=tests_path): function 43 subprocess.check_call(args, cwd=str(cwd), shell=is_windows) 55 check_call(cmd) 60 check_call(["npm", "install", "--silent"]) 116 check_call(["tsc"]) 121 check_call(NODE_CMD + ["JavaScriptTest"]) 122 check_call(NODE_CMD + ["JavaScriptUnionVectorTest"]) 123 check_call(NODE_CMD + ["JavaScriptFlexBuffersTest"])
|
/external/python/setuptools/setuptools/tests/ |
D | test_namespaces.py | 37 subprocess.check_call(install_cmd) 47 subprocess.check_call(install_cmd) 53 subprocess.check_call(try_import) 71 subprocess.check_call(install_cmd) 78 subprocess.check_call(try_import) 96 subprocess.check_call(install_cmd) 105 subprocess.check_call(pkg_resources_imp, cwd=str(pkg_A)) 125 subprocess.check_call(install_cmd) 134 subprocess.check_call(pkg_resources_imp, cwd=str(pkg_B))
|
/external/cronet/third_party/abseil-cpp/ |
D | roll_abseil.py | 17 subprocess.check_call(['git', 'clone', ABSL_URI], 22 subprocess.check_call(['git', 'checkout', 'main'], cwd=chromium_dir) 23 subprocess.check_call(['git', 'pull', '--rebase'], cwd=chromium_dir) 24 subprocess.check_call(['gclient', 'sync'], cwd=chromium_dir) 70 subprocess.check_call(params, cwd=chromium_dir) 76 …subprocess.check_call(['patch', '--strip', '1', '-i', os.path.join(abseil_in_chromium_dir, 'patche… 92 subprocess.check_call(['git', 'add', 'third_party/abseil-cpp'], cwd=chromium_dir) 93 subprocess.check_call(['git', 'commit', '-m', desc], cwd=chromium_dir) 96 subprocess.check_call(['git', 'cl', 'upload', '-m', desc, '--bypass-hooks'], cwd=chromium_dir) 106 subprocess.check_call(['git', 'checkout', '-b', branch_name], cwd=chromium_dir)
|
/external/angle/third_party/abseil-cpp/ |
D | roll_abseil.py | 17 subprocess.check_call(['git', 'clone', ABSL_URI], 22 subprocess.check_call(['git', 'checkout', 'main'], cwd=chromium_dir) 23 subprocess.check_call(['git', 'pull', '--rebase'], cwd=chromium_dir) 24 subprocess.check_call(['gclient', 'sync'], cwd=chromium_dir) 70 subprocess.check_call(params, cwd=chromium_dir) 76 …subprocess.check_call(['patch', '--strip', '1', '-i', os.path.join(abseil_in_chromium_dir, 'patche… 92 subprocess.check_call(['git', 'add', 'third_party/abseil-cpp'], cwd=chromium_dir) 93 subprocess.check_call(['git', 'commit', '-m', desc], cwd=chromium_dir) 96 subprocess.check_call(['git', 'cl', 'upload', '-m', desc, '--bypass-hooks'], cwd=chromium_dir) 106 subprocess.check_call(['git', 'checkout', '-b', branch_name], cwd=chromium_dir)
|
/external/webrtc/third_party/abseil-cpp/ |
D | roll_abseil.py | 17 subprocess.check_call(['git', 'clone', ABSL_URI], 22 subprocess.check_call(['git', 'checkout', 'main'], cwd=chromium_dir) 23 subprocess.check_call(['git', 'pull', '--rebase'], cwd=chromium_dir) 24 subprocess.check_call(['gclient', 'sync'], cwd=chromium_dir) 70 subprocess.check_call(params, cwd=chromium_dir) 76 …subprocess.check_call(['patch', '--strip', '1', '-i', os.path.join(abseil_in_chromium_dir, 'patche… 92 subprocess.check_call(['git', 'add', 'third_party/abseil-cpp'], cwd=chromium_dir) 93 subprocess.check_call(['git', 'commit', '-m', desc], cwd=chromium_dir) 96 subprocess.check_call(['git', 'cl', 'upload', '-m', desc, '--bypass-hooks'], cwd=chromium_dir) 106 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/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/cronet/third_party/libxml/chromium/ |
D | roll.py | 256 subprocess.check_call(command, shell=(os.name == 'nt')) 289 subprocess.check_call(['sed', '-i', '-e', program, input_filename]) 330 subprocess.check_call( 337 subprocess.check_call( 344 subprocess.check_call(['../src/autogen.sh'] + XML_CONFIGURE_OPTIONS) 345 subprocess.check_call(['make', 'dist-all']) 371 subprocess.check_call( 383 subprocess.check_call( 399 subprocess.check_call( 424 subprocess.check_call(['autoreconf', '-i', '../src']) [all …]
|
/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/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/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/rust/crates/grpcio-sys/grpc/tools/profiling/ios_bin/ |
D | binary_size.py | 77 subprocess.check_call(['make', 'clean']) 80 subprocess.check_call( 99 subprocess.check_call(['git', 'checkout', '--', '.']) 100 subprocess.check_call(['git', 'checkout', args.diff_base]) 101 subprocess.check_call(['git', 'submodule', 'update', '--force']) 106 subprocess.check_call(['git', 'checkout', '--', '.']) 107 subprocess.check_call(['git', 'checkout', where_am_i]) 108 subprocess.check_call(['git', 'submodule', 'update', '--force'])
|
/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/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/mbedtls/tests/scripts/ |
D | test_psa_compliance.py | 57 subprocess.check_call(['make', '-C', 'library', 'libmbedcrypto.a']) 65 subprocess.check_call(['git', 'init']) 66 subprocess.check_call(['git', 'fetch', PSA_ARCH_TESTS_REPO, PSA_ARCH_TESTS_REF]) 67 subprocess.check_call(['git', 'checkout', 'FETCH_HEAD']) 78 subprocess.check_call([ 87 subprocess.check_call(['cmake', '--build', '.'])
|