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

1 2 3 4 5

  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/buildbot/
active_issues.js 24 updateIssue: function(issue) {
25 var eventType = this.issues_.hasOwnProperty(issue.issue) ?
27 this.issues_[issue.issue] = issue;
28 this.postEvent_({event: eventType, issue: issue.issue});
31 removeIssue: function(issue) {
    [all...]
popup.js 100 table.className = "issue-status";
111 tryJobAnchor.className = "issue-status-build " +
121 function getLastFullPatchsetWithTryJobs(issue) {
122 var index = issue.patchsets.length - 1;
123 var fullPatchsets = issue.full_patchsets;
126 !fullPatchsets[issue.patchsets[index]] ||
127 !fullPatchsets[issue.patchsets[index]].try_job_results ||
128 fullPatchsets[issue.patchsets[index]].try_job_results.length == 0)) {
132 return index >= 0 ? fullPatchsets[issue.patchsets[index]] : null;
135 function createTryStatusRow(issue) {
    [all...]
bg.js 160 // Enums corresponding to how much state has been loaded for an issue.
164 function fetchPatches(issue, updatedCallback) {
169 issue.patchsets.forEach(function(patchset) {
170 var patchURL = "https://codereview.chromium.org/api/" + issue.issue +
174 if (!issue.full_patchsets)
175 issue.full_patchsets = {};
177 issue.full_patchsets[patch.patchset] = patch;
194 if (++patchsetsRetrieved == issue.patchsets.length) {
207 var issueURL = "https://codereview.chromium.org/api/" + result.issue;
    [all...]
popup.css 40 [data-issue] + .trunk-status-row > td,
45 div.issue-status {
52 .issue-status-build {
  /external/clang/www/
make_cxx_dr_status 17 def __init__(self, section, issue, url, status, title):
18 self.section, self.issue, self.url, self.status, self.title = \
19 section, issue, url, status, title
21 return '%s (%s): %s' % (self.issue, self.status, self.title)
28 _, url, issue = issue_link.split('"', 2)
30 issue = int(issue.split('>', 1)[1].split('<', 1)[0])
32 return DR(section, issue, url, status, title)
48 key = lambda dr: dr.issue)
92 <th>Issue title</th
    [all...]
  /external/chromium_org/sdch/open-vcdiff/packages/
rpm.sh 73 if [ -r /etc/issue ]
75 grep "Red Hat.*release 7" /etc/issue >/dev/null 2>&1 && destdir=rh7
76 grep "Red Hat.*release 8" /etc/issue >/dev/null 2>&1 && destdir=rh8
77 grep "Red Hat.*release 9" /etc/issue >/dev/null 2>&1 && destdir=rh9
78 if grep Fedora /etc/issue >/dev/null; then
79 destdir=fc`grep Fedora /etc/issue | cut -d' ' -f 4`;
  /external/cmockery/cmockery_0_1_2/packages/
rpm.sh 59 if [ -r /etc/issue ]
61 grep "Red Hat.*release 7" /etc/issue >/dev/null 2>&1 && destdir=rh7
62 grep "Red Hat.*release 8" /etc/issue >/dev/null 2>&1 && destdir=rh8
63 grep "Red Hat.*release 9" /etc/issue >/dev/null 2>&1 && destdir=rh9
64 if grep Fedora /etc/issue >/dev/null; then
65 destdir=fc`grep Fedora /etc/issue | cut -d' ' -f 4`;
  /external/chromium_org/chrome/common/extensions/docs/server2/
patch_servlet_test.py 60 def _RenderWithPatch(self, path, issue):
61 path_with_issue = '%s/%s' % (issue, path)
69 def _RenderAndCheck(self, path, issue, expected_equal):
70 '''Renders |path| with |issue| patched in and asserts that the result is
72 "_patch/issue".
74 patched_response = self._RenderWithPatch(path, issue)
84 patch_servlet_path = '_patch/%s' % issue
97 def _RenderAndAssertEqual(self, path, issue):
98 self._RenderAndCheck(path, issue, True)
100 def _RenderAndAssertNotEqual(self, path, issue)
    [all...]
rietveld_patcher.py 32 issue,
34 self._issue = issue
45 'Failed to fetch information for issue %s.' % self._issue)
48 raise RietveldPatcherError('Issue %s has been closed.' % self._issue)
52 raise RietveldPatcherError('Cannot parse issue %s.' % self._issue)
55 raise RietveldPatcherError('Issue %s\'s base url is unknown.' %
70 'Failed to fetch details for issue %s patchset %s.' % (self._issue,
75 raise RietveldPatcherError('Failed to parse issue %s patchset %s.' %
103 'Failed to download tarball for issue %s patchset %s. Status: %s' %
110 'Error loading tarball for issue %s patchset %s.' % (self._issue
    [all...]
patch_servlet.py 26 def __init__(self, issue, delegate):
27 self._issue = issue
98 issue, path_without_issue = path_with_issue.split('/', 1)
108 _PatchServletDelegate(issue, self._delegate)).Get()
116 response = Response.Redirect('/_patch/%s%s' % (issue, redirect_url),
  /external/chromium_org/third_party/tcmalloc/vendor/packages/
rpm.sh 70 if [ -r /etc/issue ]
72 grep "Red Hat.*release 7" /etc/issue >/dev/null 2>&1 && destdir=rh7
73 grep "Red Hat.*release 8" /etc/issue >/dev/null 2>&1 && destdir=rh8
74 grep "Red Hat.*release 9" /etc/issue >/dev/null 2>&1 && destdir=rh9
75 grep "Fedora Core.*release 1" /etc/issue >/dev/null 2>&1 && destdir=fc1
76 grep "Fedora Core.*release 2" /etc/issue >/dev/null 2>&1 && destdir=fc2
77 grep "Fedora Core.*release 3" /etc/issue >/dev/null 2>&1 && destdir=fc3
  /external/chromium_org/build/android/lint/
suppress.py 33 '- You can edit this file manually to suppress an issue\n'
44 _Issue = collections.namedtuple('Issue', ['severity', 'paths'])
51 for issue in dom.getElementsByTagName('issue'):
52 issue_id = issue.attributes['id'].value
53 severity = issue.getAttribute('severity')
56 issue.getElementsByTagName('ignore')])
64 for issue in dom.getElementsByTagName('issue'):
65 issue_id = issue.attributes['id'].valu
    [all...]
  /external/chromium_org/third_party/skia/experimental/PdfViewer/
SkPdfReporter.cpp 37 void SkPdfReport(SkPdfIssueSeverity sev, SkPdfIssue issue,
47 SkPdfIssueSeverity sev, SkPdfIssue issue,
54 SkPdfReport(sev, issue, context, obj, pdfContext);
SkPdfReporter.h 19 // Severity of the issue, if it something interesting info, the result of an NYI feature,
20 // sme ignorable defect in pdf or a major issue.
32 // The type of the issue.
67 SkPdfIssueSeverity sev, SkPdfIssue issue,
72 // Reports an issue, along with information where it happened, for example obj can be used to report
75 void SkPdfReport(SkPdfIssueSeverity sev, SkPdfIssue issue,
82 // TODO(edisonn): pass the keyword/operator too which triggers the issue.
  /external/chromium_org/third_party/skia/tools/
add_codereview_message.py 8 """Add message to codereview issue.
10 This script takes a codereview issue number as its argument and a (possibly
11 multi-line) message on stdin. It appends the message to the given issue.
34 def add_codereview_message(issue, message):
38 codereview_url: (string) we will extract the issue number from
39 this url, or this could simply be the issue number.
46 my_rietveld.add_comment(issue, message)
61 option_parser.error('Missing issue number.')
  /external/chromium_org/third_party/skia/
PRESUBMIT.py 144 issue = input_api.change.issue
145 if issue and input_api.rietveld:
147 issue=int(issue), messages=False)
166 'Issue owner, this CL must include an addition to the Skia AUTHORS '
170 'does not then ask the issue owner to sign the CLA at '
204 issue = input_api.change.issue
205 if issue and input_api.rietveld
    [all...]
  /external/chromium_org/build/android/gyp/
lint.py 54 issues = dom.getElementsByTagName('issue')
56 for issue in issues:
57 issue_id = issue.attributes['id'].value
58 message = issue.attributes['message'].value
59 location_elem = issue.getElementsByTagName('location')[0]
69 error_line = issue.getAttribute(attr)
  /external/chromium_org/tools/clang/plugins/
FindBadConstructsConsumer.cpp 436 // If there are issues, update |loc| with the SourceLocation of the issue
525 unsigned FindBadConstructsConsumer::DiagnosticForIssue(RefcountIssue issue) {
526 switch (issue) {
532 assert(false && "Do not call DiagnosticForIssue with issue None");
565 RefcountIssue issue = CheckRecordForRefcountIssue(record, loc); local
566 if (issue != None) {
567 diagnostic().Report(loc, DiagnosticForIssue(issue));
623 issue = CheckRecordForRefcountIssue(problem_record, loc);
625 if (issue == ImplicitDestructor) {
630 } else if (issue == PublicDestructor)
    [all...]
FindBadConstructsConsumer.h 78 unsigned DiagnosticForIssue(RefcountIssue issue);
  /external/chromium_org/tools/perf/measurements/
smoothness_controller.py 83 'SmoothnessController cannot issue more than 1 %s record' %
100 raise Exception('SmoothnessController failed to issue markers for the '
  /external/oprofile/events/mips/sb1/
events 8 event:0x28 counters:1,2,3 um:zero minimum:500 name:ISSUE_L0 :Issue to L0
9 event:0x29 counters:1,2,3 um:zero minimum:500 name:ISSUE_L1 :Issue to L0
10 event:0x2a counters:1,2,3 um:zero minimum:500 name:ISSUE_E0 :Issue to E0
11 event:0x2b counters:1,2,3 um:zero minimum:500 name:ISSUE_E1 :Issue to E1
23 event:0x20 counters:1,2,3 um:zero minimum:500 name:MAX_ISSUE :Max issue
24 event:0x21 counters:1,2,3 um:zero minimum:500 name:NO_VALID_INSN :No valid instr to issue
28 event:0x25 counters:1,2,3 um:zero minimum:500 name:ISSUE_CONFLICT_DUE_IMISS :issue conflict due to imiss using LS0
29 event:0x26 counters:1,2,3 um:zero minimum:500 name:ISSUE_CONFLICT_DUE_DFILL :issue conflict due to dfill using LS0/1
  /external/chromium_org/testing/gtest/scripts/
upload.py 421 # Issue
422 group = parser.add_option_group("Issue options")
425 help="Optional description when creating an issue.")
430 "the description when creating an issue.")
443 group.add_option("-i", "--issue", type="int", action="store",
444 metavar="ISSUE", default=None,
445 help="Issue number to which to add. Defaults to new issue.")
661 def UploadBaseFiles(self, issue, rpc_server, patch_list, patchset, options,
680 url = "/%d/upload_content/%d/%d" % (int(issue), int(patchset), file_id
    [all...]
  /external/oprofile/events/mips/74K/
events 35 event:0x11 counters:0,2 um:zero minimum:500 name:ALU_OPERANDS_NOT_READY_CYCLES : 17-0 DDQ0 (ALU out-of-order dispatch queue) no issue cycles with valid instructions but operands not ready
36 event:0x12 counters:0,2 um:zero minimum:500 name:ALU_NO_ISSUES_CYCLES : 18-0 DDQ0 (ALU out-of-order dispatch queue) no issue cycles with valid instructions due to operand(s) not available, MDU busy, or CorExt resource busy
38 event:0x14 counters:0,2 um:zero minimum:500 name:SINGLE_ISSUE_CYCLES : 20-0 Either DDQ0 (ALU out-of-order dispatch queue) or DDQ1 (AGEN out-of-order dispatch queue) valid instruction issue cycles
39 event:0x15 counters:0,2 um:zero minimum:500 name:OOO_ALU_ISSUE_CYCLES : 21-0 Out-of-order ALU issue cycles (issued instruction is not the oldest in the pool)
52 event:0x23 counters:0,2 um:zero minimum:500 name:LOAD_MISS_CONSUMER_REPLAYS : 35-0 Replays following optimistic issue of instruction dependent on load which missed, counted only when the dependent instruction graduates
111 event:0x411 counters:1,3 um:zero minimum:500 name:AGEN_OPERANDS_NOT_READY_CYCLES : 17-1 DDQ1 (AGEN out-of-order dispatch queue) no issue cycles with valid instructions but operands not ready
112 event:0x412 counters:1,3 um:zero minimum:500 name:AGEN_NO_ISSUES_CYCLES : 18-1 DDQ1 (AGEN out-of-order dispatch queue) no issue cycles with valid instructions due to operand(s) not available, non-issued stores blocking ready to issue loads, or non-issued CACHEOPs blocking ready to issue loads
114 event:0x414 counters:1,3 um:zero minimum:500 name:DUAL_ISSUE_CYCLES : 20-1 Both DDQ0 (ALU out-of-order dispatch queue) and DDQ1 (AGEN out-of-order dispatch queue) valid instruction issue cycle
    [all...]
  /external/chromium_org/media/tools/layout_tests/
layouttest_analyzer.py 108 option_parser.add_option('-z', '--issue-detail-mode',
110 help=('With this mode, email includes issue details '
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
Throttler.js 38 // Process might issue synchronous calls to this throttler.

Completed in 362 milliseconds

1 2 3 4 5