Searched refs:fixit (Results 1 – 10 of 10) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ClangExpressionParser.cpp | 1205 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 D | ClangDiagnostic.h | 40 void AddFixitHint(const clang::FixItHint &fixit) { in AddFixitHint() argument 41 m_fixit_vec.push_back(fixit); in AddFixitHint()
|
/freebsd/usr.sbin/crunch/ |
H A D | README | 25 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 D | rpc_util.c | 120 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 D | FixIt.cpp | 18 namespace fixit { namespace
|
/freebsd/usr.sbin/crunch/examples/ |
H A D | Makefile | 1 CRUNCHED= fixit
|
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/ |
H A D | FixIt.h | 26 namespace fixit {
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | DiagnosticOptions.def | 56 DIAGOPT(ShowFixits, 1, 1) /// Show fixit information.
|
/freebsd/contrib/llvm-project/clang/include/clang/Driver/ |
H A D | Options.td | 2067 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 D | SemaChecking.cpp | 6744 FixItHint fixit = in HandleInvalidAmount() local 6755 fixit); in HandleInvalidAmount()
|