Searched refs:DiagStorage (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DPartialDiagnostic.h126 mutable Storage *DiagStorage = nullptr; member in class:clang::PartialDiagnostic
133 if (DiagStorage)
134 return DiagStorage;
137 DiagStorage = Allocator->Allocate();
140 DiagStorage = new Storage;
142 return DiagStorage;
146 if (!DiagStorage)
160 Allocator->Deallocate(DiagStorage);
162 delete DiagStorage;
163 DiagStorage
207 PartialDiagnostic(const PartialDiagnostic &Other, Storage *DiagStorage) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/
H A DRefactoringRuleContext.h58 return DiagnosticError::create(Loc, PartialDiagnostic(DiagID, DiagStorage));
80 PartialDiagnostic::StorageAllocator DiagStorage; member in class:clang::tooling::RefactoringRuleContext
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DDeclBase.cpp1977 PartialDiagnostic::Storage *DiagStorage = nullptr; local
1979 DiagStorage = new (C) PartialDiagnostic::Storage;
1981 auto *DD = new (C) DependentDiagnostic(PDiag, DiagStorage);

Completed in 129 milliseconds