HomeSort by relevance Sort by last modified time
    Searched defs:severity (Results 1 - 25 of 90) sorted by null

1 2 3 4

  /art/runtime/base/
logging_linux.cc 32 char severity = "VDIWEFF"[data.severity]; local
34 ProgramInvocationShortName(), severity, getpid(), ::art::GetTid(),
logging.h 119 #define LOG(severity) ::art::LogMessage(__FILE__, __LINE__, severity, -1).stream()
120 #define PLOG(severity) ::art::LogMessage(__FILE__, __LINE__, severity, errno).stream()
178 LogMessageData(const char* file, int line, LogSeverity severity, int error);
182 const LogSeverity severity; member in struct:art::LogMessageData
191 LogMessage(const char* file, int line, LogSeverity severity, int error)
192 : data_(new LogMessageData(file, line, severity, error)) {
  /external/chromium_org/third_party/angle_dx11/src/compiler/preprocessor/
DiagnosticsBase.cpp 26 Diagnostics::Severity Diagnostics::severity(ID id) function in class:pp::Diagnostics
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOMErrorHandlerImpl.java 49 String severity = null; local
52 severity = "[Warning]";
54 severity = "[Error]";
56 severity = "[Fatal Error]";
59 System.err.println(severity + ": " + error.getMessage() + "\t");
  /build/tools/
warn.py 12 class severity: class in inherits:
22 if sev == severity.FIXMENOW:
24 if sev == severity.HIGH:
26 if sev == severity.MEDIUM:
28 if sev == severity.LOW:
30 if sev == severity.HARMLESS:
32 if sev == severity.UNKNOWN:
37 { 'category':'make', 'severity':severity.MEDIUM, 'members':[], 'option':'',
41 { 'category':'C/C++', 'severity':severity.HIGH, 'members':[], 'option':'-Wimplicit-function-declaration'
    [all...]
  /external/chromium_org/chrome/browser/drive/
event_logger.h 30 Event(int id, logging::LogSeverity severity, const std::string& what);
32 logging::LogSeverity severity; // Severity of the event. member in struct:drive::EventLogger::Event
41 // Logs a message and its severity.
43 void Log(logging::LogSeverity severity, const std::string& what);
  /external/chromium_org/third_party/angle_dx11/src/compiler/
DirectiveHandler.cpp 130 pp::Diagnostics::Severity severity = pp::Diagnostics::ERROR; local
133 severity = pp::Diagnostics::ERROR;
138 severity = pp::Diagnostics::WARNING;
144 mDiagnostics.writeInfo(severity, loc,
  /external/tcpdump/
print-syslog.c 89 u_int16_t facility,severity; local
94 * severity and facility values
128 severity = pri & SYSLOG_SEVERITY_MASK;
135 tok2str(syslog_severity_values, "unknown (%u)", severity),
140 printf("SYSLOG, length: %u\n\tFacility %s (%u), Severity %s (%u)\n\tMsg: ",
144 tok2str(syslog_severity_values, "unknown (%u)", severity),
145 severity);
  /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;
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DOMErrorImpl.java 45 private final short severity; field in class:DOMErrorImpl
48 public DOMErrorImpl(short severity, String type) {
49 this.severity = severity;
54 return 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...]
ProjectLintConfiguration.java 27 import com.android.tools.lint.detector.api.Severity;
83 public @NonNull Severity getSeverity(@NonNull Issue issue) {
84 Severity severity = super.getSeverity(issue); local
85 if (mFatalOnly && severity != Severity.FATAL) {
86 return Severity.IGNORE;
88 return severity;
LintColumn.java 181 int severity = marker.getAttribute(IMarker.SEVERITY, 0); local
183 switch (severity) {
203 int severity = marker.getAttribute(IMarker.SEVERITY, 0); local
204 if (severity == IMarker.SEVERITY_ERROR) {
  /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
  /frameworks/compile/mclinker/lib/LD/
DiagnosticInfos.cpp 28 DiagnosticEngine::Severity Severity;
113 DiagnosticEngine::Severity severity = static_info->Severity; local
118 severity = DiagnosticEngine::Ignore;
128 severity = DiagnosticEngine::Error;
130 severity = DiagnosticEngine::Ignore;
134 severity = DiagnosticEngine::Error;
136 severity = DiagnosticEngine::Ignore
    [all...]
  /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) {
  /frameworks/compile/mclinker/include/mcld/LD/
DiagnosticEngine.h 35 * - choice the severity of a message by options
40 enum Severity {
88 MsgHandler report(uint16_t pID, Severity pSeverity);
103 State() : numArgs(0), ID(-1), severity(None), file(NULL) { }
109 severity = None;
119 Severity severity; member in struct:mcld::DiagnosticEngine::State
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
SmsCbHeader.java 173 int severity = getCmasSeverity(); local
178 SmsCbCmasInfo.CMAS_RESPONSE_TYPE_UNKNOWN, severity, urgency, certainty);
330 * Returns the severity for a CMAS warning notification. This is only available for extreme
333 * @return the CMAS severity as defined in {@link SmsCbCmasInfo}
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LintOverlay.java 111 int severity = marker.getAttribute(IMarker.SEVERITY, 0); local
112 isError = severity == IMarker.SEVERITY_ERROR;
  /frameworks/opt/telephony/src/java/android/telephony/
CellBroadcastMessage.java 178 int severity; local
182 severity = cursor.getInt(cmasSeverityColumn);
184 severity = SmsCbCmasInfo.CMAS_SEVERITY_UNKNOWN;
205 cmasInfo = new SmsCbCmasInfo(messageClass, cmasCategory, responseType, severity,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
BaseBuilder.java 204 * @param severity the severity of the marker.
208 protected final IMarker markProject(String markerId, String message, int severity) {
209 return BaseProjectHelper.markResource(getProject(), markerId, message, severity);
371 int severity = marker.getAttribute(IMarker.SEVERITY, -1 /*defaultValue*/); local
372 if (severity == IMarker.SEVERITY_ERROR) {
  /external/chromium_org/chrome/browser/ui/webui/chromeos/
drive_internals_ui.cc 187 std::string SeverityToString(logging::LogSeverity severity) {
188 switch (severity) {
698 std::string severity = SeverityToString(log[i].severity); local
703 dict->SetString("value", "[" + severity + "] " + log[i].what);
704 dict->SetString("class", "log-" + 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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
LintPreferencePage.java 32 import com.android.tools.lint.detector.api.Severity;
98 private Map<Issue, Severity> mSeverities = new HashMap<Issue, Severity>();
99 private Map<Issue, Severity> mInitialSeverities = Collections.<Issue, Severity>emptyMap();
179 mSearch.setMessage("type filter text (use ~ to filter by severity, e.g. ~ignore)");
229 severityLabel.setText("Severity:");
243 Severity severity = mConfiguration.getSeverity(issue); local
244 mSeverities.put(issue, severity);
327 Severity severity = mConfiguration.getSeverity(issue); local
353 Severity severity = entry.getValue(); local
464 Severity severity = getSeverity(issue); local
489 Severity severity; local
519 Severity severity = mSeverities.get(issue); local
682 Severity severity = mSeverities.get(issue); local
734 Severity severity = mSeverities.get(issue); local
    [all...]

Completed in 640 milliseconds

1 2 3 4