Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp1205 static void ApplyFixIt(const FixItHint &fixit, clang::edit::Commit &commit) { in ApplyFixIt() argument
1207 if (fixit.CodeToInsert.empty()) { in ApplyFixIt()
1208 if (fixit.InsertFromRange.isValid()) { in ApplyFixIt()
1209 commit.insertFromRange(fixit.RemoveRange.getBegin(), in ApplyFixIt()
1210 fixit.InsertFromRange, /*afterToken=*/false, in ApplyFixIt()
1211 fixit.BeforePreviousInsertions); in ApplyFixIt()
1214 commit.remove(fixit.RemoveRange); in ApplyFixIt()
1217 if (fixit.RemoveRange.isTokenRange() || in ApplyFixIt()
1218 fixit.RemoveRange.getBegin() != fixit.RemoveRange.getEnd()) { in ApplyFixIt()
1219 commit.replace(fixit.RemoveRange, fixit.CodeToInsert); in ApplyFixIt()
[all …]
H A DClangDiagnostic.h40 void AddFixitHint(const clang::FixItHint &fixit) { in AddFixitHint() argument
41 m_fixit_vec.push_back(fixit); in AddFixitHint()
/freebsd/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/usr.bin/rpcgen/
H A Drpc_util.c120 fixit(const char *type, const char *orig) in fixit() function
136 return (fixit(def->def.ty.old_type, orig)); in fixit()
145 return (fixit(type, type)); in fixtype()
/freebsd/contrib/llvm-project/clang/lib/Tooling/
H A DFixIt.cpp18 namespace fixit { namespace
/freebsd/usr.sbin/crunch/examples/
H A DMakefile1 CRUNCHED= fixit
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/
H A DFixIt.h26 namespace fixit {
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticOptions.def56 DIAGOPT(ShowFixits, 1, 1) /// Show fixit information.
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td2067 def fdiagnostics_fixit_info : Flag<["-"], "fdiagnostics-fixit-info">, Group<f_clang_Group>;
2068 def fno_diagnostics_fixit_info : Flag<["-"], "fno-diagnostics-fixit-info">, Group<f_Group>,
2070 HelpText<"Do not include fixit information in diagnostics">,
7647 def fixit : Flag<["-"], "fixit">,
7649 def fixit_EQ : Joined<["-"], "fixit=">,
7752 def fixit_recompile : Flag<["-"], "fixit-recompile">,
7755 def fixit_to_temp : Flag<["-"], "fixit-to-temporary">,
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp6744 FixItHint fixit = in HandleInvalidAmount() local
6755 fixit); in HandleInvalidAmount()