HomeSort by relevance Sort by last modified time
    Searched refs:Diagnostics (Results 1 - 7 of 7) 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/unittests/AST/
APValueTest.cpp 59 TEST(APValue, Diagnostics) {
  /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...]
  /external/clang/lib/Frontend/
CompilerInstance.cpp 71 Diagnostics = Value;
102 // Diagnostics
120 // Chain in a diagnostic client which will log the diagnostics.
148 // Chain in the diagnostic client which will log the diagnostics.
160 Diagnostics = createDiagnostics(getDiagnosticOpts(), Argc, Argv, Client,
197 // Configure our handling of diagnostics.
592 assert(hasDiagnostics() && "Diagnostics engine is not initialized!");
637 // We can have multiple diagnostics sharing one diagnostic client.
    [all...]
ASTUnit.cpp 462 // Just drop any diagnostics that come from cloned consumers; they'll
468 /// \brief RAII object that optionally captures diagnostics, if
514 /// \brief Configure the diagnostics object for use with ASTUnit.
519 // No diagnostics engine was provided, so create our own diagnostics object
552 AST->Diagnostics = Diags;
882 // Set up diagnostics, capturing any diagnostics that would
    [all...]
  /prebuilt/common/ant/
ant.jar 

Completed in 70 milliseconds