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

  /external/webkit/Tools/Scripts/webkitpy/tool/
comments.py 40 def bug_comment_from_commit_text(scm, commit_text):
41 svn_revision = scm.svn_revision_from_commit_text(commit_text)
mocktool.py 503 def svn_revision_from_commit_text(self, commit_text):
  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
commit.py 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))
63 svn_revision = scm.svn_revision_from_commit_text(commit_text)
65 self._state["commit_text"] = commit_text
  /external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/
bugzilla_unittest.py 196 commit_text = '''
206 self.assertEquals(56988, parse_bug_id_from_changelog(commit_text))
208 commit_text = '''
219 self.assertEquals(12345, parse_bug_id_from_changelog(commit_text))
221 commit_text = '''
238 self.assertEquals(57569, parse_bug_id_from_changelog(commit_text))
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
scm_unittest.py 645 commit_text = self.scm.commit_with_message("another test commit", username)
646 self.assertEqual(self.scm.svn_revision_from_commit_text(commit_text), '6')
650 commit_text = self.scm.commit_with_message("yet another test commit", username)
651 self.assertEqual(self.scm.svn_revision_from_commit_text(commit_text), '0')
656 commit_text = self.scm.commit_with_message("another test commit", username)
658 self.assertEqual(self.scm.svn_revision_from_commit_text(commit_text), '6')
    [all...]
scm.py 218 def svn_revision_from_commit_text(self, commit_text):
219 match = re.search(self.commit_success_regexp(), commit_text, re.MULTILINE)
    [all...]

Completed in 121 milliseconds