/external/skia/infra/bots/assets/clang_linux/ |
D | 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/ |
D | 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 …]
|
D | appveyor-build.py | 5 from subprocess import check_call 31 check_call(cmake_command) 32 check_call(build_command) 33 check_call(test_command)
|
/external/libcxx/test/std/utilities/variant/variant.visit/ |
D | visit.pass.cpp | 71 template <class... Args> static bool check_call(CallType type) { in check_call() function 94 assert(Fn::check_call<int &>(CT_NonConst | CT_LValue)); in test_call_operator_forwarding() 96 assert(Fn::check_call<int &>(CT_Const | CT_LValue)); in test_call_operator_forwarding() 98 assert(Fn::check_call<int &>(CT_NonConst | CT_RValue)); in test_call_operator_forwarding() 100 assert(Fn::check_call<int &>(CT_Const | CT_RValue)); in test_call_operator_forwarding() 106 assert(Fn::check_call<long &>(CT_NonConst | CT_LValue)); in test_call_operator_forwarding() 108 assert(Fn::check_call<long &>(CT_Const | CT_LValue)); in test_call_operator_forwarding() 110 assert(Fn::check_call<long &>(CT_NonConst | CT_RValue)); in test_call_operator_forwarding() 112 assert(Fn::check_call<long &>(CT_Const | CT_RValue)); in test_call_operator_forwarding() 120 assert((Fn::check_call<long &, std::string &>(CT_NonConst | CT_LValue))); in test_call_operator_forwarding() [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]) 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(['git', 'checkout', 'master']) [all …]
|
D | utils.py | 77 subprocess.check_call([GIT, 'clone', repo_url, dest_dir]) 102 subprocess.check_call([GIT, 'fetch', 'origin']) 104 subprocess.check_call([GIT, 'checkout', '-b', self._branch, 109 subprocess.check_call([GIT, 'reset', '--hard', 'HEAD']) 110 subprocess.check_call([GIT, 'checkout', self._orig_branch]) 112 subprocess.check_call([GIT, 'stash', 'pop']) 113 subprocess.check_call([GIT, 'branch', '-D', self._branch])
|
D | 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([
|
/external/skia/src/jumper/ |
D | build_stages.py | 25 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(clang + cflags + vfp4 +
|
/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 471 assert(Fn::check_call<>(CT_NonConst | CT_LValue)); in call_operator_forwarding_test() 473 assert(Fn::check_call<>(CT_NonConst | CT_RValue)); in call_operator_forwarding_test() 475 assert(Fn::check_call<>(CT_Const | CT_LValue)); in call_operator_forwarding_test() 477 assert(Fn::check_call<>(CT_Const | CT_RValue)); in call_operator_forwarding_test() 483 assert(Fn::check_call<int&>(CT_NonConst | CT_LValue)); in call_operator_forwarding_test() 485 assert(Fn::check_call<const int&>(CT_NonConst | CT_LValue)); 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() [all …]
|
/external/fmtlib/doc/ |
D | 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/ |
D | 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/skia/tools/ |
D | build_command_buffer.py | 96 subprocess.check_call(['git', 'fetch'], cwd=chrome_src_dir) 102 subprocess.check_call(['git', 'checkout', args.chrome_revision], 110 subprocess.check_call([gclient, 'sync', '--reset', '--force', 119 subprocess.check_call([gclient, 'runhooks'], cwd=chrome_src_dir) 134 subprocess.check_call([gn, 'gen', chrome_target_dir_rel, '--args='+gnargs], 141 subprocess.check_call(['ninja'] + shlex.split(args.extra_ninja_args) +
|
D | git-sync-deps | 131 subprocess.check_call( 157 subprocess.check_call( 160 subprocess.check_call([git, 'fetch', '--quiet'], cwd=directory) 162 subprocess.check_call([git, 'checkout', '--quiet', checkoutable], cwd=directory) 246 subprocess.check_call(
|
/external/skia/infra/bots/assets/android_ndk_darwin/ |
D | 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"])
|
/external/skia/infra/bots/assets/android_ndk_linux/ |
D | 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"])
|
/external/clang/ |
D | update-prebuilts.py | 124 subprocess.check_call( 133 subprocess.check_call(cmd) 142 subprocess.check_call( 153 subprocess.check_call(['git', 'add', install_subdir]) 169 subprocess.check_call(['git', 'commit', '-m', message])
|
/external/icu/tools/ |
D | updateicudata.py | 31 subprocess.check_call(['%s/runConfigureICU' % icu4c_dir, 'Linux']) 57 subprocess.check_call(['make']) 73 subprocess.check_call(['make', 'INCLUDE_UNI_CORE_DATA=1', '-j32']) 87 subprocess.check_call(['make', 'icu4j-data'])
|
D | update-tzdata.py | 103 subprocess.check_call(['gpg', '--trusted-key=ED97E90E62AA7E34', '--verify', 120 subprocess.check_call(zic_cmd) 125 subprocess.check_call(['javac', '-d', '.', 127 subprocess.check_call(['java', 'ZoneCompactor',
|
/external/skia/infra/bots/assets/ |
D | asset_utils.py | 76 subprocess.check_call( 162 subprocess.check_call(self._gsutil + ['cp', src, dst]) 206 subprocess.check_call(self._gsutil + ['ls', gs_path]) 210 subprocess.check_call(self._gsutil + ['rm', '-rf', gs_path]) 286 subprocess.check_call([utils.GIT, 'add', self.version_file]) 292 subprocess.check_call([ 294 subprocess.check_call([utils.GIT, 'cl', 'upload', '--bypass-hooks']) 312 subprocess.check_call([utils.GIT, 'add', dst]) 335 subprocess.check_call([utils.GIT, 'rm', '-rf', self._dir])
|
/external/skia/infra/bots/assets/android_ndk_windows/ |
D | 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"])
|
/external/clang/utils/analyzer/ |
D | SATestBuild.py | 55 from subprocess import check_call, check_output, CalledProcessError 221 check_call("chmod +x '%s'" % ScriptPath, cwd = Cwd, 225 check_call("'%s'" % ScriptPath, cwd = Cwd, stderr=PBuildLogFile, 264 check_call("patch -p1 < '%s'" % (PatchfilePath), 311 check_call(SBCommand, cwd = SBCwd, stderr=PBuildLogFile, 385 check_call(Command, cwd = Dir, stderr=LogFile, 410 check_call(RmCommand, shell=True) 426 check_call(RmCommand, shell=True) 603 check_call(RmCommand, shell=True) 622 check_call(Command, shell=True) [all …]
|
/external/autotest/client/site_tests/network_ModemManagerSMS/ |
D | network_ModemManagerSMS.py | 94 subprocess.check_call(["modprobe", "tun"]) 95 subprocess.check_call(["initctl", "stop", "modemmanager"]) 106 subprocess.check_call(["initctl", "start", "modemmanager"]) 107 subprocess.check_call(["rmmod", "tun"])
|
/external/skia/infra/bots/assets/win_toolchain/ |
D | create.py | 62 subprocess.check_call([utils.GCLIENT, 'sync']) 69 subprocess.check_call(['python', vs_toolchain_py, 'update'], env=env) 107 subprocess.check_call([utils.GCLIENT, 'config', REPO_CHROME, '--managed']) 108 subprocess.check_call([utils.GCLIENT, 'sync'])
|
/external/autotest/client/site_tests/security_Minijail0/src/ |
D | mountns-enter.py | 15 ret = subprocess.check_call(["mount", "tmpfs", tmpdir, "-t", "tmpfs"]) 25 subprocess.check_call("umount %s" % tmpdir, shell=True)
|
/external/skia/infra/bots/assets/skimage/ |
D | create_and_upload.py | 31 subprocess.check_call(['python', create_script, '-t', cwd]) 35 subprocess.check_call(cmd)
|