Searched refs:check_call (Results 1 - 25 of 109) sorted by relevance

12345

/external/skia/infra/bots/assets/clang_linux/
H A Dcreate.py23 subprocess.check_call(["git", "clone", "-b", BRANCH, REPO + "llvm"])
25 subprocess.check_call(["git", "clone", "-b", BRANCH, REPO + "clang"])
26 subprocess.check_call(["git", "clone", "-b", BRANCH, REPO + "lld"])
28 subprocess.check_call(["git", "clone", "-b", BRANCH, REPO + "compiler-rt"])
29 subprocess.check_call(["git", "clone", "-b", BRANCH, REPO + "libcxx"])
30 subprocess.check_call(["git", "clone", "-b", BRANCH, REPO + "libcxxabi"])
34 subprocess.check_call(["cmake", "..", "-G", "Ninja",
39 subprocess.check_call(["ninja", "install"])
42 subprocess.check_call(["cp", "bin/llvm-symbolizer", target_dir + "/bin"])
45 subprocess.check_call(["c
[all...]
H A Dcreate_and_upload.py31 subprocess.check_call(['python', create_script, '-t', cwd])
35 subprocess.check_call(cmd)
/external/fmtlib/support/
H A Dappveyor-build.py5 from subprocess import check_call namespace
31 check_call(cmake_command)
32 check_call(build_command)
33 check_call(test_command)
H A Dtravis-build.py6 from subprocess import call, check_call, check_output, Popen, PIPE, STDOUT namespace
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(['npm', 'install', '-g', 'less', '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(['gi
[all...]
/external/skia/infra/bots/assets/android_ndk_darwin/
H A Dcreate.py24 subprocess.check_call(["curl", NDK_URL, "-o", "ndk.zip"])
25 subprocess.check_call(["unzip", "ndk.zip", "-d", target_dir])
28 subprocess.check_call(["rm", "ndk.zip"])
H A Dcreate_and_upload.py31 subprocess.check_call(['python', create_script, '-t', cwd])
35 subprocess.check_call(cmd)
/external/skia/infra/bots/assets/android_ndk_linux/
H A Dcreate.py24 subprocess.check_call(["curl", NDK_URL, "-o", "ndk.zip"])
25 subprocess.check_call(["unzip", "ndk.zip", "-d", target_dir])
28 subprocess.check_call(["rm", "ndk.zip"])
H A Dcreate_and_upload.py31 subprocess.check_call(['python', create_script, '-t', cwd])
35 subprocess.check_call(cmd)
/external/skia/infra/bots/assets/android_ndk_windows/
H A Dcreate.py24 subprocess.check_call(["curl", NDK_URL, "-o", "ndk.zip"])
25 subprocess.check_call(["unzip", "ndk.zip", "-d", target_dir])
28 subprocess.check_call(["rm", "ndk.zip"])
H A Dcreate_and_upload.py31 subprocess.check_call(['python', create_script, '-t', cwd])
35 subprocess.check_call(cmd)
/external/skia/infra/bots/
H A Dgit_utils.py31 subprocess.check_call(['git', 'config', '--local', k, v])
36 subprocess.check_call(
39 subprocess.check_call(['git', 'config', '--local', '--unset', k])
59 subprocess.check_call(['git', 'reset', '--hard', 'HEAD'])
60 subprocess.check_call(['git', 'checkout', 'master'])
62 subprocess.check_call(['git', 'branch', '-D', self._branch_name])
63 subprocess.check_call(['git', 'checkout', '-b', self._branch_name,
69 subprocess.check_call(['git', 'commit', '-a', '-m', self._commit_msg])
77 subprocess.check_call(upload_cmd)
89 subprocess.check_call(['gi
[all...]
H A Dupload_skps.py33 subprocess.check_call(['go', 'run', gen_tasks, '--test'])
55 subprocess.check_call(['python', upload_script, '-t', target_dir])
56 subprocess.check_call(['go', 'run', gen_tasks])
57 subprocess.check_call([
/external/skia/src/jumper/
H A Dbuild_stages.py25 subprocess.check_call(clang + cflags + sse2 +
28 subprocess.check_call(clang + cflags + sse2 + ['-DWIN'] +
33 subprocess.check_call(clang + cflags + sse41 +
36 subprocess.check_call(clang + cflags + sse41 + ['-DWIN'] +
41 subprocess.check_call(clang + cflags + avx +
44 subprocess.check_call(clang + cflags + avx + ['-DWIN'] +
49 subprocess.check_call(clang + cflags + hsw +
52 subprocess.check_call(clang + cflags + hsw + ['-DWIN'] +
60 subprocess.check_call(clang + cflags + aarch64 +
70 subprocess.check_call(clan
[all...]
/external/libcxx/test/std/utilities/variant/variant.visit/
H A Dvisit.pass.cpp71 template <class... Args> static bool check_call(CallType type) { function in struct:ForwardingCallObject
94 assert(Fn::check_call<int &>(CT_NonConst | CT_LValue));
96 assert(Fn::check_call<int &>(CT_Const | CT_LValue));
98 assert(Fn::check_call<int &>(CT_NonConst | CT_RValue));
100 assert(Fn::check_call<int &>(CT_Const | CT_RValue));
106 assert(Fn::check_call<long &>(CT_NonConst | CT_LValue));
108 assert(Fn::check_call<long &>(CT_Const | CT_LValue));
110 assert(Fn::check_call<long &>(CT_NonConst | CT_RValue));
112 assert(Fn::check_call<long &>(CT_Const | CT_RValue));
120 assert((Fn::check_call<lon
[all...]
/external/autotest/client/site_tests/security_Minijail0/src/
H A Dmountns-enter.py15 ret = subprocess.check_call(["mount", "tmpfs", tmpdir, "-t", "tmpfs"])
25 subprocess.check_call("umount %s" % tmpdir, shell=True)
/external/skia/infra/bots/assets/go/
H A Dcreate_and_upload.py31 subprocess.check_call(['python', create_script, '-t', cwd])
35 subprocess.check_call(cmd)
/external/skia/infra/bots/assets/scripts/
H A Dcreate_and_upload.py31 subprocess.check_call(['python', create_script, '-t', cwd])
35 subprocess.check_call(cmd)
/external/skia/infra/bots/assets/skimage/
H A Dcreate_and_upload.py31 subprocess.check_call(['python', create_script, '-t', cwd])
35 subprocess.check_call(cmd)
/external/skia/gn/
H A Dpush_to_android.py19 subprocess.check_call(['adb'] + restrict + ['shell', 'chmod', '+x', device])
/external/v8/tools/gcmole/
H A Ddownload_gcmole_tools.py14 subprocess.check_call([
/external/v8/tools/jsfunfuzz/
H A Ddownload_jsfunfuzz.py14 subprocess.check_call([
/external/fmtlib/doc/
H A Dbuild.py6 from subprocess import check_call, check_output, CalledProcessError, Popen, PIPE namespace
24 check_call(['pip', 'install', package])
29 check_call(['virtualenv', dirname])
43 check_call(['pip', 'install', '--upgrade', 'pip'])
50 check_call(['pip', 'install', '--upgrade', 'distribute'])
96 check_call(['sphinx-build',
102 check_call(['lessc', '--clean-css',
/external/autotest/client/site_tests/platform_DBusMachineIdRotation/
H A Dplatform_DBusMachineIdRotation.py41 subprocess.check_call(['cros-machine-id-regen', '-r', 'network',
51 subprocess.check_call(['cros-machine-id-regen', '-r', 'network',
60 subprocess.check_call(['cros-machine-id-regen', '-r', 'periodic',
70 subprocess.check_call(['cros-machine-id-regen', '-r', 'periodic',
85 subprocess.check_call(['cros-machine-id-regen', '-r', 'network',
/external/skia/infra/bots/assets/android_sdk/
H A Dcreate_and_upload.py35 subprocess.check_call(cmd)
40 subprocess.check_call(cmd)
/external/skia/infra/bots/assets/linux_vulkan_intel_driver_debug/
H A Dcreate_and_upload.py36 subprocess.check_call(['python', create_script,
43 subprocess.check_call(cmd)

Completed in 712 milliseconds

12345