HomeSort by relevance Sort by last modified time
    Searched refs:severity (Results 26 - 50 of 257) sorted by null

12 3 4 5 6 7 8 91011

  /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;
DOMErrorMonitor.java 57 public void assertLowerSeverity(DOMTestCase testCase, String id, int severity) {
61 if (error.getSeverity() >= 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...]
  /external/chromium_org/third_party/cld/base/
logging.h 32 // things to LOG(<a particular severity level>). E.g.,
143 // The supported severity levels for macros that allow you to specify one
144 // are (in increasing order of severity) INFO, WARNING, ERROR, and FATAL.
145 // Note that messages of a given severity are logged not only in the
146 // logfile for that severity, but also in all logfiles of lower severity.
147 // E.g., a message of severity FATAL will be logged to the logfiles of
148 // severity FATAL, ERROR, WARNING, and INFO.
150 // There is also the special severity of DFATAL, which logs FATAL in
153 // Very important: logging a message at the FATAL severity level cause
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/
logging.cc 23 void Log(logging::LogSeverity severity, const char* format, ...) {
36 ptr->Log(severity, what);
  /external/chromium_org/chrome/browser/ui/cocoa/toolbar/
wrench_toolbar_button_cell.h 17 // and paint severity levels.
24 - (void)setSeverity:(WrenchIconPainter::Severity)severity
  /external/chromium_org/remoting/host/plugin/
host_log_handler.h 32 static bool LogToUI(int severity, const char* file, int line,
  /external/chromium/third_party/libevent/
log.c 65 static void _warn_helper(int severity, int log_errno, const char *fmt,
67 static void event_log(int severity, const char *msg);
132 _warn_helper(int severity, int log_errno, const char *fmt, va_list ap)
150 event_log(severity, buf);
162 event_log(int severity, const char *msg)
165 log_fn(severity, msg);
168 switch (severity) {
  /external/chromium_org/third_party/libevent/
log.c 65 static void _warn_helper(int severity, int log_errno, const char *fmt,
67 static void event_log(int severity, const char *msg);
132 _warn_helper(int severity, int log_errno, const char *fmt, va_list ap)
150 event_log(severity, buf);
162 event_log(int severity, const char *msg)
165 log_fn(severity, msg);
168 switch (severity) {
  /external/chromium_org/build/android/lint/
suppress.py 44 _Issue = collections.namedtuple('Issue', ['severity', 'paths'])
53 severity = issue.getAttribute('severity')
57 issues_dict[issue_id] = _Issue(severity, paths)
66 severity = issue.attributes['severity'].value
69 issues_dict[issue_id] = _Issue(severity, set())
78 severity = issues_dict[issue_id].severity
82 if severity
    [all...]
  /external/chromium/googleurl/base/
logging.h 43 // things to LOG(<a particular severity level>). E.g.,
74 // The supported severity levels for macros that allow you to specify one
75 // are (in increasing order of severity) INFO, WARNING, ERROR, and FATAL.
77 // There is also the special severity of DFATAL, which logs FATAL in
80 // Very important: logging a message at the FATAL severity level causes
124 // Sets the log filter prefix. Any log message below LOG_ERROR severity that
127 // with severity of LOG_ERROR or higher will not be filtered.
190 #define LOG(severity) COMPACT_GOOGLE_LOG_ ## severity.stream()
191 #define SYSLOG(severity) LOG(severity
    [all...]
  /external/chromium_org/chrome/browser/ui/views/toolbar/
wrench_toolbar_button.cc 23 void WrenchToolbarButton::SetSeverity(WrenchIconPainter::Severity severity,
25 wrench_icon_painter_->SetSeverity(severity, animate);
wrench_toolbar_button.h 18 void SetSeverity(WrenchIconPainter::Severity severity, bool animate);
  /external/chromium_org/chrome/test/logging/win/
log_file_reader.h 45 logging::LogSeverity severity,
50 logging::LogSeverity severity,
log_file_printer.cc 30 void WriteSeverityToStream(logging::LogSeverity severity, std::ostream* out) {
31 switch (severity) {
48 if (severity < 0)
49 *out << "VERBOSE" << -severity;
103 logging::LogSeverity severity,
107 logging::LogSeverity severity,
208 logging::LogSeverity severity,
211 WriteSeverityToStream(severity, &level_stream);
217 logging::LogSeverity severity,
225 WriteSeverityToStream(severity, &level_stream)
    [all...]
  /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/clang/tools/libclang/
CXLoadedDiagnostic.h 27 severity(0), category(0) {}
31 /// \brief Return the severity of the diagnostic.
89 unsigned severity; member in class:clang::CXLoadedDiagnostic
  /art/runtime/base/
logging_android.cc 35 int priority = kLogSeverityToAndroidLogPriority[data.severity];
  /external/chromium_org/chrome/installer/util/
installation_validation_helper.cc 28 static bool AddFailureForLogMessage(int severity,
75 // the severity of validation violations. All other messages are sent through
78 bool FailureLogHelper::AddFailureForLogMessage(int severity,
83 if (severity == kViolationSeverity_ && !str.empty()) {
94 return (old_message_handler_)(severity, file, line, message_start, str);
  /external/chromium_org/chrome/browser/resources/extensions/
extension_error.css 52 .extension-error-severity-info .extension-error-message {
55 .extension-error-severity-info .extension-error-icon {
59 .extension-error-severity-warning .extension-error-message {
62 .extension-error-severity-warning .extension-error-icon {
66 .extension-error-severity-fatal .extension-error-message {
69 .extension-error-severity-fatal .extension-error-icon {
  /external/chromium/base/
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
  /external/chromium_org/base/
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
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
errors.c 54 #define severity_is(sev, kind) enum_is(sev, SEVERITY, kind)
140 * on all message IDs of a certain severity, then Insert() one of the
141 * previously specified IDs, giving us a known severity level, then call
142 * Control() on all message IDs of a certain severity level again.
145 * exist in any severity-specific list, so the second call will not
147 * The only entrypoint that gives a severity for a client-defined ID
151 * that an ID will either appear in none of the three severity lists,
154 * Because Insert() is the only place that will learn an ID's severity,
173 * 'source', 'type', and 'severity' are array indices like TYPE_ERROR,
178 GLuint id, int severity)
655 int source, type, severity; local
1089 severity; local
    [all...]
  /external/mesa3d/src/mesa/main/
errors.c 54 #define severity_is(sev, kind) enum_is(sev, SEVERITY, kind)
140 * on all message IDs of a certain severity, then Insert() one of the
141 * previously specified IDs, giving us a known severity level, then call
142 * Control() on all message IDs of a certain severity level again.
145 * exist in any severity-specific list, so the second call will not
147 * The only entrypoint that gives a severity for a client-defined ID
151 * that an ID will either appear in none of the three severity lists,
154 * Because Insert() is the only place that will learn an ID's severity,
173 * 'source', 'type', and 'severity' are array indices like TYPE_ERROR,
178 GLuint id, int severity)
655 int source, type, severity; local
1089 severity; local
    [all...]
  /external/chromium_org/ash/system/
tray_update.cc 40 int DecideResource(ash::UpdateObserver::UpdateSeverity severity, bool dark) {
41 switch (severity) {
59 NOTREACHED() << "Unknown update severity level.";
65 explicit UpdateView(ash::UpdateObserver::UpdateSeverity severity) {
74 image->SetImage(bundle.GetImageNamed(DecideResource(severity, true)).
193 void TrayUpdate::OnUpdateRecommended(UpdateObserver::UpdateSeverity severity) {
194 severity_ = severity;

Completed in 326 milliseconds

12 3 4 5 6 7 8 91011