HomeSort by relevance Sort by last modified time
    Searched defs:Diagnostics (Results 1 - 4 of 4) sorted by null

  /external/clang/include/clang/Frontend/
CompilerInstance.h 64 /// The diagnostics engine instance.
65 llvm::IntrusiveRefCntPtr<DiagnosticsEngine> Diagnostics;
133 /// - The diagnostics engine should have already been created by the client.
249 /// @name Diagnostics Engine
252 bool hasDiagnostics() const { return Diagnostics != 0; }
254 /// Get the current diagnostics engine.
256 assert(Diagnostics && "Compiler instance has no diagnostics!");
257 return *Diagnostics;
260 /// setDiagnostics - Replace the current diagnostics engine
    [all...]
ASTUnit.h 72 llvm::IntrusiveRefCntPtr<DiagnosticsEngine> Diagnostics;
106 /// \brief Whether to capture any diagnostics produced.
136 /// \brief The set of diagnostics produced when creating the preamble.
139 /// \brief The set of diagnostics produced when creating this
143 /// \brief The number of stored diagnostics that come from the driver
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; }
561 // Retrieve the diagnostics associated with this AST
610 /// \param Diags - The diagnostics engine to use for reporting errors; it
    [all...]
  /external/clang/tools/libclang/
CIndexCodeCompletion.cpp 226 /// \brief Diagnostics produced while performing code completion.
227 SmallVector<StoredDiagnostic, 8> Diagnostics;
237 /// \brief File manager, used for diagnostics.
240 /// \brief Source manager, used for diagnostics.
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);
    [all...]
  /prebuilt/common/ant/
ant.jar 

Completed in 56 milliseconds