Searched refs:Diagnostic (Results 1 - 25 of 50) sorted by last modified time

12

/freebsd-11-stable/lib/clang/libclang/
H A DMakefile177 SRCS_MIN+= Basic/Diagnostic.cpp
845 clang/Basic/Diagnostic${hdr}Kinds.inc: \
846 ${CLANG_SRCS}/include/clang/Basic/Diagnostic.td
849 -o ${.TARGET} ${CLANG_SRCS}/include/clang/Basic/Diagnostic.td
850 TGHDRS+= clang/Basic/Diagnostic${hdr}Kinds.inc
854 ${CLANG_SRCS}/include/clang/Basic/Diagnostic.td
857 -o ${.TARGET} ${CLANG_SRCS}/include/clang/Basic/Diagnostic.td
861 ${CLANG_SRCS}/include/clang/Basic/Diagnostic.td
864 -o ${.TARGET} ${CLANG_SRCS}/include/clang/Basic/Diagnostic.td
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaOverload.cpp21 #include "clang/Basic/Diagnostic.h"
667 PartialDiagnosticAt *Diag = new (Result.Diagnostic) PartialDiagnosticAt(
739 return static_cast<PartialDiagnosticAt*>(static_cast<void*>(Diagnostic));
H A DSemaExprCXX.cpp7174 auto Diagnostic =
7181 Diagnostic << FixItHint::CreateReplacement(OpLoc, "->");
H A DSemaDeclCXX.cpp10314 : S(S), Diagnostic(S.Diag(Loc, DiagID)) {}
10316 Diagnostic << Specifiers;
10328 Diagnostic << SourceRange(SpecLoc, SpecLoc);
10334 Sema::SemaDiagnosticBuilder Diagnostic;
H A DSemaAttr.cpp744 auto Diagnostic = local
750 Diagnostic << FixItHint::CreateRemoval(
753 Diagnostic << attrMatcherRuleListToString(ExtraRules);
H A DSema.cpp1352 Diagnostic DiagInfo(&Diags);
1377 Diagnostic DiagInfo(&Diags);
1399 Diagnostic DiagInfo(&Diags);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DFileCheckImpl.h320 SMDiagnostic Diagnostic; member in class:llvm::ErrorDiagnostic
325 ErrorDiagnostic(SMDiagnostic &&Diag) : Diagnostic(Diag) {}
332 void log(raw_ostream &OS) const override { Diagnostic.print(nullptr, OS); }
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DVerifier.cpp5175 if (Diagnostic)
5176 return Diagnostic->CheckFailed(Args...);
H A DDiagnosticInfo.cpp1 //===- llvm/Support/DiagnosticInfo.cpp - Diagnostic Definitions -*- C++ -*-===//
317 DP << Diagnostic; local
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DSourceMgr.h207 void PrintMessage(raw_ostream &OS, const SMDiagnostic &Diagnostic,
275 // Diagnostic with no location (e.g. file not found, command line arg error).
279 // Diagnostic with a location.
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DDiagnosticInfo.h1 //===- llvm/IR/DiagnosticInfo.h - Diagnostic Declaration --------*- C++ -*-===//
126 /// Diagnostic information for inline asm reporting.
140 /// for the whole life time of the Diagnostic.
148 /// for the whole life time of the Diagnostic.
157 /// for the whole life time of the Diagnostic.
174 /// Diagnostic information for stack size etc. reporting.
231 /// Diagnostic information for debug metadata version reporting.
259 /// Diagnostic information for stripping invalid debug metadata.
281 /// Diagnostic information for the sample profiler.
320 /// Diagnostic informatio
909 const SMDiagnostic &Diagnostic; member in class:llvm::DiagnosticInfoMIRParser
912 DiagnosticInfoMIRParser(DiagnosticSeverity Severity, const SMDiagnostic &Diagnostic) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DClangASTContext.cpp29 #include "clang/Basic/Diagnostic.h"
653 const clang::Diagnostic &info) override {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangModulesDeclVendor.cpp51 const clang::Diagnostic &info) override;
122 clang::DiagnosticsEngine::Level DiagLevel, const clang::Diagnostic &info) {
H A DClangExpressionParser.cpp165 const clang::Diagnostic &Info) override {
H A DClangDiagnostic.h14 #include "clang/Basic/Diagnostic.h"
23 class ClangDiagnostic : public Diagnostic {
28 static inline bool classof(const Diagnostic *diag) {
34 : Diagnostic(message, severity, eDiagnosticOriginClang, compiler_id) {}
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/
H A DDiagnosticManager.h39 class Diagnostic { class in namespace:lldb_private
45 static bool classof(const Diagnostic *diag) {
58 Diagnostic(llvm::StringRef message, DiagnosticSeverity severity, function in class:lldb_private::Diagnostic
63 Diagnostic(const Diagnostic &rhs) function in class:lldb_private::Diagnostic
67 virtual ~Diagnostic() = default;
91 typedef std::vector<std::unique_ptr<Diagnostic>> DiagnosticList;
104 [](const std::unique_ptr<Diagnostic> &diag) {
113 std::make_unique<Diagnostic>(message, severity, origin, compiler_id));
116 void AddDiagnostic(std::unique_ptr<Diagnostic> diagnosti
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DClangForward.h48 class Diagnostic;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DCompilationDatabase.cpp18 #include "clang/Basic/Diagnostic.h"
189 const Diagnostic &Info) override {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParsePragma.cpp1185 auto Diagnostic = local
1190 Diagnostic << /*SubRulesSupported=*/1 << SubRules;
1192 Diagnostic << /*SubRulesSupported=*/0;
1199 auto Diagnostic = local
1203 Diagnostic << /*SubRulesSupported=*/1 << SubRules;
1205 Diagnostic << /*SubRulesSupported=*/0;
1349 auto Diagnostic = PRef.Diag(Loc, DiagID); local
1369 return Diagnostic;
1390 Diagnostic << FixItHint::CreateInsertion(FixItRange.getBegin(), FixIt);
1392 Diagnostic << FixItHin
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp1 //===- VerifyDiagnosticConsumer.cpp - Verifying Diagnostic Client ---------===//
15 #include "clang/Basic/Diagnostic.h"
705 DiagnosticsEngine::Level DiagLevel, const Diagnostic &Info) {
H A DSerializedDiagnosticPrinter.cpp10 #include "clang/Basic/Diagnostic.h"
157 const Diagnostic &Info) override;
248 /// Diagnostic options.
444 // The subsequent records and Abbrevs are for the "Diagnostic" block.
569 const Diagnostic &Info) {
641 if (const Diagnostic *Info = D.dyn_cast<const Diagnostic*>()) {
H A DASTUnit.cpp28 #include "clang/Basic/Diagnostic.h"
611 /// Diagnostic consumer that saves each diagnostic it is given.
638 const Diagnostic &Info) override;
678 static bool isInMainFile(const clang::Diagnostic &D) {
687 DiagnosticsEngine::Level Level, const Diagnostic &Info) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DFixItRewriter.cpp1 //===- FixItRewriter.cpp - Fix-It Rewriter Diagnostic Client --------------===//
16 #include "clang/Basic/Diagnostic.h"
127 const Diagnostic &Info) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DDiagnostic.cpp1 //===- Diagnostic.cpp - C Language Family Diagnostic Handling -------------===//
9 // This file implements the Diagnostic-related interfaces.
13 #include "clang/Basic/Diagnostic.h"
488 Diagnostic Info(this, storedDiag.getMessage());
503 Diagnostic Info(this);
533 const Diagnostic &Info) {
582 static void HandleSelectModifier(const Diagnostic &DInfo, unsigned ValNo,
723 static void HandlePluralModifier(const Diagnostic &DInfo, unsigned ValNo,
762 void Diagnostic
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DARCMT.cpp133 const Diagnostic &Info) override {

Completed in 404 milliseconds

12