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

12 3 4 5 6 7 8 9

  /external/sonivox/arm-fm-22k/host_src/
eas_report.c 144 void EAS_ReportEx (int severity, unsigned long hashCode, int serialNum, ...)
149 /* check severity level */
150 if (severity > severityLevel)
176 printf("Unrecognized error: Severity=%d; HashCode=%lu; SerialNum=%d\n", severity, hashCode, serialNum);
187 void EAS_Report (int severity, const char *fmt, ...)
191 /* check severity level */
192 if (severity > severityLevel)
217 void EAS_ReportX (int severity, const char *fmt, ...)
221 /* check severity level *
    [all...]
eas_report.h 60 extern void EAS_ReportEx (int severity, unsigned long hashCode, int serialNum, ...);
65 extern void EAS_Report (int severity, const char* fmt, ...);
66 extern void EAS_ReportX (int severity, const char* fmt, ...);
70 extern void EAS_SetDebugLevel (int severity);
  /external/sonivox/arm-hybrid-22k/host_src/
eas_report.c 144 void EAS_ReportEx (int severity, unsigned long hashCode, int serialNum, ...)
149 /* check severity level */
150 if (severity > severityLevel)
176 printf("Unrecognized error: Severity=%d; HashCode=%lu; SerialNum=%d\n", severity, hashCode, serialNum);
187 void EAS_Report (int severity, const char *fmt, ...)
191 /* check severity level */
192 if (severity > severityLevel)
217 void EAS_ReportX (int severity, const char *fmt, ...)
221 /* check severity level *
    [all...]
eas_report.h 60 extern void EAS_ReportEx (int severity, unsigned long hashCode, int serialNum, ...);
65 extern void EAS_Report (int severity, const char* fmt, ...);
66 extern void EAS_ReportX (int severity, const char* fmt, ...);
70 extern void EAS_SetDebugLevel (int severity);
  /external/sonivox/arm-wt-22k/host_src/
eas_report.c 144 void EAS_ReportEx (int severity, unsigned long hashCode, int serialNum, ...)
149 /* check severity level */
150 if (severity > severityLevel)
176 printf("Unrecognized error: Severity=%d; HashCode=%lu; SerialNum=%d\n", severity, hashCode, serialNum);
187 void EAS_Report (int severity, const char *fmt, ...)
191 /* check severity level */
192 if (severity > severityLevel)
217 void EAS_ReportX (int severity, const char *fmt, ...)
221 /* check severity level *
    [all...]
eas_report.h 60 extern void EAS_ReportEx (int severity, unsigned long hashCode, int serialNum, ...);
65 extern void EAS_Report (int severity, const char* fmt, ...);
66 extern void EAS_ReportX (int severity, const char* fmt, ...);
70 extern void EAS_SetDebugLevel (int severity);
  /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/testing/gmock/src/
gmock-internal-utils.cc 108 // Returns true iff a log with the given severity is visible according
110 bool LogIsVisible(LogSeverity severity) {
120 return severity == WARNING;
124 // Prints the given message to stdout iff 'severity' >= the level
131 void Log(LogSeverity severity, const string& message,
133 if (!LogIsVisible(severity))
142 if (severity == WARNING) {
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
documentnormalizedocument06.js 87 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#ERROR-DOMError-severity
117 var severity;
165 severity = error.severity;
174 assertEquals("severity",1,severity);
204 assertEquals("anyOthersShouldBeWarnings",1,severity);
checkcharacternormalization02.js 106 var severity;
134 severity = error.severity;
138 (2 == severity)
documentnormalizedocument08.js 107 var severity;
132 severity = error.severity;
143 assertEquals("anyOthersShouldBeWarnings",1,severity);
handleerror02.js 106 var severity;
107 severity = error.severity;
111 (2 == severity)
documentnormalizedocument07.js 86 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#ERROR-DOMError-severity
116 var severity;
149 severity = error.severity;
153 (2 == severity)
188 assertEquals("anyOthersShouldBeWarnings",1,severity);
canonicalform05.js 104 var severity;
141 severity = error.severity;
145 (2 == severity)
185 assertEquals("anyOthersShouldBeWarnings",1,severity);
documentnormalizedocument05.js 104 var severity;
135 severity = error.severity;
139 (2 == severity)
179 assertEquals("anyOthersShouldBeWarnings",1,severity);
documentnormalizedocument13.js 104 var severity;
135 severity = error.severity;
139 (2 == severity)
179 assertEquals("anyOthersShouldBeWarnings",1,severity);
  /sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/
AbstractCheckTest.java 29 import com.android.tools.lint.detector.api.Severity;
96 Severity severity = getSeverity(issue); local
97 mOutput.append(severity.getDescription());
202 public boolean isSuppressed(Issue issue, Location range, String message, Severity severity) {
206 public Severity getSeverity(Issue issue) {
  /frameworks/media/libvideoeditor/osal/inc/
M4OSA_Error.h 33 * - Severity (2 bits): It may br either 0b00 (no error), 0b01 (warning) or
56 * @arg severity: (IN) [M4OSA_UInt32] Severity to put in the error code
59 #define M4OSA_ERR_CREATE(severity, coreID, errorID)\
60 (M4OSA_Int32)((((M4OSA_UInt32)severity)<<30)+((((M4OSA_UInt32)coreID)&0x003FFF)<<16)+(((M4OSA_UInt32)errorID)&0x00FFFF))
64 * @arg severity: (OUT) [M4OSA_UInt32] Severity to put in the error code
67 #define M4OSA_ERR_SPLIT(error, severity, coreID, errorID)\
68 { severity=(M4OSA_UInt32)((error)>>30);\
  /libcore/luni/src/main/java/org/w3c/dom/
DOMError.java 23 * The severity of the error described by the <code>DOMError</code> is
30 * The severity of the error described by the <code>DOMError</code> is
37 * The severity of the error described by the <code>DOMError</code> is
47 * The severity of the error, either <code>SEVERITY_WARNING</code>,
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
fmtmsg.h 53 /* Values to be for SEVERITY parameter of `fmtmsg'. */
56 MM_NOSEV = 0, /* No severity level provided for the message. */
93 /* Print message with given CLASSIFICATION, LABEL, SEVERITY, TEXT, ACTION
100 /* Add or remove severity level. */
  /external/webkit/Source/WebCore/inspector/front-end/
ExtensionAuditCategory.js 83 addResult: function(displayName, description, severity, details)
87 result.severity = severity;
AuditsPanel.js 287 addRule: function(rule, severity)
289 rule.severity = severity;
317 WebInspector.AuditRule.Severity = {
340 set severity(severity)
342 this._severity = severity;
348 result.severity = this._severity;
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
ChildCountDetector.java 23 import com.android.tools.lint.detector.api.Severity;
43 CATEGORY_LAYOUT, 8, Severity.WARNING);
51 CATEGORY_LAYOUT, 8, Severity.WARNING).setMoreInfo(
  /external/chromium/base/
logging_win.h 57 static bool LogMessage(logging::LogSeverity severity, const char* file,
71 // The log severity prior to OnEventsEnabled,
  /external/webkit/Source/WebKit/android/WebCoreSupport/
ChromiumInit.cpp 38 bool logMessageHandler(int severity, const char* file, int line, size_t message_start, const std::string& str) {
40 switch(severity) {

Completed in 2783 milliseconds

12 3 4 5 6 7 8 9