Searched refs:create_patch (Results 1 – 10 of 10) sorted by relevance
/external/webkit/Tools/Scripts/webkitpy/ |
D | style_references.py | 72 def create_patch(self, git_commit, changed_files=None): member in WebKitCheckout 73 return self._scm.create_patch(git_commit, changed_files=changed_files)
|
/external/webkit/Tools/Scripts/webkitpy/common/checkout/ |
D | scm_unittest.py | 596 patch_contents = scm.create_patch() 826 patch = scm.create_patch() 1136 patch = scm.create_patch() 1143 patch = scm.create_patch() 1154 patch = scm.create_patch() 1161 patch = scm.create_patch(changed_files=['test_file_commit2']) 1168 patch = scm.create_patch() 1169 …patch_with_changed_files = scm.create_patch(changed_files=['test_file_commit1', 'test_file_commit2… 1175 patch = scm.create_patch(git_commit="HEAD^") 1182 patch = scm.create_patch(git_commit="HEAD~2..HEAD") [all …]
|
D | scm.py | 271 def create_patch(self, git_commit=None, changed_files=None): member in SCM 485 def create_patch(self, git_commit=None, changed_files=None): member in SVN 768 def create_patch(self, git_commit=None, changed_files=None): member in Git 807 return self.create_patch(git_commit)
|
/external/webkit/Tools/Scripts/webkitpy/tool/commands/ |
D | download_unittest.py | 112 mock_tool.scm().create_patch = Mock(return_value="Patch1\nMockPatch\n") 116 self.assertEqual(mock_tool.scm().create_patch.call_count, 1)
|
D | upload.py | 329 …g(commit_message.message()) or parse_bug_id_from_changelog(tool.scm().create_patch(git_commit=comm… 339 diff = tool.scm().create_patch(git_commit=commit_id) 458 diff = tool.scm().create_patch(git_commit=commit_id) 477 diff = tool.scm().create_patch(options.git_commit)
|
/external/webkit/Tools/Scripts/webkitpy/tool/steps/ |
D | abstractstep.py | 45 …"diff": lambda self, state: self._tool.scm().create_patch(self._options.git_commit, changed_files=…
|
/external/webkit/Tools/Scripts/ |
D | check-webkit-style | 119 patch = checkout.create_patch(options.git_commit, changed_files=changed_files)
|
/external/webkit/Tools/Scripts/webkitpy/tool/ |
D | mocktool.py | 478 def create_patch(self, git_commit, changed_files=None): member in MockSCM
|
/external/webkit/Tools/ |
D | ChangeLog-2010-05-24 | 25762 Add --binary option to Git.create_patch. 34226 messages. Also switched from SCM.create_patch() to use 34694 Fix our create_patch handling to not
|
D | ChangeLog-2011-02-16 | 3986 …y/common/checkout/scm.py: Handle None for changed_files argument better in Git.create_patch method.
|