/external/chromium_org/build/android/lint/ |
suppressions.xml | 13 - You can edit this file manually to suppress an issue 24 <issue id="AllowBackup"> 26 </issue> 27 <issue id="Assert" severity="ignore"/> 28 <issue id="CommitPrefEdits"> 30 </issue> 31 <issue id="DefaultLocale"> 33 </issue> 34 <issue id="DrawAllocation"> 37 </issue> [all...] |
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/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...] |
/external/chromium_org/third_party/WebKit/Source/web/tests/data/pageserializer/ |
page_with_img_error.html | 4 Save Page issue 9 Test for save page image error issue.
|
/frameworks/base/core/res/ |
lint.xml | 4 <issue id="UnusedResources" severity="ignore" /> 6 <issue id="PrivateResource" severity="ignore" />
|
/external/glide/third_party/gif_decoder/ |
lint.xml | 3 <issue id="AllowBackup" severity="ignore" />
|
/frameworks/base/packages/SystemUI/ |
lint.xml | 3 <issue id="PrivateResource" severity="ignore" />
|
/external/glide/library/ |
lint.xml | 3 <issue id="AllowBackup" severity="ignore" /> 4 <issue id="InlinedApi"> 7 </issue>
|
/external/nanopb-c/ |
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...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/tracedmodules/ |
testmod.py | 6 """Test function for issue 9936 """
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/tracedmodules/ |
testmod.py | 6 """Test function for issue 9936 """
|
/ndk/tests/build/issue-gcc59052-partial-specialization-of-template/jni/ |
Android.mk | 4 LOCAL_MODULE := issue-gcc59052-partial-specialization-of-template 5 LOCAL_SRC_FILES := issue-gcc59052-partial-specialization-of-template.cc
|
/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...] |
/external/clang/test/Misc/ |
serialized-diags-single-issue.c | 10 // NOTE: it is important that this test case only contain a single issue. This test case checks 13 // CHECK: {{.*}}serialized-diags-single-issue.c:3:12: warning: variable 'voodoo' is uninitialized when used here [-Wuninitialized] [Semantic Issue] 14 // CHECK: Range: {{.*}}serialized-diags-single-issue.c:3:12 {{.*}}serialized-diags-single-issue.c:3:18 15 // CHECK: +-{{.*}}serialized-diags-single-issue.c:2:13: note: initialize the variable 'voodoo' to silence this warning [] 16 // CHECK: +-Range: {{.*}}serialized-diags-single-issue.c:2:13 {{.*}}serialized-diags-single-issue.c:2:13 17 // CHECK: +-FIXIT: ({{.*}}serialized-diags-single-issue.c:2:13 - {{.*}}serialized-diags-single-issue.c:2:13): " = 0 [all...] |
/external/chromium_org/v8/ |
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/markdown/tests/misc/ |
headers.txt | 11 # Issue #1: Markdown
|
/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.')
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
GlobalLintConfiguration.java | 25 import com.android.tools.lint.detector.api.Issue; 41 private Map<Issue, Severity> mSeverities; 58 public Severity getSeverity(@NonNull Issue issue) { 61 mSeverities = new HashMap<Issue, Severity>(); 68 Issue d = registry.getIssue(s[0]); 80 Severity severity = mSeverities.get(issue); 85 if (!issue.isEnabledByDefault()) { 89 return issue.getDefaultSeverity(); 98 public void ignore(@NonNull Context context, @NonNull Issue issue [all...] |
/external/chromium_org/native_client_sdk/src/doc/ |
help.rst | 10 <report_issue>` using the Native Client issue tracker. 40 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 [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/ |
LintPreferencePage.java | 18 import static com.android.tools.lint.detector.api.Issue.OutputFormat.RAW; 19 import static com.android.tools.lint.detector.api.Issue.OutputFormat.TEXT; 30 import com.android.tools.lint.detector.api.Issue; 98 private Map<Issue, Severity> mSeverities = new HashMap<Issue, Severity>(); 99 private Map<Issue, Severity> mInitialSeverities = Collections.<Issue, Severity>emptyMap(); 241 List<Issue> issues = mRegistry.getIssues(); 242 for (Issue issue : issues) 352 Issue issue = entry.getKey(); local 453 Issue issue = (Issue) data; local 488 Issue issue = (Issue) mTree.getSelection()[0].getData(); local 681 Issue issue = (Issue) element; local 713 Issue issue = (Issue) element; local 733 Issue issue = (Issue) element; local [all...] |
/external/chromium_org/third_party/skia/experimental/PdfViewer/ |
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/skia/experimental/PdfViewer/ |
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/bug_chomper/src/issue_tracker/ |
issue_tracker.go | 6 Utilities for interacting with the GoogleCode issue tracker. 79 // Issue contains information about an issue. 80 type Issue struct { 87 // URL returns the URL of a given issue. 88 func (i Issue) URL() string { 95 Items []*Issue `json:"items"` 98 // IssueTracker is the primary point of contact with the issue tracker, 174 // GetBug retrieves the Issue with the given ID from the IssueTracker. 175 func (it IssueTracker) GetBug(project string, id int) (*Issue, error) [all...] |