Home
last modified time | relevance | path

Searched refs:CustomDiagInfo (Results 1 – 4 of 4) sorted by relevance

/external/clang/lib/Basic/
DDiagnosticIDs.cpp254 class CustomDiagInfo { class
299 DiagnosticIDs::DiagnosticIDs() { CustomDiagInfo = nullptr; } in DiagnosticIDs()
302 delete CustomDiagInfo; in ~DiagnosticIDs()
312 if (!CustomDiagInfo) in getCustomDiagID()
313 CustomDiagInfo = new diag::CustomDiagInfo(); in getCustomDiagID()
314 return CustomDiagInfo->getOrCreateDiagID(L, FormatString, *this); in getCustomDiagID()
362 assert(CustomDiagInfo && "Invalid CustomDiagInfo"); in getDescription()
363 return CustomDiagInfo->getDescription(DiagID); in getDescription()
390 assert(CustomDiagInfo && "Invalid CustomDiagInfo"); in getDiagnosticLevel()
391 return CustomDiagInfo->getLevel(DiagID); in getDiagnosticLevel()
[all …]
/external/llvm-project/clang/lib/Basic/
DDiagnosticIDs.cpp359 class CustomDiagInfo { class
415 if (!CustomDiagInfo) in getCustomDiagID()
416 CustomDiagInfo.reset(new diag::CustomDiagInfo()); in getCustomDiagID()
417 return CustomDiagInfo->getOrCreateDiagID(L, FormatString, *this); in getCustomDiagID()
465 assert(CustomDiagInfo && "Invalid CustomDiagInfo"); in getDescription()
466 return CustomDiagInfo->getDescription(DiagID); in getDescription()
493 assert(CustomDiagInfo && "Invalid CustomDiagInfo"); in getDiagnosticLevel()
494 return CustomDiagInfo->getLevel(DiagID); in getDiagnosticLevel()
815 assert(CustomDiagInfo && "Invalid CustomDiagInfo"); in isUnrecoverable()
817 return CustomDiagInfo->getLevel(DiagID) >= DiagnosticIDs::Error; in isUnrecoverable()
/external/clang/include/clang/Basic/
DDiagnosticIDs.h43 class CustomDiagInfo; variable
125 diag::CustomDiagInfo *CustomDiagInfo;
/external/llvm-project/clang/include/clang/Basic/
DDiagnosticIDs.h60 class CustomDiagInfo; variable
173 std::unique_ptr<diag::CustomDiagInfo> CustomDiagInfo;