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

1 2

  /external/clang/tools/libclang/
SimpleFormatContext.h 38 Diagnostics(new DiagnosticsEngine(new DiagnosticIDs,
41 Sources(*Diagnostics, Files),
43 Diagnostics->setClient(new IgnoringDiagConsumer, true);
67 IntrusiveRefCntPtr<DiagnosticsEngine> Diagnostics;
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 30 void *Diagnostics;
CIndexDiagnostic.cpp 1 /*===-- CIndexDiagnostics.cpp - Diagnostics C Interface ---------*- C++ -*-===*\
35 for (std::vector<CXDiagnosticImpl *>::iterator it = Diagnostics.begin(),
36 et = Diagnostics.end();
162 if (TU->Diagnostics && checkIfChanged) {
163 // In normal use, ASTUnit's diagnostics should not change unless we reparse.
169 // -checks the diagnostics, the diagnostics set is lazily created,
173 // that ASTUnit will catch and add to its stored diagnostics vector.
181 Set = static_cast<CXDiagnosticSetImpl*>(TU->Diagnostics);
183 // Diagnostics in the ASTUnit were updated, reset the associate
    [all...]
CIndexCodeCompletion.cpp 253 /// \brief Diagnostics produced while performing code completion.
254 SmallVector<StoredDiagnostic, 8> Diagnostics;
266 /// \brief File manager, used for diagnostics.
269 /// \brief Source manager, used for diagnostics.
727 *Results->FileMgr, Results->Diagnostics,
778 os << ", \"diags\": " << Results->Diagnostics.size();
865 return Results->Diagnostics.size();
873 if (!Results || Index >= Results->Diagnostics.size())
876 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
227 /// DelayedDiagnosticPool - A collection of diagnostics which were
231 SmallVector<DelayedDiagnostic, 4> Diagnostics;
239 i = Diagnostics.begin(), e = Diagnostics.end(); i != e; ++i)
245 /// Does this pool, or any of its ancestors, contain any diagnostics?
247 return (Diagnostics.empty() && (Parent == NULL || Parent->empty()));
252 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 39 Diagnostics(IntrusiveRefCntPtr<DiagnosticIDs>(new DiagnosticIDs),
43 Sources(Diagnostics, Files),
45 Diagnostics.setClient(&DiagnosticPrinter, false);
115 DiagnosticsEngine Diagnostics;
  /external/clang/lib/Tooling/
Tooling.cpp 47 static clang::driver::Driver *newDriver(clang::DiagnosticsEngine *Diagnostics,
52 DefaultOutputName, *Diagnostics);
61 clang::DiagnosticsEngine *Diagnostics,
70 Diagnostics->Report(clang::diag::err_fe_expected_compiler_job)
79 Diagnostics->Report(clang::diag::err_fe_expected_clang_command);
88 clang::DiagnosticsEngine *Diagnostics,
94 *Diagnostics);
166 DiagnosticsEngine Diagnostics(
171 newDriver(&Diagnostics, BinaryName));
177 &Diagnostics, Compilation.get())
    [all...]
Refactoring.cpp 152 DiagnosticsEngine Diagnostics(
155 SourceManager Sources(Diagnostics, getFiles());
174 // go into directly into Rewriter (there we also have the Diagnostics to
  /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 71 /// The diagnostics engine instance.
72 IntrusiveRefCntPtr<DiagnosticsEngine> Diagnostics;
159 /// - The diagnostics engine should have already been created by the client.
281 /// @name Diagnostics Engine
284 bool hasDiagnostics() const { return Diagnostics != 0; }
286 /// Get the current diagnostics engine.
288 assert(Diagnostics && "Compiler instance has no diagnostics!");
289 return *Diagnostics;
292 /// setDiagnostics - Replace the current diagnostics engine
    [all...]
ASTUnit.h 68 IntrusiveRefCntPtr<DiagnosticsEngine> Diagnostics;
101 /// \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 set of diagnostics produced when failing to parse, e.g. due
147 /// \brief The number of stored diagnostics that come from the driver
150 /// Diagnostics that come from the driver are retained from one parse to
444 const DiagnosticsEngine &getDiagnostics() const { return *Diagnostics; }
445 DiagnosticsEngine &getDiagnostics() { return *Diagnostics; }
580 // 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 430 AtomicallyMovedFile(DiagnosticsEngine &Diagnostics, StringRef Filename,
432 : Diagnostics(Diagnostics), Filename(Filename), AllWritten(AllWritten) {
439 Diagnostics.Report(clang::diag::err_unable_to_make_temp)
457 Diagnostics.Report(clang::diag::err_unable_to_rename_temp)
470 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;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeParser.cs 34 using ConditionalAttribute = System.Diagnostics.ConditionalAttribute;

Completed in 525 milliseconds

1 2