/external/nanopb-c/ |
D | CHANGELOG.txt | 2 Fix bug with default values for extension fields (issue 111) 3 Fix some MISRA-C warnings (issue 91) 4 Implemented optional malloc() support (issue 80) 6 Add a "found" field to pb_extension_t (issue 112) 7 Add convenience function pb_get_encoded_size() (issue 16) 10 Fix generator error with bytes callback fields (issue 99) 11 Fix warnings about large integer constants (issue 102) 12 Add comments to where STATIC_ASSERT is used (issue 96) 13 Add warning about unknown field names on .options (issue 105) 14 Move descriptor.proto to google/protobuf subdirectory (issue 104) [all …]
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/buildbot/ |
D | active_issues.js | 24 updateIssue: function(issue) { argument 25 var eventType = this.issues_.hasOwnProperty(issue.issue) ? 27 this.issues_[issue.issue] = issue; 28 this.postEvent_({event: eventType, issue: issue.issue}); property 31 removeIssue: function(issue) { argument 32 delete this.issues_[issue.issue]; 33 this.postEvent_({event: "issueRemoved", issue: issue.issue}); property
|
D | bg.js | 164 function fetchPatches(issue, updatedCallback) { argument 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; 209 buildbot.requestURL(issueURL, "json", function(issue) { argument 210 fetchPatches(issue, function(state) { [all …]
|
D | popup.js | 121 function getLastFullPatchsetWithTryJobs(issue) { argument 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) { argument 142 parseInt(issue.issue) > 148 row.setAttribute("data-issue", issue.issue); [all …]
|
D | popup.css | 40 [data-issue] + .trunk-status-row > td, 45 div.issue-status { 52 .issue-status-build {
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
D | patch_servlet_test.py | 60 def _RenderWithPatch(self, path, issue): argument 61 path_with_issue = '%s/%s' % (issue, path) 69 def _RenderAndCheck(self, path, issue, expected_equal): argument 74 patched_response = self._RenderWithPatch(path, issue) 84 patch_servlet_path = '_patch/%s' % issue 97 def _RenderAndAssertEqual(self, path, issue): argument 98 self._RenderAndCheck(path, issue, True) 100 def _RenderAndAssertNotEqual(self, path, issue): argument 101 self._RenderAndCheck(path, issue, False) 104 def _AssertNotFound(self, path, issue): argument [all …]
|
D | patch_servlet.py | 26 def __init__(self, issue, delegate): argument 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/v8/ |
D | ChangeLog | 8 Preserve message when rethrowing exception (issue 3583). 10 Fix escaped index JSON parsing (Chromium issue 416449). 27 Fix escaped index JSON parsing (Chromium issue 416449). 34 Enable ES6 generators (issue 2355). 36 Fixed int vs. uintptr_t confusion (plus some cleanup on the way) (issue 56 ES6: String(symbol) should work like symbol.toString (issue 3554). 58 Arrow functions: Cleanup handling of the prototype property (issue 61 Remove V8_HOST_CAN_READ_UNALIGNED and its uses (Chromium issue 412967). 63 Fix Smi vs. HeapObject confusion in HConstants (Chromium issue 412215). 70 Do not use wide reads in CopyCharsUnsigned (Chromium issue 412967). [all …]
|
/external/clang/www/ |
D | make_cxx_dr_status | 17 def __init__(self, section, issue, url, status, title): argument 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) 96 def availability(issue): argument 97 status = status_map.get(issue, 'unknown') [all …]
|
/external/chromium_org/build/android/lint/ |
D | suppress.py | 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'].value 66 severity = issue.attributes['severity'].value 67 path = issue.getElementsByTagName('location')[0].attributes['file'].value 80 issue = new_dom.createElement('issue') 81 issue.attributes['id'] = issue_id [all …]
|
/external/chromium_org/native_client_sdk/src/doc/ |
D | help.rst | 10 <report_issue>` using the Native Client issue tracker. 43 To report a new issue: 45 #. Go to the `Native Client issue tracker 47 bug, or the `Chromium issue tracker 49 #. Before you report an issue, search to see if your issue has already 50 been reported. You can add a comment to an existing issue if you have 52 #. To report a new issue, fill out the Summary and Description fields on 53 the issue form and click the "Submit issue" button. You can report: 57 * A `Native Client security issue 60 * A `Native Client + Chrome integration issue [all …]
|
/external/chromium_org/third_party/tcmalloc/vendor/packages/ |
D | 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/cmockery/cmockery_0_1_2/packages/ |
D | 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/sdch/open-vcdiff/packages/ |
D | 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/chromium_org/third_party/skia/ |
D | PRESUBMIT.py | 144 issue = input_api.change.issue 145 if issue and input_api.rietveld: 147 issue=int(issue), messages=False) 204 issue = input_api.change.issue 205 if issue and input_api.rietveld: 207 issue=int(issue), messages=True)
|
/external/chromium_org/third_party/skia/tools/bug_chomper/src/issue_tracker/ |
D | issue_tracker.go | 191 var issue Issue 192 if err := json.Unmarshal(body, &issue); err != nil { 195 return &issue, nil 240 func (it IssueTracker) SubmitIssueChanges(issue *Issue, comment string) error { 241 errFmt := "Error updating issue " + strconv.Itoa(issue.Id) + ": %s" 245 oldIssue, err := it.GetBug(issue.Project, issue.Id) 258 if issue.Title != oldIssue.Title { 259 postData.Updates.Title = &issue.Title 263 for _, label := range issue.Labels { 289 requestURL := issueApiURL + issue.Project + "/issues/" + [all …]
|
/external/skia/tools/bug_chomper/src/issue_tracker/ |
D | issue_tracker.go | 191 var issue Issue 192 if err := json.Unmarshal(body, &issue); err != nil { 195 return &issue, nil 240 func (it IssueTracker) SubmitIssueChanges(issue *Issue, comment string) error { 241 errFmt := "Error updating issue " + strconv.Itoa(issue.Id) + ": %s" 245 oldIssue, err := it.GetBug(issue.Project, issue.Id) 258 if issue.Title != oldIssue.Title { 259 postData.Updates.Title = &issue.Title 263 for _, label := range issue.Labels { 289 requestURL := issueApiURL + issue.Project + "/issues/" + [all …]
|
/external/skia/experimental/PdfViewer/ |
D | SkPdfReporter.cpp | 37 void SkPdfReport(SkPdfIssueSeverity sev, SkPdfIssue issue, in SkPdfReport() argument 47 SkPdfIssueSeverity sev, SkPdfIssue issue, in SkPdfReportIf() argument 54 SkPdfReport(sev, issue, context, obj, pdfContext); in SkPdfReportIf()
|
D | SkPdfReporter.h | 67 SkPdfIssueSeverity sev, SkPdfIssue issue, 75 void SkPdfReport(SkPdfIssueSeverity sev, SkPdfIssue issue,
|
/external/chromium_org/third_party/skia/experimental/PdfViewer/ |
D | SkPdfReporter.cpp | 37 void SkPdfReport(SkPdfIssueSeverity sev, SkPdfIssue issue, in SkPdfReport() argument 47 SkPdfIssueSeverity sev, SkPdfIssue issue, in SkPdfReportIf() argument 54 SkPdfReport(sev, issue, context, obj, pdfContext); in SkPdfReportIf()
|
/external/chromium_org/build/android/gyp/ |
D | lint.py | 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/skia/tools/ |
D | add_codereview_message.py | 65 issue = codereview_url.strip('/').split('/')[-1] 68 branch_name = 'issue_%s' % issue 77 vsp.check_call([git, 'cl', 'patch', issue])
|
/external/ppp/pppd/plugins/radius/etc/ |
D | radiusclient.conf | 25 issue /usr/local/etc/radiusclient/issue
|
/external/chromium_org/third_party/skia/tools/ |
D | add_codereview_message.py | 34 def add_codereview_message(issue, message): argument 46 my_rietveld.add_comment(issue, message)
|
/external/chromium_org/tools/clang/plugins/ |
D | FindBadConstructsConsumer.cpp | 525 unsigned FindBadConstructsConsumer::DiagnosticForIssue(RefcountIssue issue) { in DiagnosticForIssue() argument 526 switch (issue) { in DiagnosticForIssue() 565 RefcountIssue issue = CheckRecordForRefcountIssue(record, loc); in CheckRefCountedDtors() local 566 if (issue != None) { in CheckRefCountedDtors() 567 diagnostic().Report(loc, DiagnosticForIssue(issue)); in CheckRefCountedDtors() 623 issue = CheckRecordForRefcountIssue(problem_record, loc); in CheckRefCountedDtors() 625 if (issue == ImplicitDestructor) { in CheckRefCountedDtors() 630 } else if (issue == PublicDestructor) { in CheckRefCountedDtors()
|