HomeSort by relevance Sort by last modified time
    Searched full:severity (Results 1 - 25 of 400) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/Perl5/t/author/
perlcriticrc 0 severity = 5
  /frameworks/base/core/res/
lint.xml 4 <issue id="UnusedResources" severity="ignore" />
6 <issue id="PrivateResource" severity="ignore" />
  /frameworks/base/packages/SystemUI/
lint.xml 3 <issue id="PrivateResource" severity="ignore" />
  /tools/motodev/src/plugins/db.core/src/com/motorolamobility/studio/android/db/core/
CanRefreshStatus.java 26 * Status type severity (bit mask, value 16) indicating that a user interaction will be needed.
34 * Status type severity (bit mask, value 16) indicating that a user interaction will be needed.
45 * @param severity the severity code.
50 public CanRefreshStatus(int severity, String pluginId, IStatus[] newChildren, String message,
54 setSeverity(severity);
60 * @param severity the severity code.
64 public CanRefreshStatus(int severity, String pluginId, String message, Throwable exception)
67 setSeverity(severity);
    [all...]
  /build/tools/
warn.py 12 class severity: class in inherits:
22 if sev == severity.FIXMENOW:
24 if sev == severity.HIGH:
26 if sev == severity.MEDIUM:
28 if sev == severity.LOW:
30 if sev == severity.HARMLESS:
32 if sev == severity.UNKNOWN:
37 { 'category':'make', 'severity':severity.MEDIUM, 'members':[], 'option':'',
41 { 'category':'C/C++', 'severity':severity.HIGH, 'members':[], 'option':'-Wimplicit-function-declaration'
    [all...]
  /tools/motodev/src/plugins/preflighting.core/src/com/motorolamobility/preflighting/core/checker/condition/
CanExecuteConditionStatus.java 61 * @param severity The severity of the status. One may find them as constants for the
66 public CanExecuteConditionStatus(int severity, String pluginId, String message)
68 super(severity, pluginId, message);
76 * @param severity The severity of the status. One may find them as constants for the
82 public CanExecuteConditionStatus(int severity, String pluginId, String message,
85 super(severity, pluginId, message, exception);
94 * @param severity The severity of the status. One may find them as constants for th
    [all...]
  /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;
  /tools/motodev/src/plugins/preflighting.core/src/com/motorolamobility/preflighting/core/validation/
ValidationResultData.java 33 * Severity level of the result.
35 public enum SEVERITY
90 private SEVERITY severity = SEVERITY.OK; field in class:ValidationResultData
127 * @param severity {@link SEVERITY} of the issue.
132 public ValidationResultData(Map<File, List<Integer>> fileToIssueLines, SEVERITY severity,
137 this.severity = severity;
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
AuditCategories.js 40 this.addRule(new WebInspector.AuditRules.UnusedCssRule(), WebInspector.AuditRule.Severity.Warning);
41 this.addRule(new WebInspector.AuditRules.CssInHeadRule(), WebInspector.AuditRule.Severity.Severe);
42 this.addRule(new WebInspector.AuditRules.StylesScriptsOrderRule(), WebInspector.AuditRule.Severity.Severe);
57 this.addRule(new WebInspector.AuditRules.GzipRule(), WebInspector.AuditRule.Severity.Severe);
58 this.addRule(new WebInspector.AuditRules.ImageDimensionsRule(), WebInspector.AuditRule.Severity.Warning);
59 this.addRule(new WebInspector.AuditRules.CookieSizeRule(400), WebInspector.AuditRule.Severity.Warning);
60 this.addRule(new WebInspector.AuditRules.StaticCookielessRule(5), WebInspector.AuditRule.Severity.Warning);
61 this.addRule(new WebInspector.AuditRules.CombineJsResourcesRule(2), WebInspector.AuditRule.Severity.Severe);
62 this.addRule(new WebInspector.AuditRules.CombineCssResourcesRule(2), WebInspector.AuditRule.Severity.Severe);
63 this.addRule(new WebInspector.AuditRules.MinimizeDnsLookupsRule(4), WebInspector.AuditRule.Severity.Warning)
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DOMErrorImpl.java 45 private final short severity; field in class:DOMErrorImpl
48 public DOMErrorImpl(short severity, String type) {
49 this.severity = severity;
54 return severity;
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOMErrorImpl.java 39 // The DOMError Severity
69 * @param severity
73 public DOMErrorImpl(short severity, String message, String type) {
74 fSeverity = severity;
80 * @param severity
85 public DOMErrorImpl(short severity, String message, String type,
87 fSeverity = severity;
94 * @param severity
101 public DOMErrorImpl(short severity, String message, String type,
103 fSeverity = severity;
    [all...]
DOMErrorHandlerImpl.java 49 String severity = null; local
52 severity = "[Warning]";
54 severity = "[Error]";
56 severity = "[Fatal Error]";
59 System.err.println(severity + ": " + error.getMessage() + "\t");
  /sdk/manifmerger/src/com/android/manifmerger/
MergerLog.java 39 @NonNull Severity severity,
44 switch(severity) {
67 public void conflict(@NonNull Severity severity,
73 switch(severity) {
119 @NonNull Severity severity,
128 parentLog.error(severity, location, message, msgParams);
132 public void conflict(@NonNull Severity severity
    [all...]
  /tools/motodev/src/plugins/preflighting.core/src/com/motorolamobility/preflighting/core/verbose/
WarningLevelFilter.java 28 import com.motorolamobility.preflighting.core.validation.ValidationResultData.SEVERITY;
176 if (resultData.getSeverity().equals(SEVERITY.FATAL))
181 else if (resultData.getSeverity().equals(SEVERITY.ERROR))
194 SEVERITY.FATAL);
201 SEVERITY.ERROR);
208 SEVERITY.OK);
216 filteredValidationResult, SEVERITY.FATAL);
222 SEVERITY.OK);
230 filteredValidationResult, SEVERITY.ERROR);
236 SEVERITY.OK);
    [all...]
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/client/api/
Configuration.java 24 import com.android.tools.lint.detector.api.Severity;
47 * {@link LintClient#report(Context, Issue, Severity, Location, String, Object)}
62 * a convenience method for {@code getSeverity(issue) != Severity.IGNORE}.
68 return getSeverity(issue) != Severity.IGNORE;
72 * Returns the severity for a given issue. This is the same as the
74 * severity (which is tool context dependent).
76 * @param issue the issue to look up the severity from
77 * @return the severity use for issues for the given detector
79 public Severity getSeverity(@NonNull Issue issue) {
102 * Sets the severity to be used for this issue
    [all...]
  /external/chromium/base/
logging.h 46 // things to LOG(<a particular severity level>). E.g.,
132 // The supported severity levels for macros that allow you to specify one
133 // are (in increasing order of severity) INFO, WARNING, ERROR, ERROR_REPORT,
136 // Very important: logging a message at the FATAL severity level causes
139 // Note the special severity of ERROR_REPORT only available/relevant in normal
141 // no error dialog for severity ERROR or below in normal mode.
143 // There is also the special severity of DFATAL, which logs FATAL in
275 typedef bool (*LogMessageHandlerFunction)(int severity,
344 #define LOG_IS_ON(severity) \
345 ((::logging::LOG_ ## severity) >= ::logging::GetMinLogLevel()
    [all...]
logging_win.cc 25 bool LogEventProvider::LogMessage(logging::LogSeverity severity,
30 // Convert the log severity to the most appropriate ETW trace level.
31 if (severity >= 0) {
32 switch (severity) {
47 } else { // severity < 0 is VLOG verbosity levels.
48 level = TRACE_LEVEL_INFORMATION - severity;
93 if (severity < provider->old_log_level_)
117 // Convert the new trace level to a logging severity
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/detector/api/
Severity.java 23 * Severity of an issue found by lint
29 public enum Severity {
65 private Severity(@NonNull String display) {
70 * Returns a description of this severity suitable for display to the user
72 * @return a description of the severity
  /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;
60 config.setSeverity(usuallyEnabledIssue, Severity.IGNORE);
61 config.setSeverity(usuallyDisabledIssue, Severity.ERROR);
96 otherConfig.setSeverity(usuallyEnabledIssue, Severity.IGNORE);
97 otherConfig.setSeverity(usuallyDisabledIssue, Severity.ERROR);
104 otherConfig.setSeverity(usuallyEnabledIssue, Severity.ERROR);
105 otherConfig.setSeverity(usuallyDisabledIssue, Severity.IGNORE);
110 config.setSeverity(usuallyEnabledIssue, Severity.ERROR);
111 config.setSeverity(usuallyDisabledIssue, Severity.IGNORE);
116 otherConfig.setSeverity(usuallyEnabledIssue, Severity.IGNORE)
    [all...]
  /packages/apps/Phone/
lint.xml 19 <issue id="UsesSdk" severity="ignore" />
20 <issue id="PrivateResource" severity="ignore" />
  /frameworks/compile/mclinker/lib/LD/
DiagnosticInfos.cpp 26 DiagnosticEngine::Severity Severity;
110 DiagnosticEngine::Severity severity = static_info->Severity; local
115 severity = DiagnosticEngine::Ignore;
125 severity = DiagnosticEngine::Error;
127 severity = DiagnosticEngine::Ignore;
131 severity = DiagnosticEngine::Error;
133 severity = DiagnosticEngine::Ignore
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/
DOMErrorImpl.java 25 private final short severity; field in class:DOMErrorImpl
37 this.severity = src.getSeverity();
46 return severity;
  /tools/motodev/src/plugins/android/src/com/motorola/studio/android/utilities/
AndroidStatus.java 38 * @param severity
41 public AndroidStatus(int severity, String msg)
43 super(severity, AndroidPlugin.PLUGIN_ID, msg);
  /tools/motodev/src/plugins/common/src/com/motorola/studio/android/common/utilities/
AndroidStatus.java 40 * @param severity
43 public AndroidStatus(int severity, String msg)
45 super(severity, CommonPlugin.PLUGIN_ID, msg);

Completed in 919 milliseconds

1 2 3 4 5 6 7 8 91011>>