Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DTemplateDeduction.h62 SmallVector<PartialDiagnosticAt, 4> SuppressedDiagnostics; variable
109 PD.first = SuppressedDiagnostics.front().first; in takeSFINAEDiagnostic()
110 PD.second.swap(SuppressedDiagnostics.front().second); in takeSFINAEDiagnostic()
116 SuppressedDiagnostics.clear(); in clearSFINAEDiagnostic()
123 return SuppressedDiagnostics.front(); in peekSFINAEDiagnostic()
154 SuppressedDiagnostics.clear(); in addSFINAEDiagnostic()
155 SuppressedDiagnostics.emplace_back(Loc, std::move(PD)); in addSFINAEDiagnostic()
164 SuppressedDiagnostics.emplace_back(Loc, std::move(PD)); in addSuppressedDiagnostic()
172 diag_iterator diag_begin() const { return SuppressedDiagnostics.begin(); } in diag_begin()
176 diag_iterator diag_end() const { return SuppressedDiagnostics.end(); } in diag_end()
H A DSema.h9733 SuppressedDiagnosticsMap SuppressedDiagnostics; variable
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateDeduction.cpp3823 Pos = SuppressedDiagnostics.find(Specialization->getCanonicalDecl()); in FinishTemplateArgumentDeduction()
3824 if (Pos == SuppressedDiagnostics.end()) in FinishTemplateArgumentDeduction()
3825 SuppressedDiagnostics[Specialization->getCanonicalDecl()] in FinishTemplateArgumentDeduction()
H A DSemaExpr.cpp234 auto Pos = SuppressedDiagnostics.find(D->getCanonicalDecl()); in DiagnoseUseOfDecl()
235 if (Pos != SuppressedDiagnostics.end()) { in DiagnoseUseOfDecl()