Searched refs:Diagnostics (Results 1 - 25 of 40) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DDiagnostics.cpp1 //===--- Diagnostics.cpp - Helper class for error diagnostics -----*- C++ -*-===//
9 #include "clang/ASTMatchers/Dynamic/Diagnostics.h"
14 Diagnostics::ArgStream Diagnostics::pushContextFrame(ContextType Type,
23 Diagnostics::Context::Context(ConstructMatcherEnum, Diagnostics *Error,
30 Diagnostics::Context::Context(MatcherArgEnum, Diagnostics *Error,
39 Diagnostics::Context::~Context() { Error->ContextStack.pop_back(); }
41 Diagnostics
[all...]
H A DParser.cpp16 #include "clang/ASTMatchers/Dynamic/Diagnostics.h"
69 explicit CodeTokenizer(StringRef &MatcherCode, Diagnostics *Error)
74 CodeTokenizer(StringRef &MatcherCode, Diagnostics *Error,
316 Diagnostics *Error;
495 Diagnostics::Context Ctx(Diagnostics::Context::MatcherArg, Error,
527 Diagnostics::Context Ctx(Diagnostics::Context::ConstructMatcher, Error,
628 const NamedValueMap *NamedValues, Diagnostics *Error)
641 ArrayRef<ParserValue> Args, Diagnostics *Erro
[all...]
H A DMarshallers.h25 #include "clang/ASTMatchers/Dynamic/Diagnostics.h"
201 Diagnostics *Error) const = 0;
259 Diagnostics *Error);
277 Diagnostics *Error) const override {
377 ArrayRef<ParserValue> Args, Diagnostics *Error) {
420 Diagnostics *Error);
435 Diagnostics *Error) const override {
516 Diagnostics *Error) {
527 Diagnostics *Error) {
540 Diagnostics *Erro
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DDelayedDiagnostic.h270 SmallVector<DelayedDiagnostic, 4> Diagnostics; member in class:clang::sema::DelayedDiagnosticPool
279 : Parent(Other.Parent), Diagnostics(std::move(Other.Diagnostics)) {
280 Other.Diagnostics.clear();
285 Diagnostics = std::move(Other.Diagnostics);
286 Other.Diagnostics.clear();
292 i = Diagnostics.begin(), e = Diagnostics.end(); i != e; ++i)
300 return (Diagnostics
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/Dynamic/
H A DParser.h52 class Diagnostics;
92 Diagnostics *Error) = 0;
140 Diagnostics *Error) override;
168 const NamedValueMap *NamedValues, Diagnostics *Error);
170 parseMatcherExpression(StringRef &MatcherCode, Sema *S, Diagnostics *Error) {
174 parseMatcherExpression(StringRef &MatcherCode, Diagnostics *Error) {
192 VariantValue *Value, Diagnostics *Error);
194 Diagnostics *Error) {
198 Diagnostics *Error) {
232 Diagnostics *Erro
[all...]
H A DDiagnostics.h1 //===--- Diagnostics.h - Helper class for error diagnostics -----*- C++ -*-===//
10 /// Diagnostics class to manage error messages.
50 class Diagnostics { class in namespace:clang::ast_matchers::dynamic
105 Context(ConstructMatcherEnum, Diagnostics *Error, StringRef MatcherName,
109 Context(MatcherArgEnum, Diagnostics *Error, StringRef MatcherName,
114 Diagnostics *const Error;
123 OverloadContext(Diagnostics* Error);
130 Diagnostics *const Error;
H A DRegistry.h19 #include "clang/ASTMatchers/Dynamic/Diagnostics.h"
116 Diagnostics *Error);
128 Diagnostics *Error);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Index/
H A DSimpleFormatContext.h38 Diagnostics(new DiagnosticsEngine(new DiagnosticIDs, DiagOpts.get())),
41 Sources(*Diagnostics, Files), Rewrite(Sources, Options) {
42 Diagnostics->setClient(new IgnoringDiagConsumer, true);
62 IntrusiveRefCntPtr<DiagnosticsEngine> Diagnostics; member in class:clang::index::SimpleFormatContext
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/
H A DCompilerInstance.h77 IntrusiveRefCntPtr<DiagnosticsEngine> Diagnostics; member in class:clang::CompilerInstance
331 /// @name Diagnostics Engine
334 bool hasDiagnostics() const { return Diagnostics != nullptr; }
338 assert(Diagnostics && "Compiler instance has no diagnostics!");
339 return *Diagnostics;
346 assert(Diagnostics && Diagnostics->getClient() &&
348 return *Diagnostics->getClient();
535 if (Diagnostics)
536 Diagnostics
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DOSObjectCStyleCast.cpp44 std::string Diagnostics; local
45 llvm::raw_string_ostream OS(Diagnostics);
H A DPointerIterationChecker.cpp47 std::string Diagnostics; local
48 llvm::raw_string_ostream OS(Diagnostics);
H A DPointerSortingChecker.cpp47 std::string Diagnostics; local
48 llvm::raw_string_ostream OS(Diagnostics);
H A DGCDAntipatternChecker.cpp189 std::string Diagnostics; local
190 llvm::raw_string_ostream OS(Diagnostics);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DRefactoring.cpp44 DiagnosticsEngine Diagnostics(
47 SourceManager Sources(Diagnostics, getFiles());
H A DTooling.cpp77 newDriver(DiagnosticsEngine *Diagnostics, const char *BinaryName, argument
81 *Diagnostics, std::move(VFS));
90 DiagnosticsEngine *Diagnostics, driver::Compilation *Compilation) {
125 Diagnostics->Report(diag::err_fe_expected_compiler_job)
133 Diagnostics->Report(diag::err_fe_expected_clang_command);
145 DiagnosticsEngine *Diagnostics, const llvm::opt::ArgStringList &CC1Args) {
148 CompilerInvocation::CreateFromArgs(*Invocation, CC1Args, *Diagnostics);
327 DiagnosticsEngine Diagnostics(
332 newDriver(&Diagnostics, BinaryName, &Files->getVirtualFileSystem()));
344 &Diagnostics, Compilatio
89 getCC1Arguments( DiagnosticsEngine *Diagnostics, driver::Compilation *Compilation) argument
144 newInvocation( DiagnosticsEngine *Diagnostics, const llvm::opt::ArgStringList &CC1Args) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Core/
H A DDiagnostic.h89 /// Collection of Diagnostics generated from a single translation unit.
93 std::vector<Diagnostic> Diagnostics; member in struct:clang::tooling::TranslationUnitDiagnostics
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/
H A DDiagnosticManager.cpp50 for (const auto &diagnostic : Diagnostics()) {
H A DUserExpression.cpp293 if (!diagnostic_manager.Diagnostics().size())
318 if (!diagnostic_manager.Diagnostics().size())
348 if (!diagnostic_manager.Diagnostics().size())
/freebsd-11-stable/contrib/llvm-project/clang/lib/Rewrite/
H A DRewriter.cpp422 AtomicallyMovedFile(DiagnosticsEngine &Diagnostics, StringRef Filename, argument
424 : Diagnostics(Diagnostics), Filename(Filename), AllWritten(AllWritten) {
430 Diagnostics.Report(clang::diag::err_unable_to_make_temp)
444 Diagnostics.Report(clang::diag::err_unable_to_rename_temp)
456 DiagnosticsEngine &Diagnostics; member in class:__anon572::AtomicallyMovedFile
/freebsd-11-stable/contrib/sqlite3/
H A DReplace.cs17 using System.Diagnostics;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/
H A DDiagnosticsYaml.h92 Io.mapRequired("Diagnostics", Doc.Diagnostics);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/
H A DDiagnosticManager.h100 const DiagnosticList &Diagnostics() { return m_diagnostics; } function in class:lldb_private::DiagnosticManager
/freebsd-11-stable/contrib/llvm-project/clang/tools/clang-format/
H A DClangFormat.cpp188 DiagnosticsEngine Diagnostics(
191 SourceManager Sources(Diagnostics, Files);
413 DiagnosticsEngine Diagnostics(
416 SourceManager Sources(Diagnostics, Files);
/freebsd-11-stable/contrib/byacc/
H A Dvmsbuild.com126 $ CFLAGS := 'CFLAGS/Diagnostics /Define=("''DEFS'") /Include=([])
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DPrecompiledPreamble.cpp238 DiagnosticsEngine &Diagnostics,
288 Clang->setDiagnostics(&Diagnostics);
311 Diagnostics.Reset();
312 ProcessWarningOptions(Diagnostics, Clang->getDiagnosticOpts());
315 createVFSFromCompilerInvocation(Clang->getInvocation(), Diagnostics, VFS);
322 new SourceManager(Diagnostics, Clang->getFileManager()));
235 Build( const CompilerInvocation &Invocation, const llvm::MemoryBuffer *MainFileBuffer, PreambleBounds Bounds, DiagnosticsEngine &Diagnostics, IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS, std::shared_ptr<PCHContainerOperations> PCHContainerOps, bool StoreInMemory, PreambleCallbacks &Callbacks) argument

Completed in 330 milliseconds

12