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()
106 StoredDiagnostic::range_iterator RI = D.range_begin(), RE = D.range_end(); 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.cpp136 CapturedDiags.push_back(StoredDiagnostic(level, Info)); in HandleDiagnostic()
291 SmallVector<StoredDiagnostic, 8> arcDiags; in checkForManualIssues()
/external/clang/tools/libclang/
DCIndexDiagnostic.h23 class StoredDiagnostic; variable
113 const StoredDiagnostic &Diag;
116 CXStoredDiagnostic(const StoredDiagnostic &Diag, in CXStoredDiagnostic()
DCIndexDiagnostic.cpp102 const StoredDiagnostic *SD = D.dyn_cast<const StoredDiagnostic*>(); in beginDiagnostic()
DIndexing.cpp387 SmallVector<StoredDiagnostic, 4> Errors;
393 Errors.push_back(StoredDiagnostic(level, Info)); in HandleDiagnostic()
DCIndexCodeCompletion.cpp256 SmallVector<StoredDiagnostic, 8> Diagnostics;
/external/clang/lib/Basic/
DDiagnostic.cpp314 void DiagnosticsEngine::Report(const StoredDiagnostic &storedDiag) { in Report()
323 for (StoredDiagnostic::range_iterator in Report()
330 for (StoredDiagnostic::fixit_iterator in Report()
918 StoredDiagnostic::StoredDiagnostic() { } in StoredDiagnostic() function in StoredDiagnostic
920 StoredDiagnostic::StoredDiagnostic(DiagnosticsEngine::Level Level, unsigned ID, in StoredDiagnostic() function in StoredDiagnostic
924 StoredDiagnostic::StoredDiagnostic(DiagnosticsEngine::Level Level, in StoredDiagnostic() function in StoredDiagnostic
945 StoredDiagnostic::StoredDiagnostic(DiagnosticsEngine::Level Level, unsigned ID, in StoredDiagnostic() function in StoredDiagnostic
954 StoredDiagnostic::~StoredDiagnostic() { } in ~StoredDiagnostic()
/external/clang/include/clang/Frontend/
DASTUnit.h161 SmallVector<StoredDiagnostic, 4> StoredDiagnostics;
165 SmallVector<StoredDiagnostic, 4> FailedParseDiagnostics;
315 SmallVectorImpl<StoredDiagnostic> &Out);
627 typedef StoredDiagnostic *stored_diag_iterator;
628 typedef const StoredDiagnostic *stored_diag_const_iterator;
852 SmallVectorImpl<StoredDiagnostic> &StoredDiagnostics,
DDiagnosticRenderer.h32 const StoredDiagnostic *> DiagOrStoredDiag;
148 void emitStoredDiagnostic(StoredDiagnostic &Diag);
/external/clang/include/clang/Basic/
DDiagnostic.h37 class StoredDiagnostic; variable
673 void Report(const StoredDiagnostic &storedDiag);
1242 class StoredDiagnostic {
1251 StoredDiagnostic();
1252 StoredDiagnostic(DiagnosticsEngine::Level Level, const Diagnostic &Info);
1253 StoredDiagnostic(DiagnosticsEngine::Level Level, unsigned ID,
1255 StoredDiagnostic(DiagnosticsEngine::Level Level, unsigned ID,
1259 ~StoredDiagnostic();
/external/clang/lib/Frontend/
DASTUnit.cpp571 SmallVectorImpl<StoredDiagnostic> &StoredDiags;
576 SmallVectorImpl<StoredDiagnostic> &StoredDiags) in StoredDiagnosticConsumer()
598 SmallVectorImpl<StoredDiagnostic> &StoredDiags) in CaptureDroppedDiagnostics()
626 StoredDiags.push_back(StoredDiagnostic(Level, Info)); in HandleDiagnostic()
1000 static bool isNonDriverDiag(const StoredDiagnostic &StoredDiag) { in isNonDriverDiag()
1005 checkAndRemoveNonDriverDiags(SmallVectorImpl<StoredDiagnostic> &StoredDiags) { in checkAndRemoveNonDriverDiags()
1013 static void checkAndSanitizeDiags(SmallVectorImpl<StoredDiagnostic> & in checkAndSanitizeDiags()
1315 const StoredDiagnostic &InDiag, in makeStandaloneDiagnostic()
1329 for (StoredDiagnostic::range_iterator in makeStandaloneDiagnostic()
1333 for (StoredDiagnostic::fixit_iterator in makeStandaloneDiagnostic()
[all …]
DDiagnosticRenderer.cpp185 void DiagnosticRenderer::emitStoredDiagnostic(StoredDiagnostic &Diag) { in emitStoredDiagnostic()