HomeSort by relevance Sort by last modified time
    Searched defs:Executive (Results 1 - 22 of 22) sorted by null

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
detection.py 33 from webkitpy.common.system.executive import Executive
42 def __init__(self, filesystem, executive):
44 self._executive = executive
71 if SVN.in_working_directory(absolute_path, executive=self._executive):
72 return SVN(cwd=absolute_path, patch_directories=patch_directories, filesystem=self._filesystem, executive=self._executive)
74 if Git.in_working_directory(absolute_path, executive=self._executive):
75 return Git(cwd=absolute_path, filesystem=self._filesystem, executive=self._executive)
83 return SCMDetector(FileSystem(), Executive()).detect_scm_system(path, patch_directories)
scm.py 36 from webkitpy.common.system.executive import Executive, ScriptError
44 def __init__(self, cwd, executive=None, filesystem=None):
46 self._executive = executive or Executive()
83 def in_working_directory(cls, path, executive=None):
git.py 37 from webkitpy.common.system.executive import Executive, ScriptError
69 def in_working_directory(cls, path, executive=None):
71 executive = executive or Executive()
72 return executive.run_command([cls.executable_name, 'rev-parse', '--is-inside-work-tree'], cwd=path, error_handler=Executive.ignore_error).rstrip() == "true"
85 def read_git_config(cls, key, cwd=None, executive=None):
89 # FIXME: This should use an Executive
    [all...]
svn.py 40 from webkitpy.common.system.executive import Executive, ScriptError
64 def in_working_directory(cls, path, executive=None):
70 executive = executive or Executive()
72 exit_code = executive.run_command(svn_info_args, cwd=path, return_exit_code=True)
83 # FIXME: This method should use a passed in executive or be made an instance method and use self._executive.
84 info_output = Executive().run_command(svn_info_args, cwd=path).rstrip()
185 info_output = Executive().run_command([self.executable_name, 'log', '-r', revision, '--xml', repository_root], cwd=path).r (…)
    [all...]
scm_unittest.py 36 from webkitpy.common.system.executive import Executive, ScriptError
62 self.executive = None
67 self.executive = Executive()
94 return self.executive.run_command(*args, **kwargs)
97 self.executive.run_and_throw_if_fail(args, quiet=True, **kwargs)
691 scm = Git(cwd=".", executive=MockExecutive(), filesystem=MockFileSystem())
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
patchreader.py 35 from webkitpy.common.system.executive import Executive
73 detection = SCMDetector(fs, Executive()).detect_scm_system(cwd)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
python.py 32 from webkitpy.common.system.executive import Executive
76 executive = Executive()
83 return executive.run_command([sys.executable, wkf.path_from_depot_tools_base('pylint.py'),
89 error_handler=executive.ignore_error)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
main_unittest.py 29 from webkitpy.common.system.executive import Executive
87 executive = Executive()
97 proc = executive.popen([sys.executable, filesystem.join(script_dir, 'test-webkitpy'), '-c', STUBS_CLASS + '.test_empty'],
98 stdout=executive.PIPE, stderr=executive.PIPE)
main.py 38 from webkitpy.common.system.executive import Executive
79 self.executive = Executive()
156 exit_code = self.executive.call(prefix_cmd + ['run', __file__] + argv, cwd=script_dir, env=env)
158 exit_code = self.executive.call(prefix_cmd + ['report', '--omit', 'webkitpy/thirdparty/*,/usr/*,/Library/*'], cwd=script_dir, env=env)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/webgl/
update_webgl_conformance_tests.py 32 from webkitpy.common.system.executive import Executive
95 detector = scm.SCMDetector(FileSystem(), Executive())
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
platforminfo_unittest.py 33 from webkitpy.common.system.executive import Executive
70 def make_info(self, sys_module=None, platform_module=None, executive=None):
71 return PlatformInfo(sys_module or fake_sys(), platform_module or fake_platform(), executive or fake_executive())
75 info = PlatformInfo(sys, platform, Executive())
114 info = self.make_info(fake_sys('cygwin'), executive=fake_executive('6.1.7600'))
150 self.assertRaises(AssertionError, self.make_info, fake_sys('win32'), executive=fake_executive('5.0.1234'))
151 self.assertEqual(self.make_info(fake_sys('cygwin'), executive=fake_executive('6.2.1234')).os_version, 'future')
152 self.assertEqual(self.make_info(fake_sys('cygwin'), executive=fake_executive('6.1.7600')).os_version, '7sp0')
153 self.assertEqual(self.make_info(fake_sys('cygwin'), executive=fake_executive('6.0.1234')).os_version, 'vista'
    [all...]
executive_unittest.py 48 from webkitpy.common.system.executive import Executive, ScriptError
87 file_interpreter = Executive.interpreter_for_script(temp_name, fs)
108 Executive().run_command(["foo_bar_command_blah"], error_handler=Executive.ignore_error, return_exit_code=True)
112 executive = Executive()
113 self.assertRaises(AssertionError, executive.run_command, "echo")
114 self.assertRaises(AssertionError, executive.run_command, u"echo")
115 executive.run_command(command_line('echo', 'foo')
    [all...]
user.py 39 from webkitpy.common.system.executive import Executive
61 self._platforminfo = platforminfo or PlatformInfo(sys, platform, Executive())
executive.py 86 class Executive(object):
172 interpreter = Executive.interpreter_for_script(script_path, fs)
329 # updated to use an Executive object.
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
bisect_test_ordering.py 36 from webkitpy.common.system.executive import Executive
54 self.executive = Executive()
150 output = self.executive.popen([path_to_run_webkit_tests, '--child-processes', '1', '--order', 'none', '--no-retry', '--no-show-results', '--verbose'] + extra_args + tests, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
layout_tests_mover.py 54 from webkitpy.common.system.executive import Executive
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/bindings/
main.py 34 from webkitpy.common.system.executive import Executive
139 executive = Executive()
161 return executive.run_command(cmd, error_handler=lambda x: None)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
run.py 61 handle() instantiates a run.Executive object, passing it a reference to the
63 Executive instance. The Executive methods have access to the reference and
258 executive = Executive(self)
259 self.register("exec", executive)
292 class Executive(object):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
run.py 61 handle() instantiates a run.Executive object, passing it a reference to the
63 Executive instance. The Executive methods have access to the reference and
258 executive = Executive(self)
259 self.register("exec", executive)
292 class Executive(object):
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
base_unittest.py 35 from webkitpy.common.system.executive import Executive, ScriptError
50 def make_port(self, executive=None, with_tests=False, port_name=None, **kwargs):
52 if executive:
53 host.executive = executive
91 port = self.make_port(executive=executive_mock.MockExecutive2(exception=OSError))
104 port = self.make_port(executive=executive_mock.MockExecutive2(exception=ScriptError))
340 port = self.make_port(executive=MockExecutive2())
349 port = self.make_port(executive=MockExecutive2(exit_code=1)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winternl.h 623 Executive = 0,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
wdm.h 965 Executive,
    [all...]

Completed in 1257 milliseconds