/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
configure-github-as-upstream | 33 import subprocess namespace 35 exit(subprocess.call(["git", "remote", "add", "upstream", "git://github.com/WebKit/webkit.git"]))
|
sync-master-with-upstream | 36 import subprocess namespace 39 if subprocess.call(args) != 0:
|
/external/chromium_org/tools/gyp/test/ios/app-bundle/TestApp/ |
check_no_signature.py | 4 import subprocess namespace 8 proc = subprocess.Popen(['codesign', '-v', p], 9 stderr=subprocess.STDOUT, stdout=subprocess.PIPE)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/subprocessdata/ |
sigchild_ignore.py | 1 import signal, subprocess, sys, time namespace 6 subprocess.Popen([sys.executable, '-c', 'print("albatross")']).wait() 8 p = subprocess.Popen([sys.executable, '-c', 'print("albatross")'])
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/subprocessdata/ |
sigchild_ignore.py | 1 import signal, subprocess, sys, time namespace 6 subprocess.Popen([sys.executable, '-c', 'print("albatross")']).wait() 8 p = subprocess.Popen([sys.executable, '-c', 'print("albatross")'])
|
/external/chromium_org/native_client_sdk/src/doc/ |
PRESUBMIT.py | 5 import subprocess namespace 17 subprocess.check_output(['make', 'SPHINXOPTS=-Wa'], 18 stderr=subprocess.STDOUT) 19 except subprocess.CalledProcessError as e:
|
/external/chromium_org/tools/gyp/test/mac/ |
gyptest-xctest.py | 19 import subprocess namespace 20 job = subprocess.Popen(['xcodebuild', '-version'], 21 stdout=subprocess.PIPE, 22 stderr=subprocess.STDOUT)
|
gyptest-postbuild-fail.py | 35 import subprocess namespace 36 job = subprocess.Popen(['xcodebuild', '-version'], 37 stdout=subprocess.PIPE, 38 stderr=subprocess.STDOUT)
|
/external/chromium/build/ |
extract_from_cab.py | 9 import subprocess namespace 19 level = subprocess.call(['expand', cab_path, '-F:' + archived_file, output_dir])
|
/external/clang/tools/clang-format/ |
clang-format.py | 22 import subprocess namespace 44 startupinfo = subprocess.STARTUPINFO() 45 startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW 46 startupinfo.wShowWindow = subprocess.SW_HIDE 49 p = subprocess.Popen([binary, '-lines', lines, '-style', style, 51 stdout=subprocess.PIPE, stderr=subprocess.PIPE, 52 stdin=subprocess.PIPE, startupinfo=startupinfo)
|
/external/chromium_org/build/ |
compiler_version.py | 14 import subprocess namespace 21 pipe = subprocess.Popen(compiler, shell=True, 22 stdout=subprocess.PIPE, stderr=subprocess.PIPE) 25 raise subprocess.CalledProcessError(pipe.returncode, compiler)
|
/external/chromium_org/tools/gyp/test/no-cpp/ |
gyptest-no-cpp.py | 14 import subprocess namespace 30 proc = subprocess.Popen(['otool', '-L', path], stdout=subprocess.PIPE) 32 proc = subprocess.Popen(['ldd', path], stdout=subprocess.PIPE)
|
/external/chromium_org/tools/ |
diagnose-me.py | 10 import subprocess namespace 25 proc = subprocess.Popen(['/usr/bin/ld', '-v'], stdout=subprocess.PIPE) 36 proc = subprocess.Popen(['which', '-a', 'ld'], stdout=subprocess.PIPE) 72 proc = subprocess.Popen(['which', 'ninja'], stdout=subprocess.PIPE) 87 proc = subprocess.Popen([script_path, '--quick-check'], 88 stdout=subprocess.PIPE)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_subprocess.py | 3 import subprocess namespace 48 for inst in subprocess._active: 50 subprocess._cleanup() 51 self.assertFalse(subprocess._active, "subprocess._active not empty") 65 class PopenExecuteChildRaises(subprocess.Popen): 66 """Popen subclass for testing cleanup of subprocess.PIPE filehandles when 77 rc = subprocess.call([sys.executable, "-c", 83 rc = subprocess.check_call([sys.executable, "-c", 89 with self.assertRaises(subprocess.CalledProcessError) as c [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_subprocess.py | 3 import subprocess namespace 48 for inst in subprocess._active: 50 subprocess._cleanup() 51 self.assertFalse(subprocess._active, "subprocess._active not empty") 65 class PopenExecuteChildRaises(subprocess.Popen): 66 """Popen subclass for testing cleanup of subprocess.PIPE filehandles when 77 rc = subprocess.call([sys.executable, "-c", 83 rc = subprocess.check_call([sys.executable, "-c", 89 with self.assertRaises(subprocess.CalledProcessError) as c [all...] |
/external/chromium_org/mojo/public/bindings/generators/ |
run_mojom_tests.py | 8 import subprocess namespace 15 subprocess.check_call(args, stdout=sys.stdout) 18 except subprocess.CalledProcessError as err:
|
/external/chromium_org/build/android/buildbot/tests/ |
bb_run_bot_test.py | 7 import subprocess namespace 27 (bot, subprocess.Popen( 29 '--testing'], stdout=subprocess.PIPE, stderr=subprocess.PIPE))
|
/external/chromium_org/tools/git/ |
mass-rename.py | 18 import subprocess namespace 26 popen = subprocess.Popen('git diff --cached --raw -M', 27 shell=True, stdout=subprocess.PIPE) 38 subprocess.check_call([
|
/external/chromium_org/tools/gyp/test/win/ |
gyptest-long-command-line.py | 13 import subprocess namespace
|
/external/chromium_org/testing/ |
xvfb.py | 15 import subprocess namespace 54 proc = subprocess.Popen( 55 cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) 65 subprocess.check_call( 67 stdout=subprocess.PIPE, 68 stderr=subprocess.STDOUT, 74 except subprocess.CalledProcessError: 113 subprocess.Popen( 114 wm_cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, env=env [all...] |
/external/chromium_org/tools/clang/scripts/ |
update.py | 11 import subprocess namespace 20 # (stdout=subprocess.PIPE, stderr=subprocess.STDOUT) and then does custom 28 return subprocess.call(
|
/external/chromium_org/webkit/tools/layout_tests/ |
run_webkit_tests.py | 9 import subprocess namespace 18 return subprocess.call(cmd)
|
/external/skia/tools/ |
merge_static_libs.py | 8 import subprocess namespace 32 proc = subprocess.Popen([ar, '-t', in_lib], stdout=subprocess.PIPE) 36 proc = subprocess.Popen([ar, '-x', in_lib], stdout=subprocess.PIPE, 37 stderr=subprocess.STDOUT) 50 if not subprocess.call([ar, '-crs', out_lib] + objects) == 0: 54 subprocess.call(['lib', '/OUT:%s' % out_lib] + in_libs)
|
/external/skia/tools/tests/ |
skimage_self_test.py | 10 import subprocess namespace 52 result = subprocess.call(args) 65 result = subprocess.call(args) 72 output = subprocess.check_output([skimage_binary, "--readPath", invalid_file, 75 stderr=subprocess.STDOUT) 86 output = subprocess.check_output([skimage_binary, "--readPath", invalid_file, 89 stderr=subprocess.STDOUT) 111 result = subprocess.call(args) 117 subprocess.check_call([skimage_binary, "--readPath", valid_file, 135 subprocess.check_call([skimage_binary, "--readPath", images_dir [all...] |
/external/chromium_org/build/android/ |
provision_devices.py | 16 import subprocess namespace 24 ps = subprocess.Popen(['ps', 'aux'], stdout = subprocess.PIPE) 30 subprocess.call(['kill', str(pid)]) 38 subprocess.Popen([os.path.join(constants.DIR_SOURCE_ROOT, 63 p = subprocess.Popen(['adb', '-s', device, 'shell'], stdin=subprocess.PIPE)
|