Home
last modified time | relevance | path

Searched refs:diagnostics (Results 1 – 25 of 84) sorted by relevance

1234

/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticOptions.def50 DIAGOPT(ShowLine, 1, 1) /// Show line number on diagnostics.
51 DIAGOPT(ShowColumn, 1, 1) /// Show column number on diagnostics.
55 DIAGOPT(ShowCarets, 1, 1) /// Show carets in diagnostics.
59 DIAGOPT(ShowPresumedLoc, 1, 0) /// Show presumed location for diagnostics.
61 /// diagnostics.
66 ENUM_DIAGOPT(Format, TextDiagnosticFormat, 2, Clang) /// Format for diagnostics:
68 DIAGOPT(ShowColors, 1, 0) /// Show diagnostics with ANSI color sequences.
72 DIAGOPT(VerifyDiagnostics, 1, 0) /// Check that diagnostics match the expected
73 /// diagnostics, indicated by markers in the
76 DiagnosticLevelMask::None) /// Ignore unexpected diagnostics of
[all …]
H A DDiagnostic.td9 // This file defines the TableGen core definitions for the diagnostics
41 // Textual substitutions which may be performed on the text of diagnostics
45 // diagnostics
52 // diagnostics to specify a category.
77 // All diagnostics emitted by the compiler are an indirect subclass of this.
H A DDiagnosticRefactoringKinds.td1 //==--- DiagnosticRefactoringKinds.td - refactoring diagnostics -----------===//
33 } // end of Refactoring diagnostics
H A DDiagnosticFrontendKinds.td1 //==--- DiagnosticFrontendKinds.td - frontend diagnostics -----------------===//
146 "unable to merge a subprocess's serialized diagnostics">,
149 "unable to open file %0 for serializing diagnostics (%1)">,
176 "'%0' diagnostics %select{expected|seen}1 but not %select{seen|expected}1: "
179 "%select{expected|'expected-no-diagnostics'}0 directive cannot follow "
180 "%select{'expected-no-diagnostics' directive|other expected directives}0">;
182 "no expected directives found: consider use of 'expected-no-diagnostics'">;
H A DDiagnosticCrossTUKinds.td1 //==--- DiagnosticCrossTUKinds.td - Cross Translation Unit diagnostics ----===//
/freebsd-14.2/contrib/llvm-project/lldb/source/Expression/
H A DUtilityFunction.cpp90 DiagnosticManager diagnostics; in MakeFunctionCaller() local
93 m_caller_up->CompileFunction(thread_to_use_sp, diagnostics); in MakeFunctionCaller()
97 m_function_name.c_str(), diagnostics.GetString().c_str()); in MakeFunctionCaller()
102 diagnostics.Clear(); in MakeFunctionCaller()
105 if (!m_caller_up->WriteFunctionWrapper(exe_ctx, diagnostics)) { in MakeFunctionCaller()
108 m_function_name.c_str(), diagnostics.GetString().c_str()); in MakeFunctionCaller()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DInferiorCallPOSIX.cpp103 DiagnosticManager diagnostics; in InferiorCallMmap() local
110 exe_ctx, call_plan_sp, options, diagnostics); in InferiorCallMmap()
172 DiagnosticManager diagnostics; in InferiorCallMunmap() local
179 exe_ctx, call_plan_sp, options, diagnostics); in InferiorCallMunmap()
/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanCallUserExpression.cpp83 DiagnosticManager diagnostics; in MischiefManaged() local
88 diagnostics, exe_ctx, m_result_var_sp, function_stack_bottom, in MischiefManaged()
/freebsd-14.2/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp250 DiagnosticManager diagnostics; in ConditionSaysStop() local
272 if (!m_user_expression_sp->Parse(diagnostics, exe_ctx, in ConditionSaysStop()
277 diagnostics.GetString().c_str()); in ConditionSaysStop()
299 diagnostics.Clear(); in ConditionSaysStop()
304 diagnostics, exe_ctx, options, m_user_expression_sp, result_variable_sp); in ConditionSaysStop()
335 diagnostics.GetString().c_str()); in ConditionSaysStop()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp613 DiagnosticManager diagnostics; in MakeLoadImageUtilityFunction() local
689 DiagnosticManager diagnostics; in DoLoadImage() local
849 diagnostics.Clear(); in DoLoadImage()
853 diagnostics)) { in DoLoadImage()
856 diagnostics.GetString().c_str()); in DoLoadImage()
894 exe_ctx, &func_args_addr, options, diagnostics, return_value); in DoLoadImage()
898 diagnostics.GetString().c_str()); in DoLoadImage()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.cpp165 DiagnosticManager diagnostics; in GetObjectDescription() local
182 diagnostics); in GetObjectDescription()
185 exe_ctx, wrapper_struct_addr, arg_value_list, diagnostics); in GetObjectDescription()
197 exe_ctx, &wrapper_struct_addr, options, diagnostics, ret); in GetObjectDescription()
H A DAppleObjCRuntimeV2.cpp2076 DiagnosticManager diagnostics; in UpdateISAToDescriptorMap() local
2143 diagnostics.Clear(); in UpdateISAToDescriptorMap()
2164 diagnostics.Clear(); in UpdateISAToDescriptorMap()
2190 diagnostics.Dump(log); in UpdateISAToDescriptorMap()
2196 diagnostics.Dump(log); in UpdateISAToDescriptorMap()
2345 DiagnosticManager diagnostics; in UpdateISAToDescriptorMap() local
2381 diagnostics.Clear(); in UpdateISAToDescriptorMap()
2385 exe_ctx, m_args, arguments, diagnostics)) { in UpdateISAToDescriptorMap()
2402 diagnostics.Clear(); in UpdateISAToDescriptorMap()
2465 diagnostics.Dump(log); in UpdateISAToDescriptorMap()
[all …]
H A DAppleThreadPlanStepThroughObjCTrampoline.cpp58 DiagnosticManager diagnostics; in InitializeFunctionCaller() local
74 exc_ctx, m_args_addr, options, diagnostics); in InitializeFunctionCaller()
H A DAppleObjCTrampolineHandler.cpp760 DiagnosticManager diagnostics; in SetupDispatchFunction() local
762 exe_ctx, args_addr, dispatch_values, diagnostics)) { in SetupDispatchFunction()
765 diagnostics.Dump(log); in SetupDispatchFunction()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Testing/
H A DTestAST.h92 llvm::ArrayRef<StoredDiagnostic> diagnostics() { return Diagnostics; } in diagnostics() function
/freebsd-14.2/contrib/llvm-project/lld/COFF/
H A DOptions.td35 def color_diagnostics: Flag<["--"], "color-diagnostics">,
36 HelpText<"Alias for --color-diagnostics=always">;
37 def no_color_diagnostics: Flag<["--"], "no-color-diagnostics">,
38 HelpText<"Alias for --color-diagnostics=never">;
39 def color_diagnostics_eq: Joined<["--"], "color-diagnostics=">,
40 HelpText<"Use colors in diagnostics (default: auto)">,
/freebsd-14.2/crypto/openssl/crypto/conf/
H A Dconf_mod.c185 int ret = 0, diagnostics = 0; in CONF_modules_load_file_ex() local
215 diagnostics = conf_diagnostics(conf); in CONF_modules_load_file_ex()
222 if ((flags & CONF_MFLAGS_IGNORE_RETURN_CODES) != 0 && !diagnostics) in CONF_modules_load_file_ex()
/freebsd-14.2/contrib/lutok/m4/
H A Ddeveloper-mode.m435 dnl compilers available and their different warning diagnostics.
38 dnl gain a bunch of extra warning diagnostics. These will NOT be enforced
/freebsd-14.2/contrib/kyua/m4/
H A Ddeveloper-mode.m435 dnl compilers available and their different warning diagnostics.
38 dnl gain a bunch of extra warning diagnostics. These will NOT be enforced
/freebsd-14.2/sys/contrib/xz-embedded/linux/lib/xz/
H A DKconfig67 data and writes diagnostics to the system log.
/freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/
H A DAnalyses.def60 "Emits minimal diagnostics to stderr, stating only the "
/freebsd-14.2/contrib/llvm-project/lld/ELF/
H A DOptions.td141 def color_diagnostics: JJ<"color-diagnostics=">,
142 HelpText<"Use colors in diagnostics (default: auto)">,
144 def : Flag<["--"], "color-diagnostics">, Alias<color_diagnostics>, AliasArgs<["always"]>,
145 HelpText<"Alias for --color-diagnostics=always">;
146 def : Flag<["--"], "no-color-diagnostics">, Alias<color_diagnostics>, AliasArgs<["never"]>,
147 HelpText<"Alias for --color-diagnostics=never">;
541 def visual_studio_diagnostics_format : FF<"vs-diagnostics">,
542 HelpText<"Format diagnostics for Visual Studio compatibility">;
/freebsd-14.2/contrib/nvi/
H A DCMakeLists.txt26 check_c_compiler_flag(-fcolor-diagnostics USE_FCOLOR_DIAGNOSTICS)
28 add_compile_options(-fcolor-diagnostics)
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
H A DItaniumABILanguageRuntime.cpp633 DiagnosticManager diagnostics; in GetExceptionObjectForThread() local
664 diagnostics, results); in GetExceptionObjectForThread()
/freebsd-14.2/usr.bin/sed/tests/
H A Dhanoi.sed44 # cleaning, diagnostics

1234