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

1 2 3 4 5

  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
bugsearch.py 34 help_text = "List bugs matching a query"
38 bugs = tool.bugs.queries.fetch_bugs_matching_quicksearch(search_string)
39 for bug in bugs:
41 if not bugs:
42 print "No bugs found matching '%s'" % search_string
upload.py 84 for bug_id in tool.bugs.queries.fetch_bug_ids_from_pending_commit_list():
85 bug = self._tool.bugs.fetch_bug(bug_id)
92 self._tool.bugs.obsolete_attachment(patch.id(), message)
103 # bugs.queries.fetch_bug_ids_from_review_queue() doesn't return
104 # closed bugs, but folks using /pending-review will see them. :(
105 for patch_id in tool.bugs.queries.fetch_attachment_ids_from_review_queue():
106 patch = self._tool.bugs.fetch_attachment(patch_id)
118 self._tool.bugs.obsolete_attachment(patch.id(), message)
133 bug = self._tool.bugs.fetch_bug(bug_id)
157 self._tool.bugs.reassign_bug(bug_id, committer.bugzilla_email(), reassign_message
    [all...]
queries_unittest.py 52 options.bugs = False
56 options.bugs = True
queries.py 62 name = "bugs-to-commit"
63 help_text = "List bugs in the commit-queue"
67 bug_ids = tool.bugs.queries.fetch_bug_ids_from_commit_queue()
77 patches = tool.bugs.queries.fetch_patches_from_commit_queue()
88 make_option("--bugs", action="store_true", dest="bugs", help="Output bug links instead of patch links"),
105 patches = tool.bugs.queries.fetch_patches_from_pending_commit_list()
107 if options.bugs:
111 print "%s" % tool.bugs.bug_url_for_bug_id(bug_id)
114 print "%s" % tool.bugs.attachment_url_for_id(patch.id(), action="edit"
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/tool/bot/
flakytestreporter.py 58 self._tool.bugs.authenticate()
59 return self._tool.bugs.username
71 bugs = self._tool.bugs.queries.fetch_bugs_matching_search(search_string=flaky_test)
72 if not bugs:
74 # Match any bugs which are from known bots or the email this bot is using.
76 bugs = filter(lambda bug: bug.reporter_email() in allowed_emails, bugs)
77 if not bugs:
79 if len(bugs) > 1
    [all...]
feeders.py 47 self.committer_validator = CommitterValidator(self._tool.bugs)
63 return self._tool.bugs.fetch_bug(bug_id).commit_queued_patches(include_invalid=True)
71 bug_ids = self._tool.bugs.queries.fetch_bug_ids_from_commit_queue()
90 ids_needing_review = set(self._tool.bugs.queries.fetch_attachment_ids_from_review_queue())
irc_command.py 90 bug_url = tool.bugs.bug_url_for_bug_id(bug_id)
98 tool.bugs.bug_url_for_bug_id(bug_id))
108 quips = tool.bugs.quips()
  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
postdiffforcommit.py 34 self._tool.bugs.add_patch_to_bug(
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.")
closebugforlanddiff.py 51 self._tool.bugs.close_bug_as_fixed(bug_id, comment_text)
55 self._tool.bugs.post_comment_to_bug(bug_id, comment_text)
obsoletepatches.py 46 patches = self._tool.bugs.fetch_bug(bug_id).patches()
51 self._tool.bugs.obsolete_attachment(patch.id())
postdiff.py 48 self._tool.bugs.add_patch_to_bug(state["bug_id"], diff, description, comment_text=comment_text, mark_for_review=self._options.review, mark_for_commit_queue=self._options.request_commit)
50 self._tool.user.open_url(self._tool.bugs.bug_url_for_bug_id(state["bug_id"]))
closepatch.py 36 self._tool.bugs.clear_attachment_flags(state["patch"].id(), comment_text)
postdiffforrevert.py 43 self._tool.bugs.add_patch_to_bug(
reopenbugafterrollout.py 42 log("No bugs were updated.")
44 self._tool.bugs.reopen_bug(bug_id, comment_text)
attachtobug.py 51 self._tool.bugs.add_attachment_to_bug(bug_id, filepath, description, filename, comment_text)
createbug.py 52 state["bug_id"] = self._tool.bugs.create_bug(state["bug_title"], state["bug_description"], blocked=blocks, component=self._options.component, cc=cc)
suggestreviewers.py 51 self._tool.bugs.add_cc_to_bug(state['bug_id'], reviewer_emails)
preparechangelog.py 57 self._tool.bugs.bug_url_for_bug_id(bug_id))
67 args.append("--description=%s" % self._tool.bugs.fetch_bug(state["bug_id"]).title())
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/
parsecvs.php 57 https?\Q://bugs.eclipse.org/bugs/show_bug.cgi?id=\E(\d+)
115 $bugs = extract_bugs($ubugs); variable
116 $bugs = preg_replace("/^(.+)$/", "('$row[0]', '$revs[1]', '$1')", $bugs); variable
117 wmysql_query("INSERT INTO `bugs` (`fid`, `revision`, `bugid`) VALUES " . join($bugs, ",") . " ON DUPLICATE KEY UPDATE `bugid` = `bugid`");
156 $bugs[] = $y;
161 return $bugs;
  /external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/
bugzilla_unittest.py 73 'url' : "https://bugs.webkit.org/attachment.cgi?id=33721",
85 bugs = Bugzilla()
86 self.assertEquals(None, bugs.bug_url_for_bug_id(None))
87 self.assertEquals(None, bugs.short_bug_url_for_bug_id(None))
88 self.assertEquals(None, bugs.attachment_url_for_id(None))
92 bugs = Bugzilla()
94 self.assertEquals(12345, parse_bug_id("http://bugs.webkit.org/show_bug.cgi?id=12345"))
95 self.assertEquals(12345, parse_bug_id(bugs.short_bug_url_for_bug_id(12345)))
96 self.assertEquals(12345, parse_bug_id(bugs.bug_url_for_bug_id(12345)))
97 self.assertEquals(12345, parse_bug_id(bugs.bug_url_for_bug_id(12345, xml=True))
    [all...]
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
timeout-clear-watch.js 1 description("Tests that when a watch times out and is cleared from the error callback, there is no crash. This a regression test for https://bugs.webkit.org/show_bug.cgi?id=32111.");
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
commitinfo.py 85 def blame_string(self, bugs):
88 string += " Bug: %s (%s)\n" % (self.bug_id(), bugs.bug_url_for_bug_id(self.bug_id()))
  /external/v8/test/message/
testcfg.py 109 bugs = [current_path + ['bugs', t] for t in self.Ls(join(self.root, 'bugs'))]
112 bugs.sort()
113 all_tests = mjsunit + regress + bugs
  /external/stlport/test/eh/
cygwin.mak 79 echo "Cygwin has bugs in exception handling, runnning w/o throwing exceptions..."
83 echo "Cygwin has bugs in exception handling, runnning w/o throwing exceptions..."
87 echo "Cygwin has bugs in exception handling, runnning w/o throwing exceptions..."

Completed in 979 milliseconds

1 2 3 4 5