HomeSort by relevance Sort by last modified time
    Searched refs:git_commit (Results 1 - 25 of 26) sorted by null

1 2

  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
api.py 103 def _modified_files_matching_predicate(self, git_commit, predicate, changed_files=None):
108 changed_files = self._scm.changed_files(git_commit)
112 def modified_changelogs(self, git_commit, changed_files=None):
113 return self._modified_files_matching_predicate(git_commit, self.is_path_to_changelog, changed_files=changed_files)
115 def modified_non_changelogs(self, git_commit, changed_files=None):
116 return self._modified_files_matching_predicate(git_commit, lambda path: not self.is_path_to_changelog(path), changed_files=changed_files)
118 def commit_message_for_this_commit(self, git_commit, changed_files=None):
119 changelog_paths = self.modified_changelogs(git_commit, changed_files)
139 def suggested_reviewers(self, git_commit, changed_files=None):
140 changed_files = self.modified_non_changelogs(git_commit, changed_files
    [all...]
scm.py 253 def changed_files(self, git_commit=None):
271 def create_patch(self, git_commit=None, changed_files=None):
295 def commit_with_message(self, message, username=None, password=None, git_commit=None, force_squash=False, changed_files=None):
445 def changed_files(self, git_commit=None):
485 def create_patch(self, git_commit=None, changed_files=None):
563 def commit_with_message(self, message, username=None, password=None, git_commit=None, force_squash=False, changed_files=None):
707 def merge_base(self, git_commit):
708 if git_commit:
710 if git_commit.upper() == 'HEAD..':
713 if '..' not in git_commit
    [all...]
api_unittest.py 118 checkout.modified_changelogs = lambda git_commit, changed_files=None: ["ChangeLog1", "ChangeLog2"]
122 kwargs={"git_commit": None}, expected_stderr=expected_stderr)
190 checkout.commit_message_for_this_commit = lambda git_commit, changed_files=None: CommitMessage(ChangeLogEntry(_changelog1entry1).contents().splitlines())
191 self.assertEqual(checkout.bug_id_for_this_commit(git_commit=None), 36629)
196 scm.changed_files = lambda git_commit: ["file1", "ChangeLog", "relative/path/ChangeLog"]
199 self.assertEqual(checkout.modified_changelogs(git_commit=None), expected_changlogs)
214 scm.changed_files = lambda git_commit: ["file1", "file2", "relative/path/ChangeLog"]
218 reviewers = checkout.suggested_reviewers(git_commit=None)
scm_unittest.py     [all...]
  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
suggestreviewers.py 37 Options.git_commit,
45 reviewers = self._tool.checkout().suggested_reviewers(self._options.git_commit, self._changed_files(state))
abstractstep.py 44 "changed_files": lambda self, state: self._tool.scm().changed_files(self._options.git_commit),
45 "diff": lambda self, state: self._tool.scm().create_patch(self._options.git_commit, changed_files=self._changed_files(state)),
47 "changelogs": lambda self, state: self._tool.checkout().modified_changelogs(self._options.git_commit, changed_files=self._changed_files(state)),
67 Options.git_commit,
checkstyle.py 42 Options.git_commit,
51 if self._options.git_commit:
53 args.append(self._options.git_commit)
applypatchwithlocalcommit.py 42 commit_message = self._tool.checkout().commit_message_for_this_commit(git_commit=None)
preparechangelogfordepsroll.py 38 changelog_paths = self._tool.checkout().modified_changelogs(git_commit=None)
commit.py 46 self._commit_message = self._tool.checkout().commit_message_for_this_commit(self._options.git_commit).message()
62 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))
suggestreviewers_unittest.py 43 step = SuggestReviewers(MockTool(), MockOptions(suggest_reviewers=True, git_commit=None))
updatechangelogswithreview_unittest.py 46 options.git_commit = 'MOCK git commit'
preparechangelog.py 44 Options.git_commit,
72 args.append("--merge-base=%s" % self._tool.scm().merge_base(self._options.git_commit))
preparechangelogforrevert.py 54 changelog_paths = self._tool.checkout().modified_changelogs(git_commit=None)
updatechangelogswithreviewer.py 41 Options.git_commit,
validatechangelogs_unittest.py 42 step = ValidateChangeLogs(tool, MockOptions(git_commit=None, non_interactive=non_interactive))
options.py 47 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. HEAD.. operates on working copy changes only.") variable in class:Options
  /external/webkit/Tools/Scripts/webkitpy/style/
optparser_unittest.py 44 git_commit=None):
46 git_commit=git_commit,
148 self.assertEquals(options.git_commit, None)
163 self.assertEquals(options.git_commit, 'commit')
165 self.assertEquals(options.git_commit, 'commit')
167 self.assertEquals(options.git_commit, 'commit')
203 self.assertEquals(options.git_commit, None)
219 git_commit="commit",
224 self.assertEquals(options.git_commit, "commit"
    [all...]
optparser.py 133 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 = options.git_commi
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/
style_references.py 72 def create_patch(self, git_commit, changed_files=None):
73 return self._scm.create_patch(git_commit, changed_files=changed_files)
  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
commandtest.py 41 options.git_commit = 'MOCK git commit'
upload.py 56 steps.Options.git_commit,
63 print "%s" % tool.checkout().commit_message_for_this_commit(options.git_commit).message()
196 changed_files = self._tool.scm().changed_files(options.git_commit)
198 bug_id = tool.checkout().bug_id_for_this_commit(options.git_commit, changed_files)
329 bug_id = options.bug_id or parse_bug_id_from_changelog(commit_message.message()) or parse_bug_id_from_changelog(tool.scm().create_patch(git_commit=commit_id))
339 diff = tool.scm().create_patch(git_commit=commit_id)
458 diff = tool.scm().create_patch(git_commit=commit_id)
473 commit_message = tool.checkout().commit_message_for_this_commit(options.git_commit)
477 diff = tool.scm().create_patch(options.git_commit)
download.py 109 changed_files = self._tool.scm().changed_files(options.git_commit)
112 "bug_id": (args and args[0]) or tool.checkout().bug_id_for_this_commit(options.git_commit, changed_files),
  /external/webkit/Tools/Scripts/
check-webkit-style 119 patch = checkout.create_patch(options.git_commit, changed_files=changed_files)
  /external/webkit/Tools/Scripts/webkitpy/tool/
mocktool.py 475 def changed_files(self, git_commit=None):
478 def create_patch(self, git_commit, changed_files=None):
544 def modified_changelogs(self, git_commit, changed_files=None):
549 def commit_message_for_this_commit(self, git_commit, changed_files=None):
563 def suggested_reviewers(self, git_commit, changed_files=None):

Completed in 104 milliseconds

1 2