HomeSort by relevance Sort by last modified time
    Searched refs:checkout_root (Results 1 - 23 of 23) sorted by null

  /external/webkit/Tools/Scripts/webkitpy/style/
main.py 33 def change_directory(checkout_root, paths, mock_os=None):
58 checkout_root: The path to the root of the WebKit checkout, or None or
68 if not checkout_root:
100 rel_path = _relpath(path, checkout_root)
120 % (path, checkout_root))
127 _log.debug("Changing to checkout root: " + checkout_root)
128 os_module.chdir(checkout_root)
main_unittest.py 64 def _change_directory(self, paths, checkout_root):
66 checkout_root=checkout_root,
77 checkout_root=None, paths=None)
82 paths = self._change_directory(checkout_root=None,
93 paths = self._change_directory(checkout_root=self._checkout_root,
100 paths = self._change_directory(checkout_root=self._checkout_root,
108 paths = self._change_directory(checkout_root=self._checkout_root,
  /external/webkit/Tools/Scripts/
check-webkit-style 101 checkout_root = None
104 checkout_root = checkout.root_path()
105 _log.debug("WebKit checkout found with root: %s" % checkout_root)
109 paths = change_directory(checkout_root=checkout_root, paths=paths)
check-inspector-strings 98 checkout_root = checkout.root_path() variable in class:LocalizedStringsExtractor
99 _log.debug("WebKit checkout found with root: %s" % checkout_root)
100 change_directory(checkout_root=checkout_root, paths=None)
run-bindings-tests 110 os.chdir(current_scm.checkout_root)
  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
editchangelog.py 36 os.chdir(self._tool.scm().checkout_root)
cleanworkingdirectory.py 52 # are known to set the CWD to checkout_root when calling run_command.
53 os.chdir(self._tool.scm().checkout_root)
checkstyle.py 48 os.chdir(self._tool.scm().checkout_root)
confirmdiff.py 54 self._tool.scm().checkout_root)
preparechangelog.py 63 os.chdir(self._tool.scm().checkout_root)
  /external/webkit/Tools/Scripts/webkitpy/common/
prettypatch.py 34 # FIXME: PrettyPatch should not require checkout_root.
35 def __init__(self, executive, checkout_root):
37 self._checkout_root = checkout_root
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/
deduplicate_tests_unittest.py 56 checkout_root = scm.find_checkout_root()
57 self.assertNotEqual(checkout_root, None)
58 os.chdir(checkout_root)
191 checkout_root = scm.find_checkout_root()
192 layout_test_dir = os.path.join(checkout_root, 'LayoutTests')
197 ('platform/mac/test.html', checkout_root)),
199 ('platform/mac/test.html', os.path.join(checkout_root, 'Source', 'WebCore'))),
deduplicate_tests.py 176 checkout_root=scm.find_checkout_root()):
185 layout_test_dir = os.path.join(checkout_root, 'LayoutTests')
  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
sheriffbot_unittest.py 44 "begin_work_queue": self._default_begin_work_queue_stderr("sheriff-bot", tool.scm().checkout_root),
earlywarningsystem_unittest.py 88 "begin_work_queue": self._default_begin_work_queue_stderr(ews.name, ews._tool.scm().checkout_root),
queues.py 112 log("CAUTION: %s will discard all local changes in \"%s\"" % (self.name, self._tool.scm().checkout_root))
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
scm.py 53 return scm_system.checkout_root
72 log("The current directory (%s) is not a WebKit checkout, using %s" % (cwd, scm_system.checkout_root))
148 # SCM methods are expected to return paths relative to self.checkout_root.
152 self.checkout_root = self.find_checkout_root(self.cwd)
170 return os.path.join(self.checkout_root, repository_relative_path)
174 return os.path.join(self.checkout_root, "Tools", "Scripts")
184 # FIXME: Shouldn't this use cwd=self.checkout_root?
202 # We run with cwd=self.checkout_root so that returned-paths are root-relative.
203 for line in self.run(status_command, cwd=self.checkout_root).splitlines():
346 self._patch_directories = [ospath.relpath(cwd, self.checkout_root)]
    [all...]
api.py 104 # SCM returns paths relative to scm.checkout_root
109 absolute_paths = [os.path.join(self._scm.checkout_root, path) for path in changed_files]
153 return DEPS(os.path.join(self._scm.checkout_root, "Source", "WebKit", "chromium", "DEPS"))
api_unittest.py 195 scm.checkout_root = "/foo/bar"
213 scm.checkout_root = "/foo/bar"
scm_unittest.py 178 os.chdir(detect_scm_system(os.path.dirname(__file__)).checkout_root)
576 self.assertTrue(scm.checkout_root)
595 self.assertEqual(scm.checkout_root, self.svn_checkout_path) # Sanity check that detection worked right.
598 self.assertEqual("%s\n" % os.path.realpath(scm.checkout_root), patch_contents) # Add a \n because echo adds a \n.
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/
style_references.py 70 return self._scm.checkout_root
  /external/webkit/Tools/Scripts/webkitpy/tool/
main.py 95 failure_reason = "%s requires local commits using %s in %s." % (command.name, self.scm().display_name(), self.scm().checkout_root)
mocktool.py 464 # os.getcwd() can't work here because other parts of the code assume that "checkout_root"
466 self.checkout_root = self.fake_checkout_root

Completed in 743 milliseconds