Home | History | Annotate | Download | only in commands

Lines Matching full:self

87     def _prepare_state(self, options, args, tool):
97 # def _fetch_list_of_patches_to_process(self, options, args, tool):
98 # def _prepare_to_process(self, options, args, tool):
107 def execute(self, options, args, tool):
108 self._prepare_to_process(options, args, tool)
109 patches = self._fetch_list_of_patches_to_process(options, args, tool)
112 bugs_to_patches = self._collect_patches_by_bug(patches)
116 self._process_patch(patch, options, args, tool)
123 def __init__(self):
125 self._prepare_sequence = StepSequence(self.prepare_steps)
126 self._main_sequence = StepSequence(self.main_steps)
127 options = sorted(set(self._prepare_sequence.options() + self._main_sequence.options()))
128 AbstractPatchProcessingCommand.__init__(self, options)
130 def _prepare_to_process(self, options, args, tool):
131 self._prepare_sequence.run_and_handle_errors(tool, options)
133 def _process_patch(self, patch, options, args, tool):
135 self._main_sequence.run_and_handle_errors(tool, options, state)
139 def _fetch_list_of_patches_to_process(self, options, args, tool):
144 def _fetch_list_of_patches_to_process(self, options, args, tool):
269 def execute(self, options, args, tool):
272 bug_id = self._parse_bug_id_from_revision_diff(tool, revision)
284 self._sequence.run_and_handle_errors(tool, options, state)