Searched refs:severity (Results 101 - 125 of 201) sorted by relevance

123456789

/external/libvpx/libvpx/
H A Dwebmdec.c49 unsigned int severity,
48 nestegg_log_cb(nestegg *context, unsigned int severity, char const *format, ...) argument
/external/chromium_org/chrome/browser/metrics/variations/
H A Dvariations_service_unittest.cc94 virtual void OnExperimentChangesDetected(Severity severity) OVERRIDE {
95 switch (severity) {
114 // Number of notification received with BEST_EFFORT severity.
117 // Number of notification received with CRITICAL severity.
/external/chromium_org/ppapi/native_client/src/trusted/plugin/
H A Dservice_runtime.cc519 bool ServiceRuntime::RemoteLog(int severity, const std::string& msg) { argument
523 severity,
/external/chromium_org/chrome/browser/ui/webui/chromeos/
H A Ddrive_internals_ui.cc182 std::string SeverityToString(logging::LogSeverity severity) { argument
183 switch (severity) {
747 std::string severity = SeverityToString(log[i].severity); local
752 dict->SetString("value", "[" + severity + "] " + log[i].what);
753 dict->SetString("class", "log-" + severity);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/extensions/
H A DExtensionAPI.js208 addMessage: function(severity, text, url, line)
210 extensionServer.sendRequest({ command: commands.AddConsoleMessage, severity: severity, text: text, url: url, line: line });
637 addResult: function(displayName, description, severity, details)
648 severity: severity,
H A DExtensionServer.js410 var level = convertSeverity(message.severity);
412 return this._status.E_BADARG("message.severity", message.severity);
446 severity: convertLevel(message.level),
596 auditResult.addResult(message.displayName, message.description, message.severity, message.details);
/external/chromium_org/third_party/accessibility-audit/
H A Daxs_testing.js1352 this.severity = a.severity;
1360 axs.AuditRule.requiredFields = "name severity relevantElementMatcher test code heading".split(" ");
1490 this.rules_[a].severity = b;
1492 return a in this.rules_ && "severity" in this.rules_[a] ? this.rules_[a].severity : null;
1526 g.severity = a.getSeverity(f) || g.severity;
1537 d.result == axs.constants.AuditResult.FAIL && (d.rule.severity == axs.constants.Severity.SEVERE ? b.addError(axs.Audit.accessibilityErrorMessage(d)) : b.addWarning(axs.Audit.accessibilityErrorMessage(d)));
1550 for (var b = a.rule.severity
[all...]
/external/chromium_org/testing/gtest/src/
H A Dgtest-port.cc869 GTestLog::GTestLog(GTestLogSeverity severity, const char* file, int line) argument
870 : severity_(severity) {
872 severity == GTEST_INFO ? "[ INFO ]" :
873 severity == GTEST_WARNING ? "[WARNING]" :
874 severity == GTEST_ERROR ? "[ ERROR ]" : "[ FATAL ]";
879 // Flushes the buffers and, if severity is GTEST_FATAL, aborts the program.
/external/chromium_org/dbus/
H A Dobject_proxy.cc564 logging::LogSeverity severity = logging::LOG_ERROR;
569 severity = logging::LOG_WARNING;
574 logging::LogAtLevel(severity, msg.str());
/external/clang/tools/libclang/
H A DCXLoadedDiagnostic.cpp71 auto severityAsLevel = static_cast<serialized_diags::Level>(severity);
72 assert(severity == static_cast<unsigned>(severityAsLevel) &&
642 D->severity = Record[0];
/external/chromium_org/chrome/browser/ui/ash/
H A Dsystem_tray_delegate_chromeos.cc1092 ash::UpdateObserver::UpdateSeverity severity = local
1096 severity = ash::UpdateObserver::UPDATE_SEVERE_RED;
1100 severity = ash::UpdateObserver::UPDATE_HIGH_ORANGE;
1104 severity = ash::UpdateObserver::UPDATE_LOW_GREEN;
1109 severity = ash::UpdateObserver::UPDATE_NORMAL;
1112 GetSystemTrayNotifier()->NotifyUpdateRecommended(severity);
/external/chromium_org/chrome/test/base/
H A Dweb_ui_browser_test.cc50 bool LogHandler(int severity, argument
55 if (severity == logging::LOG_ERROR && file &&
/external/chromium_org/content/gpu/
H A Dgpu_main.cc91 bool GpuProcessLogMessageHandler(int severity, argument
98 severity, header, message));
/external/chromium_org/chrome/browser/ui/views/toolbar/
H A Dtoolbar_view.h199 WrenchIconPainter::Severity severity,
H A Dtoolbar_view.cc694 WrenchIconPainter::Severity severity,
706 app_menu_->SetSeverity(severity, animate);
693 UpdateBadgeSeverity(WrenchMenuBadgeController::BadgeType type, WrenchIconPainter::Severity severity, bool animate) argument
/external/chromium_org/net/disk_cache/blockfile/
H A Dstress_cache.cc238 bool MessageHandler(int severity, const char* file, int line, argument
/external/chromium_org/remoting/client/plugin/
H A Dchromoting_instance.h168 static bool LogToUI(int severity, const char* file, int line,
/external/chromium_org/chrome/browser/sync/glue/
H A Dsync_backend_host_core.cc30 #define SLOG(severity) LOG(severity) << name_ << ": "
/external/chromium_org/third_party/webrtc/base/
H A Dlogging.cc397 LoggingSeverity severity) {
434 // Android's logging facility uses severity to log messages but we
435 // need to map libjingle's severity levels to Android ones first.
439 switch (severity) {
396 OutputToDebug(const std::string& str, LoggingSeverity severity) argument
/external/chromium_org/third_party/libevent/
H A Devent.h343 typedef void (*event_log_cb)(int severity, const char *msg);
347 @param cb a function taking two arguments: an integer severity between
/external/chromium_org/third_party/libxml/src/include/libxml/
H A Dxmlreader.h390 * @severity: the severity of the error
397 xmlParserSeverities severity,
/external/libxml2/include/libxml/
H A Dxmlreader.h395 * @severity: the severity of the error
402 xmlParserSeverities severity,
/external/chromium_org/testing/gtest/include/gtest/internal/
H A Dgtest-port.h230 // GTEST_LOG_() - logs messages at the specified severity level.
1236 // GTEST_LOG_(severity) - logs messages at the specified severity level. The
1248 // Formats log entry severity, provides a stream object for streaming the
1253 GTestLog(GTestLogSeverity severity, const char* file, int line);
1255 // Flushes the buffers and, if severity is GTEST_FATAL, aborts the program.
1266 #define GTEST_LOG_(severity) \
1267 ::testing::internal::GTestLog(::testing::internal::GTEST_##severity, \
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
H A Dgtest-port.h156 // GTEST_LOG_() - logs messages at the specified severity level.
893 // GTEST_LOG_(severity) - logs messages at the specified severity level. The
905 // Formats log entry severity, provides a stream object for streaming the
910 GTestLog(GTestLogSeverity severity, const char* file, int line);
912 // Flushes the buffers and, if severity is GTEST_FATAL, aborts the program.
923 #define GTEST_LOG_(severity) \
924 ::testing::internal::GTestLog(::testing::internal::GTEST_##severity, \
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ecf_3.1.0.v20100529-0735.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 2371 milliseconds

123456789