HomeSort by relevance Sort by last modified time
    Searched refs:Diagnostics (Results 1 - 25 of 34) sorted by null

1 2

  /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;
CIndexDiagnostic.cpp 1 /*===-- CIndexDiagnostics.cpp - Diagnostics C Interface ---------*- C++ -*-===*\
36 for (std::vector<CXDiagnosticImpl *>::iterator it = Diagnostics.begin(),
37 et = Diagnostics.end();
163 if (TU->Diagnostics && checkIfChanged) {
164 // In normal use, ASTUnit's diagnostics should not change unless we reparse.
170 // -checks the diagnostics, the diagnostics set is lazily created,
174 // that ASTUnit will catch and add to its stored diagnostics vector.
182 Set = static_cast<CXDiagnosticSetImpl*>(TU->Diagnostics);
184 // Diagnostics in the ASTUnit were updated, reset the associate
    [all...]
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/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/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
AntlrRuntime_BaseTreeDebugView.cs 35 using System.Diagnostics;
TreeParser.cs 35 using ConditionalAttribute = System.Diagnostics.ConditionalAttribute;
  /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/lib/Tooling/
Tooling.cpp 46 static clang::driver::Driver *newDriver(clang::DiagnosticsEngine *Diagnostics,
51 DefaultOutputName, false, *Diagnostics);
60 clang::DiagnosticsEngine *Diagnostics,
69 Diagnostics->Report(clang::diag::err_fe_expected_compiler_job)
78 Diagnostics->Report(clang::diag::err_fe_expected_clang_command);
87 clang::DiagnosticsEngine *Diagnostics,
93 *Diagnostics);
165 DiagnosticsEngine Diagnostics(llvm::IntrusiveRefCntPtr<clang::DiagnosticIDs>(
169 newDriver(&Diagnostics, BinaryName));
175 &Diagnostics, Compilation.get())
    [all...]
Refactoring.cpp 143 // go into directly into Rewriter (there we also have the Diagnostics to
170 DiagnosticsEngine Diagnostics(
173 SourceManager Sources(Diagnostics, Tool.getFiles());
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
ErrorManager.cs 39 using StackTrace = System.Diagnostics.StackTrace;
40 using StackFrame = System.Diagnostics.StackFrame;
  /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/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
ExceptionExtensions.cs 34 using System.Diagnostics;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
ExceptionExtensions.cs 34 using System.Diagnostics;
  /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/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
Parser.cs 34 using ConditionalAttribute = System.Diagnostics.ConditionalAttribute;
BaseRecognizer.cs 38 using Conditional = System.Diagnostics.ConditionalAttribute;
44 using StackFrame = System.Diagnostics.StackFrame;
45 using StackTrace = System.Diagnostics.StackTrace;
    [all...]
DFA.cs 34 using ConditionalAttribute = System.Diagnostics.ConditionalAttribute;
Lexer.cs 34 using ConditionalAttribute = System.Diagnostics.ConditionalAttribute;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
Parser.cs 35 using ConditionalAttribute = System.Diagnostics.ConditionalAttribute;
BaseRecognizer.cs 39 using Conditional = System.Diagnostics.ConditionalAttribute;
45 using StackFrame = System.Diagnostics.StackFrame;
46 using StackTrace = System.Diagnostics.StackTrace;
    [all...]
DFA.cs 35 using ConditionalAttribute = System.Diagnostics.ConditionalAttribute;
Lexer.cs 35 using ConditionalAttribute = System.Diagnostics.ConditionalAttribute;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeParser.cs 34 using ConditionalAttribute = System.Diagnostics.ConditionalAttribute;

Completed in 618 milliseconds

1 2