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

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
__init__.py 6 from .scm import SCM
scm.py 30 # Python module for interacting with an SCM system (like SVN or Git)
42 # SCM methods are expected to return paths relative to self.checkout_root.
43 class SCM:
61 # SCM always returns repository relative path, but sometimes we need
84 SCM._subclass_must_implement()
87 SCM._subclass_must_implement()
137 # but the SCM baseclass will only call local_commits methods when this is true.
140 SCM._subclass_must_implement()
git.py 35 from webkitpy.common.checkout.scm.scm import SCM
50 class Git(SCM):
59 SCM.__init__(self, cwd, **kwargs)
svn.py 42 from .scm import SCM
47 class SVN(SCM):
54 SCM.__init__(self, cwd, **kwargs)
57 raise Exception(message='Empty list of patch directories passed to SCM.__init__')
scm_unittest.py 39 from webkitpy.common.checkout.scm.detection import detect_scm_system
40 from webkitpy.common.checkout.scm.git import Git, AmbiguousCommitError
41 from webkitpy.common.checkout.scm.scm import SCM
42 from webkitpy.common.checkout.scm.svn import SVN
61 self.scm = None
207 self.scm.add("added_dir/added_file")
208 self.assertIn("added_dir/added_file", self.scm._added_files())
213 self.scm.add("added_dir/added_file"
    [all...]