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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
AuditCategories.js 44 this.addRule(new WebInspector.AuditRules.UnusedCssRule(), WebInspector.AuditRule.Severity.Warning);
45 this.addRule(new WebInspector.AuditRules.CssInHeadRule(), WebInspector.AuditRule.Severity.Severe);
46 this.addRule(new WebInspector.AuditRules.StylesScriptsOrderRule(), WebInspector.AuditRule.Severity.Severe);
47 this.addRule(new WebInspector.AuditRules.VendorPrefixedCSSProperties(), WebInspector.AuditRule.Severity.Warning);
66 this.addRule(new WebInspector.AuditRules.GzipRule(), WebInspector.AuditRule.Severity.Severe);
67 this.addRule(new WebInspector.AuditRules.ImageDimensionsRule(), WebInspector.AuditRule.Severity.Warning);
68 this.addRule(new WebInspector.AuditRules.CookieSizeRule(400), WebInspector.AuditRule.Severity.Warning);
69 this.addRule(new WebInspector.AuditRules.StaticCookielessRule(5), WebInspector.AuditRule.Severity.Warning);
70 this.addRule(new WebInspector.AuditRules.CombineJsResourcesRule(2), WebInspector.AuditRule.Severity.Severe);
71 this.addRule(new WebInspector.AuditRules.CombineCssResourcesRule(2), WebInspector.AuditRule.Severity.Severe)
    [all...]
  /external/chromium_org/chrome/browser/ui/toolbar/
wrench_icon_painter.h 25 // This class is used to draw the wrench icon. It can signify severity levels
35 enum Severity {
49 // Map an upgrade level to a severity level.
50 static Severity SeverityFromUpgradeLevel(
57 // Get the severity level for global errors.
58 static Severity GlobalErrorSeverity();
63 // If |severity| is not |SEVERITY_NONE| then the wrench icon is colored to
64 // match the severity level.
65 void SetSeverity(Severity severity, bool animate)
    [all...]
wrench_icon_painter.cc 34 WrenchIconPainter::Severity WrenchIconPainter::SeverityFromUpgradeLevel(
59 // Only animate low severity upgrades once.
68 WrenchIconPainter::Severity WrenchIconPainter::GlobalErrorSeverity() {
81 void WrenchIconPainter::SetSeverity(Severity severity, bool animate) {
82 if (severity_ == severity)
85 severity_ = severity;
133 // The bars with color based on severity.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
GlobalLintConfiguration.java 27 import com.android.tools.lint.detector.api.Severity;
41 private Map<Issue, Severity> mSeverities;
58 public Severity getSeverity(@NonNull Issue issue) {
61 mSeverities = new HashMap<Issue, Severity>();
70 Severity severity = Severity.valueOf(s[1]); local
71 if (severity != null) {
72 mSeverities.put(d, severity);
80 Severity severity = mSeverities.get(issue) local
139 Severity severity = severities.get(issue); local
    [all...]
ProjectLintConfiguration.java 27 import com.android.tools.lint.detector.api.Severity;
83 public @NonNull Severity getSeverity(@NonNull Issue issue) {
84 Severity severity = super.getSeverity(issue); local
85 if (mFatalOnly && severity != Severity.FATAL) {
86 return Severity.IGNORE;
88 return severity;
  /external/chromium_org/chrome/browser/ui/cocoa/toolbar/
wrench_toolbar_button_cell.h 17 // and paint severity levels.
24 - (void)setSeverity:(WrenchIconPainter::Severity)severity
  /frameworks/compile/mclinker/lib/LD/
DiagnosticPrinter.cpp 27 void DiagnosticPrinter::handleDiagnostic(DiagnosticEngine::Severity pSeverity,
DiagnosticInfos.cpp 28 DiagnosticEngine::Severity Severity;
113 DiagnosticEngine::Severity severity = static_info->Severity; local
118 severity = DiagnosticEngine::Ignore;
128 severity = DiagnosticEngine::Error;
130 severity = DiagnosticEngine::Ignore;
134 severity = DiagnosticEngine::Error;
136 severity = DiagnosticEngine::Ignore
    [all...]
DiagnosticEngine.cpp 70 DiagnosticEngine::report(uint16_t pID, DiagnosticEngine::Severity pSeverity)
73 m_State.severity = pSeverity;
  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
DiagnosticsBase.h 22 enum Severity
78 Severity severity(ID id);
DiagnosticsBase.cpp 26 Diagnostics::Severity Diagnostics::severity(ID id) function in class:pp::Diagnostics
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
Logging.java 63 public enum Severity {
68 // Enable tracing to |path| of messages of |levels| and |severity|.
71 String path, EnumSet<TraceLevel> levels, Severity severity) {
76 nativeEnableTracing(path, nativeLevel, severity.ordinal());
  /external/chromium_org/chrome/browser/ui/views/toolbar/
wrench_toolbar_button.h 18 void SetSeverity(WrenchIconPainter::Severity severity, bool animate);
wrench_toolbar_button.cc 23 void WrenchToolbarButton::SetSeverity(WrenchIconPainter::Severity severity,
25 wrench_icon_painter_->SetSeverity(severity, animate);
  /frameworks/compile/mclinker/include/mcld/LD/
DiagnosticPrinter.h 42 virtual void handleDiagnostic(DiagnosticEngine::Severity pSeverity,
DiagnosticEngine.h 35 * - choice the severity of a message by options
40 enum Severity {
88 MsgHandler report(uint16_t pID, Severity pSeverity);
103 State() : numArgs(0), ID(-1), severity(None), file(NULL) { }
109 severity = None;
119 Severity severity; member in struct:mcld::DiagnosticEngine::State
TextDiagnosticPrinter.h 34 virtual void handleDiagnostic(DiagnosticEngine::Severity pSeverity,
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/lint/
ProjectLintConfigurationTest.java 31 import com.android.tools.lint.detector.api.Severity;
59 config.setSeverity(usuallyEnabledIssue, Severity.IGNORE);
60 config.setSeverity(usuallyDisabledIssue, Severity.ERROR);
95 otherConfig.setSeverity(usuallyEnabledIssue, Severity.IGNORE);
96 otherConfig.setSeverity(usuallyDisabledIssue, Severity.ERROR);
103 otherConfig.setSeverity(usuallyEnabledIssue, Severity.ERROR);
104 otherConfig.setSeverity(usuallyDisabledIssue, Severity.IGNORE);
109 config.setSeverity(usuallyEnabledIssue, Severity.ERROR);
110 config.setSeverity(usuallyDisabledIssue, Severity.IGNORE);
115 otherConfig.setSeverity(usuallyEnabledIssue, Severity.IGNORE)
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/
Diagnostics.h 25 void writeInfo(Severity severity,
Diagnostics.cpp 24 void TDiagnostics::writeInfo(Severity severity,
31 switch (severity)
62 writeInfo(severity(id), loc, message(id), text, "");
  /external/chromium_org/chrome/browser/ui/global_error/
global_error.h 24 enum Severity {
33 // Returns the error's severity level. If there are multiple errors,
34 // the error with the highest severity will display in the menu. If not
36 virtual Severity GetSeverity();
global_error.cc 19 GlobalError::Severity GlobalError::GetSeverity() { return SEVERITY_MEDIUM; }
global_error_service_unittest.cc 50 explicit MenuError(int command_id, Severity severity)
52 severity_(severity) {
55 virtual Severity GetSeverity() OVERRIDE { return severity_; }
64 Severity severity_;
130 // Test getting the error with the higest severity.
148 // Remove the highest-severity error.
152 // Now error2 should be the next highest severity error.
  /external/chromium_org/chrome/common/extensions/docs/examples/api/devtools/audits/broken-links/
devtools.js 13 auditResults.Severity.Info);
25 auditResults.Severity.Severe,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
LintPreferencePage.java 32 import com.android.tools.lint.detector.api.Severity;
98 private Map<Issue, Severity> mSeverities = new HashMap<Issue, Severity>();
99 private Map<Issue, Severity> mInitialSeverities = Collections.<Issue, Severity>emptyMap();
179 mSearch.setMessage("type filter text (use ~ to filter by severity, e.g. ~ignore)");
229 severityLabel.setText("Severity:");
243 Severity severity = mConfiguration.getSeverity(issue); local
244 mSeverities.put(issue, severity);
327 Severity severity = mConfiguration.getSeverity(issue); local
353 Severity severity = entry.getValue(); local
464 Severity severity = getSeverity(issue); local
489 Severity severity; local
519 Severity severity = mSeverities.get(issue); local
682 Severity severity = mSeverities.get(issue); local
734 Severity severity = mSeverities.get(issue); local
    [all...]

Completed in 1819 milliseconds

1 2 3