Searched refs:git_commit (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/
H A Dcheckout_mock.py49 def modified_changelogs(self, git_commit, changed_files=None):
54 def commit_message_for_this_commit(self, git_commit, changed_files=None):
H A Dcheckout.py47 def _modified_files_matching_predicate(self, git_commit, predicate, changed_files=None):
52 changed_files = self._scm.changed_files(git_commit)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
H A Dscm_mock.py92 def changed_files(self, git_commit=None):
107 def create_patch(self, git_commit, changed_files=None):
119 def commit_with_message(self, message, username=None, password=None, git_commit=None, force_squash=False, changed_files=None):
122 def merge_base(self, git_commit):
146 def svn_revision_from_git_commit(self, git_commit):
147 if git_commit == '6469e754a1':
149 if git_commit == '624c3081c0':
151 if git_commit == '624caaaaaa':
H A Dgit.py188 def merge_base(self, git_commit):
189 if git_commit:
191 if 'UPSTREAM' in git_commit:
195 git_commit = git_commit.replace('UPSTREAM', upstream)
198 if git_commit.endswith('....'):
199 return git_commit[:-4]
201 if '..' not in git_commit:
202 git_commit = git_commit
[all...]
H A Dscm.py151 def changed_files(self, git_commit=None):
179 def create_patch(self, git_commit=None, changed_files=None):
203 def commit_with_message(self, message, username=None, password=None, git_commit=None, force_squash=False, changed_files=None):
H A Dsvn.py210 def changed_files(self, git_commit=None):
260 def create_patch(self, git_commit=None, changed_files=None):
339 def commit_with_message(self, message, username=None, password=None, git_commit=None, force_squash=False, changed_files=None):
H A Dscm_unittest.py1250 commit_text = self.scm.commit_with_message("another test commit", git_commit="HEAD^")
1260 commit_text = self.scm.commit_with_message("another test commit", git_commit="HEAD~2..HEAD")
1289 self.assertRaises(ScriptError, self.scm.commit_with_message, "another test commit", git_commit="HEAD^")
1385 patch = self.scm.create_patch(git_commit="HEAD^")
1391 patch = self.scm.create_patch(git_commit="HEAD~2..HEAD")
1398 patch = self.scm.create_patch(git_commit="HEAD....")
1460 files = self.scm.changed_files(git_commit="HEAD^")
1466 files = self.scm.changed_files(git_commit="HEAD~2..HEAD")
1473 files = self.scm.changed_files(git_commit="HEAD....")
1514 files = self.scm.changed_files(git_commit
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/
H A Dabstractstep.py51 "changed_files": lambda self, state: self._tool.scm().changed_files(self._options.git_commit),
52 "diff": lambda self, state: self._tool.scm().create_patch(self._options.git_commit, changed_files=self._changed_files(state)),
54 "changelogs": lambda self, state: self._tool.checkout().modified_changelogs(self._options.git_commit, changed_files=self._changed_files(state)),
74 Options.git_commit,
H A Dcheckstyle.py40 Options.git_commit,
48 if self._options.git_commit:
50 args.append(self._options.git_commit)
H A Dcommit.py71 self._commit_message = self._tool.checkout().commit_message_for_this_commit(self._options.git_commit).message()
88 commit_text = scm.commit_with_message(self._commit_message, git_commit=self._options.git_commit, username=username, password=password, force_squash=force_squash, changed_files=self._changed_files(state))
H A Daddsvnmimetypeforpng_unittest.py45 options = MockOptions(git_commit='MOCK git commit')
H A Dcommit_unittest.py42 options.git_commit = ""
H A Doptions.py46 git_commit = make_option("-g", "--git-commit", action="store", dest="git_commit", help="Operate on a local commit. If a range, the commits are squashed into one. <ref>.... includes the working copy changes. UPSTREAM can be used for the upstream/tracking branch.") variable in class:Options
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
H A Doptparser_unittest.py44 git_commit=None):
46 git_commit=git_commit,
148 self.assertIsNone(options.git_commit)
163 self.assertEqual(options.git_commit, 'commit')
165 self.assertEqual(options.git_commit, 'commit')
167 self.assertEqual(options.git_commit, 'commit')
203 self.assertIsNone(options.git_commit)
219 git_commit="commit",
224 self.assertEqual(options.git_commit, "commi
[all...]
H A Doptparser.py133 git_commit: A string representing the git commit to check.
147 git_commit=None,
166 self.git_commit = git_commit
177 if self.git_commit != other.git_commit:
219 if options.git_commit:
220 flags['git-commit'] = options.git_commit
315 metavar="COMMIT", dest="git_commit", help=git_commit_help,)
420 git_commit
[all...]
H A Dmain.py152 patch = host.scm().create_patch(options.git_commit, changed_files=changed_files)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
H A Dcommandtest.py41 options.git_commit = 'MOCK git commit'

Completed in 153 milliseconds