Searched defs:StoredDiagnostics (Results 1 - 2 of 2) sorted by relevance

/external/clang/include/clang/Frontend/
H A DASTUnit.h139 SmallVector<StoredDiagnostic, 4> StoredDiagnostics; member in class:clang::ASTUnit
566 return StoredDiagnostics.begin();
569 return StoredDiagnostics.begin();
572 return StoredDiagnostics.end();
575 return StoredDiagnostics.end();
577 unsigned stored_diag_size() const { return StoredDiagnostics.size(); }
580 if (NumStoredDiagnosticsFromDriver > StoredDiagnostics.size())
582 return StoredDiagnostics.begin() + NumStoredDiagnosticsFromDriver;
760 /// FIXME: The Diag, LangOpts, SourceMgr, FileMgr, StoredDiagnostics, and
768 SmallVectorImpl<StoredDiagnostic> &StoredDiagnostics,
[all...]
/external/clang/lib/Frontend/
H A DASTUnit.cpp645 Client = new StoredDiagnosticConsumer(AST.StoredDiagnostics);
651 Diags->setClient(new StoredDiagnosticConsumer(AST.StoredDiagnostics));
996 StoredDiagnostics) {
999 for (unsigned I = 0; I < StoredDiagnostics.size(); ++I) {
1000 if (StoredDiagnostics[I].getLocation().isValid()) {
1001 StoredDiagnostics.erase(StoredDiagnostics.begin()+I);
1008 StoredDiagnostics,
1015 for (unsigned I = 0, N = StoredDiagnostics.size(); I < N; ++I) {
1016 if (StoredDiagnostics[
995 checkAndRemoveNonDriverDiags(SmallVectorImpl<StoredDiagnostic> & StoredDiagnostics) argument
1007 checkAndSanitizeDiags(SmallVectorImpl<StoredDiagnostic> & StoredDiagnostics, SourceManager &SM) argument
1897 SmallVector<StoredDiagnostic, 4> StoredDiagnostics; local
2271 CodeComplete(StringRef File, unsigned Line, unsigned Column, RemappedFile *RemappedFiles, unsigned NumRemappedFiles, bool IncludeMacros, bool IncludeCodePatterns, CodeCompleteConsumer &Consumer, DiagnosticsEngine &Diag, LangOptions &LangOpts, SourceManager &SourceMgr, FileManager &FileMgr, SmallVectorImpl<StoredDiagnostic> &StoredDiagnostics, SmallVectorImpl<const llvm::MemoryBuffer *> &OwnedBuffers) argument
[all...]

Completed in 107 milliseconds