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

1 2

  /external/webkit/WebKitTools/Scripts/webkitpy/steps/
preparechangelogforrevert.py 38 os.chdir(self._tool.scm().checkout_root)
39 changelog_paths = self._tool.scm().modified_changelogs()
40 self._tool.scm().revert_files(changelog_paths)
45 bug_url = self._tool.bugs.bug_url_for_bug_id(state["bug_id"]) if state["bug_id"] else None
closepatch.py 35 comment_text = bug_comment_from_commit_text(self._tool.scm(), state["commit_text"])
36 self._tool.bugs.clear_attachment_flags(state["patch"].id(), comment_text)
commit.py 34 commit_message = self._tool.scm().commit_message_for_this_commit()
35 state["commit_text"] = self._tool.scm().commit_with_message(commit_message.message())
editchangelog.py 36 os.chdir(self._tool.scm().checkout_root)
37 self._tool.user.edit(self.cached_lookup(state, "changelogs"))
revertrevision.py 34 self._tool.scm().apply_reverse_diff(state["revision"])
cleanworkingdirectory.py 48 os.chdir(self._tool.scm().checkout_root)
50 self._tool.scm().ensure_no_local_commits(self._options.force_clean)
52 self._tool.scm().ensure_clean_working_directory(force_clean=self._options.force_clean)
closebugforlanddiff.py 43 comment_text = bug_comment_from_commit_text(self._tool.scm(), state["commit_text"])
51 self._tool.bugs.close_bug_as_fixed(bug_id, comment_text)
55 self._tool.bugs.post_comment_to_bug(bug_id, comment_text)
postdiff.py 49 self._tool.bugs.add_patch_to_bug(state["bug_id"], diff_file, description, mark_for_review=self._options.review, mark_for_commit_queue=self._options.request_commit)
51 self._tool.user.open_url(self._tool.bugs.bug_url_for_bug_id(state["bug_id"]))
applypatchwithlocalcommit.py 42 commit_message = self._tool.scm().commit_message_for_this_commit()
43 self._tool.scm().commit_locally_with_message(commit_message.message() or state["patch"].name())
confirmdiff.py 45 self._tool.user.page(diff)
46 if not self._tool.user.confirm("Was that diff correct?"):
ensurebuildersaregreen.py 44 red_builders_names = self._tool.buildbot.red_core_builders_names()
48 error("Builders [%s] are red, please do not commit.\nSee http://%s.\nPass --ignore-builders to bypass this check." % (", ".join(red_builders_names), self._tool.buildbot.buildbot_host))
ensurelocalcommitifneeded.py 42 if self._options.local_commit and not self._tool.scm().supports_local_commits():
43 error("--local-commit passed, but %s does not support local commits" % self._tool.scm.display_name())
abstractstep.py 35 self._tool = tool
42 self._tool.executive.run_and_throw_if_fail(port.script_path(script_name), quiet)
52 "diff" : lambda self: self._tool.scm().create_patch(),
53 "changelogs" : lambda self: self._tool.scm().modified_changelogs(),
postdiffforcommit.py 36 self._tool.bugs.add_patch_to_bug(
promptforbugortitle.py 37 user_response = self._tool.user.prompt("Please enter a bug number or a title for a new bug:\n")
runtests.py 52 self._tool.executive.run_and_throw_if_fail(self.port().run_python_unittests_command())
54 self._tool.executive.run_and_throw_if_fail(self.port().run_perl_unittests_command())
56 self._tool.executive.run_and_throw_if_fail(self.port().run_javascriptcore_tests_command(), quiet=True)
65 self._tool.executive.run_and_throw_if_fail(args)
checkstyle.py 47 os.chdir(self._tool.scm().checkout_root)
55 if not self._tool.user.confirm("Are you sure you want to continue?"):
closebug.py 46 patches = self._tool.bugs.fetch_bug(state["patch"].bug_id()).patches()
51 self._tool.bugs.close_bug_as_fixed(state["patch"].bug_id(), "All reviewed patches have been landed. Closing bug.")
obsoletepatches.py 46 patches = self._tool.bugs.fetch_bug(bug_id).patches()
51 self._tool.bugs.obsolete_attachment(patch.id())
preparechangelog.py 49 os.chdir(self._tool.scm().checkout_root)
56 self._tool.executive.run_and_throw_if_fail(args, self._options.quiet)
updatechangelogswithreviewer.py 45 patches = self._tool.bugs.fetch_bug(bug_id).reviewed_patches()
69 os.chdir(self._tool.scm().checkout_root)
70 for changelog_path in self._tool.scm().modified_changelogs():
applypatch.py 42 self._tool.scm().apply_patch(state["patch"], force=self._options.non_interactive)
createbug.py 45 state["bug_id"] = self._tool.bugs.create_bug(state["bug_title"], state["bug_description"], component=self._options.component, cc=self._options.cc)
update.py 46 self._tool.executive.run_and_throw_if_fail(self.port().update_webkit_command(), quiet=True)
completerollout.py 59 commit_comment = bug_comment_from_commit_text(self._tool.scm(), state["commit_text"])
66 self._tool.bugs.reopen_bug(bug_id, comment_text)

Completed in 490 milliseconds

1 2