Home
last modified time | relevance | path

Searched refs:fixit (Results 1 – 12 of 12) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp1204 if (fixit.CodeToInsert.empty()) { in ApplyFixIt()
1205 if (fixit.InsertFromRange.isValid()) { in ApplyFixIt()
1206 commit.insertFromRange(fixit.RemoveRange.getBegin(), in ApplyFixIt()
1208 fixit.BeforePreviousInsertions); in ApplyFixIt()
1211 commit.remove(fixit.RemoveRange); in ApplyFixIt()
1214 if (fixit.RemoveRange.isTokenRange() || in ApplyFixIt()
1215 fixit.RemoveRange.getBegin() != fixit.RemoveRange.getEnd()) { in ApplyFixIt()
1216 commit.replace(fixit.RemoveRange, fixit.CodeToInsert); in ApplyFixIt()
1219 commit.insert(fixit.RemoveRange.getBegin(), fixit.CodeToInsert, in ApplyFixIt()
1258 for (const FixItHint &fixit : diagnostic->FixIts()) in RewriteExpression() local
[all …]
H A DClangDiagnostic.h40 void AddFixitHint(const clang::FixItHint &fixit) { in AddFixitHint() argument
41 m_fixit_vec.push_back(fixit); in AddFixitHint()
/freebsd-14.2/usr.sbin/crunch/
H A DREADME25 on boot, install, and fixit floppies. A crunched binary in this case is
31 As an example, I have created an 980K crunched "fixit" binary containing
44 easily with a kernel for a decent one-disk fixit filesystem.
82 was good to put on your fixit or install disks. Thanks!
/freebsd-14.2/usr.bin/rpcgen/
H A Drpc_util.c128 fixit(const char *type, const char *orig) in fixit() function
144 return (fixit(def->def.ty.old_type, orig)); in fixit()
153 return (fixit(type, type)); in fixtype()
/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/
H A DFixIt.cpp18 namespace fixit { namespace
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DPlistDiagnostics.cpp224 for (const auto &fixit : fixits) { in EmitFixits() local
225 assert(!fixit.isNull()); in EmitFixits()
227 assert(!fixit.InsertFromRange.isValid() && "Not implemented yet!"); in EmitFixits()
228 assert(!fixit.BeforePreviousInsertions && "Not implemented yet!"); in EmitFixits()
231 EmitRange(o, SM, Lexer::getAsCharRange(fixit.RemoveRange, SM, LangOpts), in EmitFixits()
234 EmitString(o, fixit.CodeToInsert); in EmitFixits()
/freebsd-14.2/usr.sbin/crunch/examples/
H A DMakefile2 CRUNCHED= fixit
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Tooling/
H A DFixIt.h26 namespace fixit {
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticOptions.def56 DIAGOPT(ShowFixits, 1, 1) /// Show fixit information.
/freebsd-14.2/usr.sbin/bsdconfig/share/media/
H A Dfloppy.subr216 if f_interactive && [ "$_systemState" != "fixit" ]; then
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td1950 def fdiagnostics_fixit_info : Flag<["-"], "fdiagnostics-fixit-info">, Group<f_clang_Group>;
1951 def fno_diagnostics_fixit_info : Flag<["-"], "fno-diagnostics-fixit-info">, Group<f_Group>,
1953 HelpText<"Do not include fixit information in diagnostics">,
7335 def fixit : Flag<["-"], "fixit">,
7337 def fixit_EQ : Joined<["-"], "fixit=">,
7438 def fixit_recompile : Flag<["-"], "fixit-recompile">,
7441 def fixit_to_temp : Flag<["-"], "fixit-to-temporary">,
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp11546 FixItHint fixit = in HandleInvalidAmount() local
11557 fixit); in HandleInvalidAmount()