HomeSort by relevance Sort by last modified time
    Searched refs:Diagnostics (Results 1 - 25 of 30) 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();
152 if (TU->Diagnostics && checkIfChanged) {
153 // In normal use, ASTUnit's diagnostics should not change unless we reparse.
159 // -checks the diagnostics, the diagnostics set is lazily created,
163 // that ASTUnit will catch and add to its stored diagnostics vector.
171 Set = static_cast<CXDiagnosticSetImpl*>(TU->Diagnostics);
173 // Diagnostics in the ASTUnit were updated, reset the associate
    [all...]
CIndexCodeCompletion.cpp 237 /// \brief Diagnostics produced while performing code completion.
238 SmallVector<StoredDiagnostic, 8> Diagnostics;
248 /// \brief File manager, used for diagnostics.
251 /// \brief Source manager, used for diagnostics.
711 *Results->FileMgr, Results->Diagnostics,
762 os << ", \"diags\": " << Results->Diagnostics.size();
838 return Results->Diagnostics.size();
846 if (!Results || Index >= Results->Diagnostics.size())
849 return new CXStoredDiagnostic(Results->Diagnostics[Index], Results->LangOpts);
    [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;
BaseTree.cs 49 [System.Diagnostics.DebuggerTypeProxy(typeof(AntlrRuntime_BaseTreeDebugView))]
  /external/clang/lib/Tooling/
Tooling.cpp 39 static clang::driver::Driver *newDriver(clang::DiagnosticsEngine *Diagnostics,
44 DefaultOutputName, false, *Diagnostics);
53 clang::DiagnosticsEngine *Diagnostics,
62 Diagnostics->Report(clang::diag::err_fe_expected_compiler_job)
71 Diagnostics->Report(clang::diag::err_fe_expected_clang_command);
80 clang::DiagnosticsEngine *Diagnostics,
86 *Diagnostics);
154 DiagnosticsEngine Diagnostics(llvm::IntrusiveRefCntPtr<clang::DiagnosticIDs>(
158 newDriver(&Diagnostics, BinaryName));
164 &Diagnostics, Compilation.get())
    [all...]
  /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.
267 /// @name Diagnostics Engine
270 bool hasDiagnostics() const { return Diagnostics != 0; }
272 /// Get the current diagnostics engine.
274 assert(Diagnostics && "Compiler instance has no diagnostics!");
275 return *Diagnostics;
278 /// setDiagnostics - Replace the current diagnostics engine
    [all...]
ASTUnit.h 64 IntrusiveRefCntPtr<DiagnosticsEngine> Diagnostics;
99 /// \brief Whether to capture any diagnostics produced.
134 /// \brief The set of diagnostics produced when creating the preamble.
137 /// \brief The set of diagnostics produced when creating this
141 /// \brief The set of diagnostics produced when failing to parse, e.g. due
145 /// \brief The number of stored diagnostics that come from the driver
148 /// Diagnostics that come from the driver are retained from one parse to
433 const DiagnosticsEngine &getDiagnostics() const { return *Diagnostics; }
434 DiagnosticsEngine &getDiagnostics() { return *Diagnostics; }
562 // 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/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;
TokenRewriteStream.cs 37 using DebuggerDisplay = System.Diagnostics.DebuggerDisplayAttribute;
  /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;
  /external/clang/lib/Frontend/
CompilerInstance.cpp 62 Diagnostics = Value;
94 // Diagnostics
112 // Chain in a diagnostic client which will log the diagnostics.
140 // Chain in the diagnostic client which will log the diagnostics.
174 Diagnostics = createDiagnostics(getDiagnosticOpts(), Argc, Argv, Client,
215 // Configure our handling of diagnostics.
635 assert(hasDiagnostics() && "Diagnostics engine is not initialized!");
685 // We can have multiple diagnostics sharing one diagnostic client.
852 // This one-element cache is important to eliminate redundant diagnostics
    [all...]
ASTUnit.cpp 580 // Just drop any diagnostics that come from cloned consumers; they'll
589 /// \brief RAII object that optionally captures diagnostics, if
635 /// \brief Configure the diagnostics object for use with ASTUnit.
640 // No diagnostics engine was provided, so create our own diagnostics object
676 AST->Diagnostics = Diags;
    [all...]

Completed in 595 milliseconds

1 2