reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/clang/include/clang/AST/DeclContextInternals.h
   30 class DependentDiagnostic;
tools/clang/include/clang/Sema/Sema.h
  113   class DependentDiagnostic;

References

tools/clang/include/clang/AST/DeclContextInternals.h
  258   DependentDiagnostic *FirstDiagnostic = nullptr;
tools/clang/include/clang/AST/DependentDiagnostic.h
   40   static DependentDiagnostic *Create(ASTContext &Context,
   50     DependentDiagnostic *DD = Create(Context, Parent, PDiag);
  106   static DependentDiagnostic *Create(ASTContext &Context,
  110   DependentDiagnostic *NextDiagnostic;
  128   explicit ddiag_iterator(DependentDiagnostic *Ptr) : Ptr(Ptr) {}
  130   using value_type = DependentDiagnostic *;
  131   using reference = DependentDiagnostic *;
  132   using pointer = DependentDiagnostic *;
  172   DependentDiagnostic *Ptr = nullptr;
tools/clang/include/clang/Sema/Sema.h
 6575   void HandleDependentAccessCheck(const DependentDiagnostic &DD,
tools/clang/lib/AST/DeclBase.cpp
 1958 DependentDiagnostic *DependentDiagnostic::Create(ASTContext &C,
 1975   auto *DD = new (C) DependentDiagnostic(PDiag, DiagStorage);
 1975   auto *DD = new (C) DependentDiagnostic(PDiag, DiagStorage);
tools/clang/lib/Sema/SemaAccess.cpp
 1398   DependentDiagnostic::Create(S.Context, DC, DependentDiagnostic::Access,
 1398   DependentDiagnostic::Create(S.Context, DC, DependentDiagnostic::Access,
 1490 void Sema::HandleDependentAccessCheck(const DependentDiagnostic &DD,
tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
 5677     case DependentDiagnostic::Access: