HomeSort by: relevance | last modified time | path
    Searched defs:Severity (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Basic/
Warnings.cpp 67 Diags.setExtensionHandlingBehavior(diag::Severity::Error);
69 Diags.setExtensionHandlingBehavior(diag::Severity::Warning);
71 Diags.setExtensionHandlingBehavior(diag::Severity::Ignored);
107 diag::Severity Mapping =
108 isPositive ? diag::Severity::Warning : diag::Severity::Ignored;
126 Diags.setSeverityForAll(Flavor, diag::Severity::Ignored);
210 auto Severity = IsPositive ? diag::Severity::Remark
211 : diag::Severity::Ignored
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/LTO/
LTOCodeGenerator.cpp 616 // Map the LLVM internal diagnostic severity to the LTO diagnostic severity.
617 lto_codegen_diagnostic_severity_t Severity;
620 Severity = LTO_DS_ERROR;
623 Severity = LTO_DS_WARNING;
626 Severity = LTO_DS_REMARK;
629 Severity = LTO_DS_NOTE;
642 (*DiagHandler)(Severity, MsgStorage.c_str(), DiagContext);
674 LTODiagnosticInfo(const Twine &DiagMsg, DiagnosticSeverity Severity=DS_Error)
675 : DiagnosticInfo(DK_Linker, Severity), Msg(DiagMsg) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-link/
llvm-link.cpp 260 unsigned Severity = DI.getSeverity();
261 switch (Severity) {
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
DiagnosticIDs.h 80 enum class Severity {
100 unsigned Severity : 3;
108 static DiagnosticMapping Make(diag::Severity Severity, bool IsUser,
111 Result.Severity = (unsigned)Severity;
120 diag::Severity getSeverity() const { return (diag::Severity)Severity; }
121 void setSeverity(diag::Severity Value) { Severity = (unsigned)Value;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenAction.cpp 443 #define ComputeDiagID(Severity, GroupName, DiagID) \
445 switch (Severity) { \
453 llvm_unreachable("'remark' severity not expected"); \
461 #define ComputeDiagRemarkID(Severity, GroupName, DiagID) \
463 switch (Severity) { \
763 llvm::DiagnosticSeverity Severity = DI.getSeverity();
769 ComputeDiagID(Severity, inline_asm, DiagID);
777 ComputeDiagID(Severity, backend_frame_larger_than, DiagID);
782 if (Severity != DS_Error)
836 ComputeDiagRemarkID(Severity, backend_plugin, DiagID)
    [all...]
  /src/sys/arch/prep/include/
nvram.h 97 * According to IBM, if severity is severe, the OS should not boot. It should
105 uint8_t Severity; /* S=servere E=Error */
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
DiagnosticInfo.h 43 /// Defines the different supported severity of a diagnostic.
105 /// Severity gives the severity of the diagnostic.
106 const DiagnosticSeverity Severity;
110 DiagnosticInfo(/* DiagnosticKind */ int Kind, DiagnosticSeverity Severity)
111 : Kind(Kind), Severity(Severity) {}
116 DiagnosticSeverity getSeverity() const { return Severity; }
122 /// The printed message must not end with '.' nor start with a severity
145 DiagnosticSeverity Severity = DS_Error
    [all...]
  /src/external/apache2/llvm/dist/clang/utils/TableGen/
ClangDiagnosticsEmitter.cpp 1166 DiagnosticTextBuilder::buildForDocumentation(StringRef Severity,
1172 TextPiece *Prefix = D.New<TextPiece>(Severity, Severity);
1275 OS << ", (unsigned)diag::Severity::"
1808 auto Severity = getDefaultSeverity(D);
1809 Severity[0] = tolower(Severity[0]);
1810 if (Severity == "ignored")
1811 Severity = IsRemarkGroup ? "remark" : "warning";
1813 writeDiagnosticText(Builder, D, Severity, OS)
    [all...]
  /src/sys/external/bsd/acpica/dist/include/
actbl1.h 250 UINT8 Severity;
410 UINT32 ErrorSeverity; /* Severity code */

Completed in 56 milliseconds