HomeSort by relevance Sort by last modified time
    Searched refs:check_call (Results 1 - 25 of 195) sorted by null

1 2 3 4 5 6 7 8

  /external/skia/infra/bots/assets/clang_linux/
create.py 23 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(["cp", libstdcpp.strip(), target_dir + "/lib"]
    [all...]
  /external/fmtlib/support/
appveyor-build.py 5 from subprocess import check_call
31 check_call(cmake_command)
32 check_call(build_command)
33 check_call(test_command)
travis-build.py 6 from subprocess import call, check_call, check_output, 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(['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(['git', 'config', '--global', 'user.email', 'viz@ampl.com']
    [all...]
  /external/skia/infra/bots/assets/android_ndk_darwin/
create.py 24 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"])
create_and_upload.py 31 subprocess.check_call(['python', create_script, '-t', cwd])
35 subprocess.check_call(cmd)
  /external/skia/infra/bots/assets/android_ndk_linux/
create.py 24 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"])
create_and_upload.py 31 subprocess.check_call(['python', create_script, '-t', cwd])
35 subprocess.check_call(cmd)
  /external/skia/infra/bots/
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])
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])
79 subprocess.check_call(upload_cmd)
91 subprocess.check_call(['git', 'checkout', 'master']
    [all...]
upload_skps.py 33 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([
update_meta_config.py 67 subprocess.check_call(['git', 'fetch', skia_repo, 'refs/meta/config:cfg'])
68 subprocess.check_call(['git', 'checkout', 'cfg'])
98 subprocess.check_call(['git', 'add', 'buildbucket.config'])
100 subprocess.check_call(
106 subprocess.check_call(['git', 'push', skia_repo, 'cfg:refs/meta/config'])
  /external/skia/infra/bots/assets/protoc/
create.py 23 subprocess.check_call(['curl', '-L', ZIP_URL, '-o', local_zip])
24 subprocess.check_call(['unzip', local_zip, '-d', target_dir])
  /external/libcxx/test/std/utilities/variant/variant.visit/
visit.pass.cpp 71 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<long &, std::string &>(CT_NonConst | CT_LValue)))
    [all...]
  /external/skia/infra/bots/assets/android_ndk_windows/
create.py 24 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"])
create_and_upload.py 31 subprocess.check_call(['python', create_script, '-t', cwd])
35 subprocess.check_call(cmd)
  /external/autotest/client/site_tests/security_Minijail0/src/
mountns-enter.py 15 ret = subprocess.check_call(["mount", "tmpfs", tmpdir, "-t", "tmpfs"])
25 subprocess.check_call("umount %s" % tmpdir, shell=True)
  /external/skia/gn/
compile_processors.py 19 subprocess.check_call("clang-format --sort-includes=false -i \"" +
22 subprocess.check_call("clang-format --sort-includes=false -i \"" +
push_to_android.py 19 subprocess.check_call(['adb'] + restrict + ['shell', 'chmod', '+x', device])
  /external/skia/src/jumper/
build_stages.py 38 subprocess.check_call(clang + cflags + sse2 +
41 subprocess.check_call(clang + cflags + sse2 + win +
44 subprocess.check_call(clang + cflags + sse2 + x86 +
47 subprocess.check_call(clang + cflags + sse2 + win + x86 +
52 subprocess.check_call(clang + cflags + ssse3 +
55 subprocess.check_call(clang + cflags + ssse3 + win +
60 subprocess.check_call(clang + cflags + sse41 +
63 subprocess.check_call(clang + cflags + sse41 + win +
68 subprocess.check_call(clang + cflags + avx +
71 subprocess.check_call(clang + cflags + avx + win
    [all...]
  /external/v8/tools/gcmole/
download_gcmole_tools.py 14 subprocess.check_call([
  /external/v8/tools/jsfunfuzz/
download_jsfunfuzz.py 14 subprocess.check_call([
  /external/fmtlib/doc/
build.py 6 from subprocess import check_call, check_output, CalledProcessError, Popen, PIPE
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/
platform_DBusMachineIdRotation.py 41 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/python/cpython2/Lib/test/
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','pass:somepass'])
170 check_call(['openssl','rsa','-in','ssl_key.pem','-out','keycert.passwd.pem','-des3','-passout','pass:somepass'])
217 check_call(['openssl','x509','-in','keycert.pem','-dates','-serial','-noout'])
  /external/skia/infra/bots/assets/android_sdk/
create_and_upload.py 35 subprocess.check_call(cmd)
40 subprocess.check_call(cmd)
  /external/skia/infra/bots/assets/armhf_sysroot/
create_and_upload.py 35 subprocess.check_call(['python', create_script, '-t', cwd])
39 subprocess.check_call(cmd)

Completed in 1394 milliseconds

1 2 3 4 5 6 7 8