HomeSort by: relevance | last modified time | path
    Searched defs:Diagnostic (Results 1 - 15 of 15) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Tooling/Core/
Diagnostic.cpp 1 //===--- Diagnostic.cpp - Framework for clang diagnostics tools ----------===//
13 #include "clang/Tooling/Core/Diagnostic.h"
48 Diagnostic::Diagnostic(llvm::StringRef DiagnosticName,
49 Diagnostic::Level DiagLevel, StringRef BuildDirectory)
53 Diagnostic::Diagnostic(llvm::StringRef DiagnosticName,
60 const llvm::StringMap<Replacements> *selectFirstFix(const Diagnostic& D) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Verifier.h 40 VerifierSupport *Diagnostic = nullptr;
75 TBAAVerifier(VerifierSupport *Diagnostic = nullptr)
76 : Diagnostic(Diagnostic) {}
DiagnosticInfo.h 1 //===- llvm/IR/DiagnosticInfo.h - Diagnostic Declaration --------*- C++ -*-===//
43 /// Defines the different supported severity of a diagnostic.
48 // A note attaches additional information to one of the previous diagnostic
53 /// Defines the different supported kind of a diagnostic.
86 /// Get the next available kind ID for a plugin diagnostic.
96 /// This is the base abstract class for diagnostic reporting in
105 /// Severity gives the severity of the diagnostic.
129 /// Diagnostic information for inline asm reporting.
143 /// for the whole life time of the Diagnostic.
151 /// for the whole life time of the Diagnostic
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Core/
Diagnostic.h 1 //===--- Diagnostic.h - Framework for clang diagnostics tools --*- C++ -*-===//
20 #include "clang/Basic/Diagnostic.h"
40 /// Represents the diagnostic message with the error message associated
45 /// Constructs a diagnostic message with anoffset to the diagnostic
58 /// Fixes for this diagnostic, grouped by file path.
66 /// Represents the diagnostic with the level of severity and possible
68 struct Diagnostic {
74 Diagnostic() = default;
76 Diagnostic(llvm::StringRef DiagnosticName, Level DiagLevel
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
DiagnosticInfo.cpp 1 //===- llvm/Support/DiagnosticInfo.cpp - Diagnostic Definitions -*- C++ -*-===//
344 DP << Diagnostic;
348 DP << Diagnostic;
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
TemplateDeduction.h 101 /// Take ownership of the SFINAE diagnostic.
115 /// Peek at the SFINAE diagnostic.
134 /// Is a SFINAE diagnostic available?
139 /// Set the diagnostic which caused the SFINAE failure.
141 // Only collect the first diagnostic.
149 /// Add a new diagnostic to the set of diagnostics
245 /// Indicates whether a diagnostic is stored in Diagnostic.
252 /// A diagnostic indicating why deduction failed.
253 alignas(PartialDiagnosticAt) char Diagnostic[sizeof(PartialDiagnosticAt)]
    [all...]
DelayedDiagnostic.h 93 /// Sets a diagnostic to be performed. The diagnostic is given
100 assert(isQuiet() && "partial diagnostic already defined");
104 assert(isQuiet() && "partial diagnostic already defined");
105 assert(DiagID && "creating null diagnostic");
122 /// A diagnostic message which has been conditionally emitted pending
155 unsigned diagnostic,
162 DD.ForbiddenTypeData.Diagnostic = diagnostic;
169 assert(Kind == Access && "Not an access diagnostic.")
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AVR/MCTargetDesc/
AVRAsmBackend.cpp 41 std::string Diagnostic = "out of range " + Description;
46 Diagnostic += " (expected an integer in the range " + std::to_string(Min) +
50 Ctx->reportFatalError(Fixup.getLoc(), Diagnostic);
52 llvm_unreachable(Diagnostic.c_str());
61 std::string Diagnostic = "out of range " + Description;
65 Diagnostic += " (expected an integer in the range 0 to " +
69 Ctx->reportFatalError(Fixup.getLoc(), Diagnostic);
71 llvm_unreachable(Diagnostic.c_str());
  /src/external/apache2/llvm/include/
Makefile 176 Diagnostic.td \
250 CLANG_TABLEGEN_INCLUDES.Diagnostic.td= -I${CLANG_SRCDIR}/include/clang/Basic
251 CLANG_TABLEGEN_OUTPUT.Diagnostic.td= \
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaAttr.cpp 616 // A pre-declared section takes precedence w/o diagnostic.
911 auto Diagnostic =
917 Diagnostic << FixItHint::CreateRemoval(
920 Diagnostic << attrMatcherRuleListToString(ExtraRules);
1032 // Don't add a conflicting attribute. No diagnostic is needed.
  /src/external/apache2/llvm/dist/llvm/lib/FileCheck/
FileCheckImpl.h 101 /// with diagnostic against \p SM if \p StrVal does not correspond to a valid
188 /// \returns either the implicit format of this AST, a diagnostic against
377 /// \returns the implicit format of this AST, if any, a diagnostic against
534 /// Class to represent an error holding a diagnostic with location information
538 SMDiagnostic Diagnostic;
545 : Diagnostic(Diag), Range(Range) {}
551 /// Print diagnostic associated with this error when printing the error.
552 void log(raw_ostream &OS) const override { Diagnostic.print(nullptr, OS); }
554 StringRef getMessage() const { return Diagnostic.getMessage(); }
578 /// Print diagnostic associated with this error when printing the error
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
Diagnostic.h 1 //===- Diagnostic.h - C Language Family Diagnostic Handling -----*- C++ -*-===//
10 /// Defines the Diagnostic-related interfaces.
61 /// Annotates a diagnostic with some code that should be
68 /// suppressing the diagnostic output can still result in successful
152 /// A single diagnostic with more than that almost certainly has to
175 /// The list of ranges added to this diagnostic.
193 /// The level of the diagnostic, after it has been through mapping.
300 /// Mapping info is packed into four bits per diagnostic. The low three
306 /// A new DiagState is created and kept around when diagnostic pragmas modif
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParsePragma.cpp 1337 auto Diagnostic =
1342 Diagnostic << /*SubRulesSupported=*/1 << SubRules;
1344 Diagnostic << /*SubRulesSupported=*/0;
1351 auto Diagnostic =
1355 Diagnostic << /*SubRulesSupported=*/1 << SubRules;
1357 Diagnostic << /*SubRulesSupported=*/0;
1492 /// Creates a diagnostic for the attribute subject rule parsing diagnostic that
1501 auto Diagnostic = PRef.Diag(Loc, DiagID);
1521 return Diagnostic;
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
globals.h 24 typedef unsigned char Diagnostic;
29 DIAGNOSTICoff // disable diagnostic
116 Diagnostic useDeprecated;
125 Diagnostic warnings;
  /src/external/apache2/llvm/dist/clang/bindings/python/clang/
cindex.py 367 class Diagnostic(object):
369 A Diagnostic is a single instance of a Clang diagnostic. It includes the
370 diagnostic severity, the message, the location the diagnostic occurred, as
455 return Diagnostic(diag)
461 """The category number for this diagnostic or 0 if unavailable."""
466 """The string name of the category for this diagnostic."""
471 """The command-line option that enables this diagnostic."""
476 """The command-line option that disables this diagnostic.""
    [all...]

Completed in 41 milliseconds