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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/angle/src/compiler/translator/
Diagnostics.cpp 24 void TDiagnostics::writeInfo(Severity severity,
31 switch (severity)
62 writeInfo(severity(id), loc, message(id), text, "");
  /frameworks/compile/mclinker/lib/LD/
DiagnosticInfos.cpp 28 DiagnosticEngine::Severity Severity;
118 DiagnosticEngine::Severity severity = static_info->Severity; local
123 severity = DiagnosticEngine::Ignore;
134 severity = DiagnosticEngine::Error;
136 severity = DiagnosticEngine::Ignore;
140 severity = DiagnosticEngine::Error;
142 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;
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/net/test/
scoped_mock_log.cc 49 bool ScopedMockLog::LogMessageHandler(int severity,
54 return g_instance_->Log(severity, file, line, message_start, str);
  /external/chromium_org/base/
logging.h 47 // things to LOG(<a particular severity level>). E.g.,
129 // The supported severity levels for macros that allow you to specify one
130 // are (in increasing order of severity) INFO, WARNING, ERROR, and FATAL.
132 // Very important: logging a message at the FATAL severity level causes
135 // There is the special severity of DFATAL, which logs FATAL in debug mode,
278 typedef bool (*LogMessageHandlerFunction)(int severity,
342 #define LOG_IS_ON(severity) \
343 ((::logging::LOG_ ## severity) >= ::logging::GetMinLogLevel())
365 #define LOG_STREAM(severity) COMPACT_GOOGLE_LOG_ ## severity.stream(
    [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) {
46 } else { // severity < 0 is VLOG verbosity levels.
47 level = TRACE_LEVEL_INFORMATION - severity;
92 if (severity < provider->old_log_level_)
116 // Convert the new trace level to a logging 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
  /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_org/third_party/WebKit/Source/devtools/front_end/audits/
AuditResultView.js 71 var result = WebInspector.AuditRule.SeverityOrder[a.severity || 0] - WebInspector.AuditRule.SeverityOrder[b.severity || 0];
81 var treeElement = this._appendResult(this._treeOutline, ruleResult, ruleResult.severity);
91 * @param {?WebInspector.AuditRule.Severity=} severity
93 _appendResult: function(parentTreeElement, result, severity)
104 if (severity) {
106 severityElement.className = "severity-" + severity;
  /external/chromium_org/chrome/browser/ui/views/toolbar/
wrench_toolbar_button.cc 20 void WrenchToolbarButton::SetSeverity(WrenchIconPainter::Severity severity,
22 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) {
45 if (severity < 0)
46 *out << "VERBOSE" << -severity;
100 logging::LogSeverity severity,
104 logging::LogSeverity severity,
205 logging::LogSeverity severity,
208 WriteSeverityToStream(severity, &level_stream);
214 logging::LogSeverity severity,
222 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());
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glDebugMessageInsertKHR.cpp 1 /* void glDebugMessageInsertKHR ( GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf ) */
4 (JNIEnv *_env, jobject _this, jint source, jint type, jint id, jint severity, jstring buf) {
24 (GLenum)severity,
  /art/runtime/base/
logging_android.cc 35 int priority = kLogSeverityToAndroidLogPriority[data.severity];
logging.cc 122 LogMessageData::LogMessageData(const char* file, int line, LogSeverity severity, int error)
125 severity(severity),
132 if (data_->severity < gMinimumLogSeverity) {
160 if (data_->severity == FATAL) {
  /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 69 .extension-error-severity-info .extension-error-message {
72 .extension-error-severity-info .extension-error-icon {
76 .extension-error-severity-warning .extension-error-message {
79 .extension-error-severity-warning .extension-error-icon {
83 .extension-error-severity-fatal .extension-error-message {
86 .extension-error-severity-fatal .extension-error-icon {
  /external/qemu/android/base/
Log.cpp 31 // Convert a severity level into a string.
32 const char* severityLevelToString(LogSeverity severity) {
36 if (severity >= 0 && severity < LOG_NUM_SEVERITIES)
37 return kSeverityStrings[severity];
47 severityLevelToString(params.severity),
60 if (params.severity >= LOG_FATAL)
117 LogStream::LogStream(const char* file, int lineno, LogSeverity severity) :
118 mParams(file, lineno, severity),
214 LogMessage::LogMessage(const char* file, int line, LogSeverity severity)
    [all...]
  /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...]

Completed in 709 milliseconds

12 3 4 5 6 7 8 91011>>