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

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/
H A Doptions.py33 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
H A Dabstractstep.py47 Options.git_commit,
H A Dconfirmdiff.py66 changed_files = self._tool.scm().changed_files(self._options.git_commit)
67 return self._tool.scm().create_patch(self._options.git_commit,
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
H A Dgit.py143 def _merge_base(self, git_commit=None):
144 if git_commit:
146 if 'UPSTREAM' in git_commit:
150 git_commit = git_commit.replace('UPSTREAM', upstream)
153 if git_commit.endswith('....'):
154 return git_commit[:-4]
156 if '..' not in git_commit:
157 git_commit = git_commit
[all...]
H A Dscm_mock.py82 def svn_revision_from_git_commit(self, git_commit):
83 if git_commit == '6469e754a1':
85 if git_commit == '624c3081c0':
87 if git_commit == '624caaaaaa':
H A Dscm.py107 def changed_files(self, git_commit=None):
H A Dscm_unittest.py538 patch = self.scm.create_patch(git_commit="HEAD^")
544 patch = self.scm.create_patch(git_commit="HEAD~2..HEAD")
551 patch = self.scm.create_patch(git_commit="HEAD....")
608 files = self.scm.changed_files(git_commit="HEAD^")
614 files = self.scm.changed_files(git_commit="HEAD~2..HEAD")
621 files = self.scm.changed_files(git_commit="HEAD....")
648 files = self.scm.changed_files(git_commit='UPSTREAM..')
654 files = self.scm.changed_files(git_commit='UPSTREAM....')
H A Dsvn.py160 def changed_files(self, git_commit=None):
189 def create_patch(self, git_commit=None, changed_files=None):
/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.py42 options.git_commit = 'MOCK git commit'

Completed in 177 milliseconds