Home
last modified time | relevance | path

Searched refs:StoredDiagnostic (Results 1 – 14 of 14) sorted by relevance

/external/clang/lib/ARCMigrate/
DPlistReporter.cpp36 ArrayRef<StoredDiagnostic> diags, in writeARCDiagsToPlist()
46 for (ArrayRef<StoredDiagnostic>::iterator in writeARCDiagsToPlist()
48 const StoredDiagnostic &D = *I; in writeARCDiagsToPlist()
52 for (StoredDiagnostic::range_iterator in writeARCDiagsToPlist()
82 for (ArrayRef<StoredDiagnostic>::iterator in writeARCDiagsToPlist()
85 const StoredDiagnostic &D = *DI; in writeARCDiagsToPlist()
DTransProtectedScope.cpp114 SmallVector<StoredDiagnostic, 16> StoredDiags; in ProtectedScopeFixer()
116 SmallVectorImpl<StoredDiagnostic>::iterator in ProtectedScopeFixer()
129 SmallVectorImpl<StoredDiagnostic>::iterator &DiagI, in handleProtectedScopeError()
130 SmallVectorImpl<StoredDiagnostic>::iterator DiagE){ in handleProtectedScopeError()
146 bool handleProtectedNote(const StoredDiagnostic &Diag) { in handleProtectedNote()
DInternals.h26 typedef std::list<StoredDiagnostic> ListTy;
30 void push_back(const StoredDiagnostic &diag) { List.push_back(diag); } in push_back()
45 ArrayRef<StoredDiagnostic> diags,
DARCMT.cpp137 CapturedDiags.push_back(StoredDiagnostic(level, Info)); in HandleDiagnostic()
297 SmallVector<StoredDiagnostic, 8> arcDiags; in checkForManualIssues()
/external/clang/tools/libclang/
DCIndexDiagnostic.h24 class StoredDiagnostic; variable
112 const StoredDiagnostic &Diag;
115 CXStoredDiagnostic(const StoredDiagnostic &Diag, in CXStoredDiagnostic()
DCIndexDiagnostic.cpp100 const StoredDiagnostic *SD = D.dyn_cast<const StoredDiagnostic*>(); in beginDiagnostic()
DIndexing.cpp337 SmallVector<StoredDiagnostic, 4> Errors;
343 Errors.push_back(StoredDiagnostic(level, Info)); in HandleDiagnostic()
DCIndexCodeCompletion.cpp256 SmallVector<StoredDiagnostic, 8> Diagnostics;
/external/clang/include/clang/Frontend/
DASTUnit.h163 SmallVector<StoredDiagnostic, 4> StoredDiagnostics;
167 SmallVector<StoredDiagnostic, 4> FailedParseDiagnostics;
316 SmallVectorImpl<StoredDiagnostic> &Out);
642 typedef StoredDiagnostic *stored_diag_iterator;
643 typedef const StoredDiagnostic *stored_diag_const_iterator;
892 SmallVectorImpl<StoredDiagnostic> &StoredDiagnostics,
DDiagnosticRenderer.h32 const StoredDiagnostic *> DiagOrStoredDiag;
150 void emitStoredDiagnostic(StoredDiagnostic &Diag);
/external/clang/lib/Basic/
DDiagnostic.cpp338 void DiagnosticsEngine::Report(const StoredDiagnostic &storedDiag) { in Report()
949 StoredDiagnostic::StoredDiagnostic(DiagnosticsEngine::Level Level, unsigned ID, in StoredDiagnostic() function in StoredDiagnostic
953 StoredDiagnostic::StoredDiagnostic(DiagnosticsEngine::Level Level, in StoredDiagnostic() function in StoredDiagnostic
968 StoredDiagnostic::StoredDiagnostic(DiagnosticsEngine::Level Level, unsigned ID, in StoredDiagnostic() function in StoredDiagnostic
/external/clang/include/clang/Basic/
DDiagnostic.h38 class StoredDiagnostic; variable
682 void Report(const StoredDiagnostic &storedDiag);
1264 class StoredDiagnostic {
1273 StoredDiagnostic() = default;
1274 StoredDiagnostic(DiagnosticsEngine::Level Level, const Diagnostic &Info);
1275 StoredDiagnostic(DiagnosticsEngine::Level Level, unsigned ID,
1277 StoredDiagnostic(DiagnosticsEngine::Level Level, unsigned ID,
/external/clang/lib/Frontend/
DASTUnit.cpp563 SmallVectorImpl<StoredDiagnostic> &StoredDiags;
568 SmallVectorImpl<StoredDiagnostic> &StoredDiags) in StoredDiagnosticConsumer()
591 SmallVectorImpl<StoredDiagnostic> &StoredDiags) in CaptureDroppedDiagnostics()
1000 static bool isNonDriverDiag(const StoredDiagnostic &StoredDiag) { in isNonDriverDiag()
1005 checkAndRemoveNonDriverDiags(SmallVectorImpl<StoredDiagnostic> &StoredDiags) { in checkAndRemoveNonDriverDiags()
1013 static void checkAndSanitizeDiags(SmallVectorImpl<StoredDiagnostic> & in checkAndSanitizeDiags()
1021 for (StoredDiagnostic &SD : StoredDiagnostics) { in checkAndSanitizeDiags()
1297 const StoredDiagnostic &InDiag) { in makeStandaloneDiagnostic()
1951 SmallVector<StoredDiagnostic, 4> StoredDiagnostics; in LoadFromCommandLine()
2324 FileManager &FileMgr, SmallVectorImpl<StoredDiagnostic> &StoredDiagnostics, in CodeComplete()
[all …]
DDiagnosticRenderer.cpp141 void DiagnosticRenderer::emitStoredDiagnostic(StoredDiagnostic &Diag) { in emitStoredDiagnostic()