Home
last modified time | relevance | path

Searched refs:DiagStorage (Results 1 – 5 of 5) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
HDPartialDiagnostic.h52 if (Other.DiagStorage) { in PartialDiagnostic()
53 DiagStorage = getStorage(); in PartialDiagnostic()
54 *DiagStorage = *Other.DiagStorage; in PartialDiagnostic()
77 DiagStorage = Other.DiagStorage; in PartialDiagnostic()
78 Other.DiagStorage = nullptr; in PartialDiagnostic()
85 DiagStorage = DiagStorage_; in PartialDiagnostic()
86 if (Other.DiagStorage) in PartialDiagnostic()
87 *this->DiagStorage = *Other.DiagStorage; in PartialDiagnostic()
112 if (Other.DiagStorage) {
113 if (!DiagStorage)
[all …]
HDDiagnostic.h1021 DiagnosticStorage DiagStorage; variable
1153 mutable DiagnosticStorage *DiagStorage = nullptr;
1161 if (DiagStorage) in getStorage()
1162 return DiagStorage; in getStorage()
1165 DiagStorage = Allocator->Allocate(); in getStorage()
1166 return DiagStorage; in getStorage()
1170 if (!DiagStorage) in freeStorage()
1185 Allocator->Deallocate(DiagStorage); in freeStorageSlow()
1186 DiagStorage = nullptr; in freeStorageSlow()
1190 if (!DiagStorage) in AddTaggedVal()
[all …]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/
HDRefactoringRuleContext.h58 return DiagnosticError::create(Loc, PartialDiagnostic(DiagID, DiagStorage)); in createDiagnosticError()
80 PartialDiagnostic::DiagStorageAllocator DiagStorage; variable
/freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/
HDDiagnostic.cpp505 DiagStorage.NumDiagArgs = 0; in Report()
507 DiagStorage.DiagRanges.clear(); in Report()
508 DiagStorage.DiagRanges.append(storedDiag.range_begin(), in Report()
511 DiagStorage.FixItHints.clear(); in Report()
512 DiagStorage.FixItHints.append(storedDiag.fixit_begin(), in Report()
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
HDDeclBase.cpp2200 DiagnosticStorage *DiagStorage = nullptr; in Create() local
2202 DiagStorage = new (C) DiagnosticStorage; in Create()
2204 auto *DD = new (C) DependentDiagnostic(PDiag, DiagStorage); in Create()