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

  /external/clang/tools/libclang/
CIndexDiagnostic.h 1 /*===-- CIndexDiagnostic.h - Diagnostics C Interface ------------*- C++ -*-===*\
27 std::vector<CXDiagnosticImpl *> Diagnostics;
36 return Diagnostics.size();
41 return Diagnostics[i];
45 Diagnostics.push_back(D);
49 return Diagnostics.empty();
CXTranslationUnit.h 22 void *Diagnostics;
CIndexCodeCompletion.cpp 248 /// \brief Diagnostics produced while performing code completion.
249 SmallVector<StoredDiagnostic, 8> Diagnostics;
259 /// \brief File manager, used for diagnostics.
262 /// \brief Source manager, used for diagnostics.
728 *Results->FileMgr, Results->Diagnostics,
779 os << ", \"diags\": " << Results->Diagnostics.size();
855 return Results->Diagnostics.size();
863 if (!Results || Index >= Results->Diagnostics.size())
866 return new CXStoredDiagnostic(Results->Diagnostics[Index], Results->LangOpts);
    [all...]
  /external/clang/unittests/Tooling/
RewriterTestContext.h 38 : Diagnostics(llvm::IntrusiveRefCntPtr<DiagnosticIDs>(new DiagnosticIDs)),
41 Sources(Diagnostics, Files),
43 Diagnostics.setClient(&DiagnosticPrinter, false);
112 DiagnosticsEngine Diagnostics;
  /external/clang/include/clang/Sema/
DelayedDiagnostic.h 1 //===--- DelayedDiagnostic.h - Delayed declarator diagnostics ---*- C++ -*-===//
11 // record diagnostics that are being conditionally produced during
12 // declarator parsing. Certain kinds of diagnostics --- notably
217 /// DelayedDiagnosticPool - A collection of diagnostics which were
221 llvm::SmallVector<DelayedDiagnostic, 4> Diagnostics;
230 i = Diagnostics.begin(), e = Diagnostics.end(); i != e; ++i)
236 /// Does this pool, or any of its ancestors, contain any diagnostics?
238 return (Diagnostics.empty() && (Parent == NULL || Parent->empty()));
243 Diagnostics.push_back(diag)
    [all...]
  /external/clang/include/clang/Frontend/
CompilerInstance.h 70 /// The diagnostics engine instance.
71 IntrusiveRefCntPtr<DiagnosticsEngine> Diagnostics;
151 /// - The diagnostics engine should have already been created by the client.
264 /// @name Diagnostics Engine
267 bool hasDiagnostics() const { return Diagnostics != 0; }
269 /// Get the current diagnostics engine.
271 assert(Diagnostics && "Compiler instance has no diagnostics!");
272 return *Diagnostics;
275 /// setDiagnostics - Replace the current diagnostics engine
    [all...]
ASTUnit.h 65 IntrusiveRefCntPtr<DiagnosticsEngine> Diagnostics;
100 /// \brief Whether to capture any diagnostics produced.
135 /// \brief The set of diagnostics produced when creating the preamble.
138 /// \brief The set of diagnostics produced when creating this
142 /// \brief The set of diagnostics produced when failing to parse, e.g. due
146 /// \brief The number of stored diagnostics that come from the driver
149 /// Diagnostics that come from the driver are retained from one parse to
443 const DiagnosticsEngine &getDiagnostics() const { return *Diagnostics; }
444 DiagnosticsEngine &getDiagnostics() { return *Diagnostics; }
572 // Retrieve the diagnostics associated with this AS
    [all...]
  /external/clang/lib/Rewrite/Core/
Rewriter.cpp 427 AtomicallyMovedFile(DiagnosticsEngine &Diagnostics, StringRef Filename,
429 : Diagnostics(Diagnostics), Filename(Filename), AllWritten(AllWritten) {
436 Diagnostics.Report(clang::diag::err_unable_to_make_temp)
454 Diagnostics.Report(clang::diag::err_unable_to_rename_temp)
467 DiagnosticsEngine &Diagnostics;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 
  /prebuilts/tools/common/ant/
ant.jar 

Completed in 97 milliseconds