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

1 2 3 4 56 7 8 91011

  /prebuilts/gradle-plugin/com/android/tools/build/manifest-merger/22.2.0/
manifest-merger-22.2.0.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/uimodel/
UiViewElementNode.java 179 int severity = marker.getAttribute(IMarker.SEVERITY, 0); local
180 if (severity == IMarker.SEVERITY_ERROR) {
  /external/chromium_org/testing/gtest/src/
gtest-port.cc 485 GTestLog::GTestLog(GTestLogSeverity severity, const char* file, int line)
486 : severity_(severity) {
488 severity == GTEST_INFO ? "[ INFO ]" :
489 severity == GTEST_WARNING ? "[WARNING]" :
490 severity == GTEST_ERROR ? "[ ERROR ]" : "[ FATAL ]";
495 // Flushes the buffers and, if severity is GTEST_FATAL, aborts the program.
  /ndk/sources/third_party/googletest/googletest/src/
gtest-port.cc 485 GTestLog::GTestLog(GTestLogSeverity severity, const char* file, int line)
486 : severity_(severity) {
488 severity == GTEST_INFO ? "[ INFO ]" :
489 severity == GTEST_WARNING ? "[WARNING]" :
490 severity == GTEST_ERROR ? "[ ERROR ]" : "[ FATAL ]";
495 // Flushes the buffers and, if severity is GTEST_FATAL, aborts the program.
  /external/open-vcdiff/gtest/include/gtest/internal/
gtest-port.h 133 // GTEST_LOG_() - logs messages at the specified severity level.
694 // GTEST_LOG_(severity) - logs messages at the specified severity level. The
706 // Formats log entry severity, provides a stream object for streaming the
711 GTestLog(GTestLogSeverity severity, const char* file, int line);
713 // Flushes the buffers and, if severity is GTEST_FATAL, aborts the program.
724 #define GTEST_LOG_(severity) \
725 ::testing::internal::GTestLog(::testing::internal::GTEST_##severity, \
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-port.h 133 // GTEST_LOG_() - logs messages at the specified severity level.
687 // GTEST_LOG_(severity) - logs messages at the specified severity level. The
699 // Formats log entry severity, provides a stream object for streaming the
704 GTestLog(GTestLogSeverity severity, const char* file, int line);
706 // Flushes the buffers and, if severity is GTEST_FATAL, aborts the program.
717 #define GTEST_LOG_(severity) \
718 ::testing::internal::GTestLog(::testing::internal::GTEST_##severity, \
    [all...]
  /external/chromium_org/chrome/installer/util/
installation_validator_unittest.cc 333 static bool HandleLogMessage(int severity,
411 bool InstallationValidatorTest::HandleLogMessage(int severity,
417 if (severity == logging::LOG_ERROR && !str.empty()) {
434 return (old_log_message_handler_)(severity, file, line, message_start, str);
  /libcore/luni/src/test/java/libcore/xml/
NormalizeTest.java 607 public void assertAllErrors(int severity, String type) {
608 assertAllErrors("Expected one or more " + type + " errors", severity, type);
611 public void assertAllErrors(String message, int severity, String type) {
614 assertEquals(message, severity, error.getSeverity());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
EclipseLintClient.java 51 import com.android.tools.lint.detector.api.Severity;
199 public void log(@NonNull Severity severity, @Nullable Throwable exception,
329 public void report(@NonNull Context context, @NonNull Issue issue, @NonNull Severity s,
332 int severity = getMarkerSeverity(s); local
341 message, 0, severity);
354 message, line, startOffset, endOffset, severity);
361 message, 0, severity);
373 if (s == Severity.FATAL) {
392 int prevSeverity = prev.getAttribute(IMarker.SEVERITY, 0)
    [all...]
  /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/chrome/browser/ui/webui/chromeos/
drive_internals_ui.cc 187 std::string SeverityToString(logging::LogSeverity severity) {
188 switch (severity) {
767 std::string severity = SeverityToString(log[i].severity); local
772 dict->SetString("value", "[" + severity + "] " + log[i].what);
773 dict->SetString("class", "log-" + severity);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ExtensionAPI.js 35 apiPrivate.audits.Severity = {
43 apiPrivate.console.Severity = {
206 addMessage: function(severity, text, url, line)
208 extensionServer.sendRequest({ command: commands.AddConsoleMessage, severity: severity, text: text, url: url, line: line });
211 get Severity()
213 return apiPrivate.console.Severity;
573 addResult: function(displayName, description, severity, details)
584 severity: severity,
    [all...]
  /external/chromium_org/third_party/accessibility-audit/
axs_testing.js 498 axs.constants.Severity = {INFO:"Info", WARNING:"Warning", SEVERE:"Severe"};
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
NewProjectPage.java 905 int severity = status != null ? status.getSeverity() : IStatus.OK; local
    [all...]
  /external/chromium/testing/gmock/test/
gmock-internal-utils_test.cc 383 // and log severity.
384 void TestLogWithSeverity(const string& verbosity, LogSeverity severity,
389 Log(severity, "Test log.\n", 0);
393 severity == WARNING ?
504 // and log severity.
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-port.h 153 // GTEST_LOG_() - logs messages at the specified severity level.
877 // GTEST_LOG_(severity) - logs messages at the specified severity level. The
889 // Formats log entry severity, provides a stream object for streaming the
894 GTestLog(GTestLogSeverity severity, const char* file, int line);
896 // Flushes the buffers and, if severity is GTEST_FATAL, aborts the program.
907 #define GTEST_LOG_(severity)
    [all...]
  /prebuilts/tools/common/eclipse/
org.eclipse.equinox.common_3.4.0.v20080421-2006.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
AaptParser.java 496 * @param severity The severity of the marker to put (IMarker.SEVERITY_*)
502 String message, String root, IProject project, String markerId, int severity) {
568 int tmpSeverity = marker.getAttribute(IMarker.SEVERITY, -1);
569 if (tmpSeverity != severity) {
591 startOffset, endOffset, severity);
  /external/chromium_org/chrome/browser/chromeos/system/
ash_system_tray_delegate.cc 1064 ash::UpdateObserver::UpdateSeverity severity = variable
1084 GetSystemTrayNotifier()->NotifyUpdateRecommended(severity); variable
    [all...]
  /external/chromium/testing/gmock/src/
gmock-spec-builders.cc 59 void LogWithLocation(testing::internal::LogSeverity severity,
64 Log(severity, s.str(), 0);
  /external/chromium/third_party/libjingle/source/talk/base/
logging.cc 392 LoggingSeverity severity) {
428 // Android's logging facility uses severity to log messages but we
429 // need to map libjingle's severity levels to Android ones first.
433 switch (severity) {
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
service_runtime.cc 662 bool ServiceRuntime::Log(int severity, const nacl::string& msg) {
666 severity,
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DOMConfigurationImpl.java 483 private void report(short severity, String type) {
486 errorHandler.handleError(new DOMErrorImpl(severity, type));
  /prebuilts/devtools/tools/lib/
lint-api.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.2.0/
lint-api-22.2.0.jar 

Completed in 359 milliseconds

1 2 3 4 56 7 8 91011