HomeSort by: relevance | last modified time | path
    Searched refs:DiagnosticLevelMask (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Basic/
DiagnosticOptions.cpp 19 raw_ostream &operator<<(raw_ostream &Out, DiagnosticLevelMask M) {
20 using UT = std::underlying_type<DiagnosticLevelMask>::type;
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
DiagnosticOptions.h 39 enum class DiagnosticLevelMask : unsigned {
48 inline DiagnosticLevelMask operator~(DiagnosticLevelMask M) {
49 using UT = std::underlying_type<DiagnosticLevelMask>::type;
50 return static_cast<DiagnosticLevelMask>(~static_cast<UT>(M));
53 inline DiagnosticLevelMask operator|(DiagnosticLevelMask LHS,
54 DiagnosticLevelMask RHS) {
55 using UT = std::underlying_type<DiagnosticLevelMask>::type;
56 return static_cast<DiagnosticLevelMask>(
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp 996 const DiagnosticLevelMask DiagMask =
1002 bool(DiagnosticLevelMask::Error & DiagMask));
1007 bool(DiagnosticLevelMask::Warning & DiagMask));
1012 bool(DiagnosticLevelMask::Remark & DiagMask));
1017 bool(DiagnosticLevelMask::Note & DiagMask));
1109 const DiagnosticLevelMask DiagMask =
1111 if (bool(DiagnosticLevelMask::Error & DiagMask))
1114 if (bool(DiagnosticLevelMask::Warning & DiagMask))
1117 if (bool(DiagnosticLevelMask::Remark & DiagMask))
1120 if (bool(DiagnosticLevelMask::Note & DiagMask)
    [all...]
CompilerInvocation.cpp 1220 DiagnosticLevelMask &M) {
1223 DiagnosticLevelMask const PM =
1224 llvm::StringSwitch<DiagnosticLevelMask>(Level)
1225 .Case("note", DiagnosticLevelMask::Note)
1226 .Case("remark", DiagnosticLevelMask::Remark)
1227 .Case("warning", DiagnosticLevelMask::Warning)
1228 .Case("error", DiagnosticLevelMask::Error)
1229 .Default(DiagnosticLevelMask::None);
1230 if (PM == DiagnosticLevelMask::None) {
2225 DiagnosticLevelMask VIU = Opts.getVerifyIgnoreUnexpected()
    [all...]

Completed in 17 milliseconds