Searched defs:Diagnostics (Results 1 - 3 of 3) sorted by relevance

/external/clang/include/clang/Frontend/
H A DCompilerInstance.h65 llvm::IntrusiveRefCntPtr<DiagnosticsEngine> Diagnostics; member in class:clang::CompilerInstance
249 /// @name Diagnostics Engine
252 bool hasDiagnostics() const { return Diagnostics != 0; }
256 assert(Diagnostics && "Compiler instance has no diagnostics!");
257 return *Diagnostics;
264 assert(Diagnostics && Diagnostics->getClient() &&
266 return *Diagnostics->getClient();
H A DASTUnit.h72 llvm::IntrusiveRefCntPtr<DiagnosticsEngine> Diagnostics; member in class:clang::ASTUnit
146 /// Diagnostics that come from the driver are retained from one parse to
441 const DiagnosticsEngine &getDiagnostics() const { return *Diagnostics; }
442 DiagnosticsEngine &getDiagnostics() { return *Diagnostics; }
/external/clang/tools/libclang/
H A DCIndexCodeCompletion.cpp226 /// \brief Diagnostics produced while performing code completion.
227 SmallVector<StoredDiagnostic, 8> Diagnostics; member in struct:AllocatedCXCodeCompleteResults
690 *Results->FileMgr, Results->Diagnostics,
741 os << ", \"diags\": " << Results->Diagnostics.size();
817 return Results->Diagnostics.size();
825 if (!Results || Index >= Results->Diagnostics.size())
828 return new CXStoredDiagnostic(Results->Diagnostics[Index], Results->LangOpts);

Completed in 70 milliseconds