| /openbsd-src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangExpressionParser.cpp | 1218 static void ApplyFixIt(const FixItHint &fixit, clang::edit::Commit &commit) { in ApplyFixIt() argument 1220 if (fixit.CodeToInsert.empty()) { in ApplyFixIt() 1221 if (fixit.InsertFromRange.isValid()) { in ApplyFixIt() 1222 commit.insertFromRange(fixit.RemoveRange.getBegin(), in ApplyFixIt() 1223 fixit.InsertFromRange, /*afterToken=*/false, in ApplyFixIt() 1224 fixit.BeforePreviousInsertions); in ApplyFixIt() 1227 commit.remove(fixit.RemoveRange); in ApplyFixIt() 1230 if (fixit.RemoveRange.isTokenRange() || in ApplyFixIt() 1231 fixit.RemoveRange.getBegin() != fixit.RemoveRange.getEnd()) { in ApplyFixIt() 1232 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()
|
| /openbsd-src/usr.sbin/crunchgen/ |
| H A D | README | 26 on boot, install, and fixit floppies. A crunched binary in this case is 32 As an example, I have created an 980K crunched "fixit" binary containing 45 easily with a kernel for a decent one-disk fixit filesystem. 83 was good to put on your fixit or install disks. Thanks!
|
| /openbsd-src/usr.bin/rpcgen/ |
| H A D | rpc_util.c | 137 fixit(char *type, char *orig) in fixit() function 149 return (fixit(def->def.ty.old_type, orig)); in fixit() 159 return (fixit(type, type));
|
| /openbsd-src/gnu/llvm/clang/lib/Tooling/ |
| H A D | FixIt.cpp | 18 namespace fixit { namespace
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/ |
| H A D | PlistDiagnostics.cpp | 224 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()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Tooling/ |
| H A D | FixIt.h | 26 namespace fixit {
|
| /openbsd-src/gnu/llvm/clang/docs/ |
| H A D | ClangTools.rst | 67 an IDE or editor. Furthermore, it can be used in fixit-mode to directly apply 68 fixit-hints offered by clang. See :doc:`HowToSetupToolingForLLVM` for
|
| H A D | Tooling.rst | 93 * Automatic fixing of compile errors (:program:`clang-fixit`)
|
| H A D | ExternalClangExamples.rst | 85 errors, fixit hints). See also `<http://l.rw.rw/clang_plugin>`_ for
|
| H A D | UsersManual.rst | 461 .. _opt_fdiagnostics-fixit-info: 463 .. option:: -f[no-]diagnostics-fixit-info 478 Passing **-fno-diagnostics-fixit-info** will prevent Clang from 1047 [:ref:`-fdiagnostics-fixit-info <opt_fdiagnostics-fixit-info>`].
|
| H A D | InternalsManual.rst | 425 * Since they are automatically applied if ``-Xclang -fixit`` is passed to the
|
| /openbsd-src/gnu/llvm/clang/include/clang/Basic/ |
| H A D | DiagnosticOptions.def | 56 DIAGOPT(ShowFixits, 1, 1) /// Show fixit information.
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/bfd/ |
| H A D | coff-ppc.c | 1114 int fixit; local 1135 fixit = FALSE; 1165 fixit = TRUE; 1226 fixit = TRUE; 1230 if (fixit && info->base_file)
|
| /openbsd-src/gnu/usr.bin/binutils/bfd/ |
| H A D | coff-ppc.c | 1198 int fixit; local 1219 fixit = FALSE; 1249 fixit = TRUE; 1310 fixit = TRUE; 1314 if (fixit && info->base_file)
|
| /openbsd-src/gnu/usr.bin/binutils/gas/config/ |
| H A D | obj-vms.c | 2614 char fixit[10]; in VMS_LSYM_Parse() local 2735 fixit[0] = 0; in VMS_LSYM_Parse() 2736 sprintf (&fixit[1], "%d=s4;", fpnt->dbx_type); in VMS_LSYM_Parse() 2737 pnt2 = (char *) strchr (&fixit[1], '='); in VMS_LSYM_Parse()
|
| /openbsd-src/gnu/llvm/clang/docs/CommandGuide/ |
| H A D | clang.rst | 617 .. option:: -fshow-column, -fshow-source-location, -fcaret-diagnostics, -fdiagnostics-fixit-info, -…
|
| /openbsd-src/gnu/llvm/clang/include/clang/Driver/ |
| H A D | Options.td | 1490 def fdiagnostics_fixit_info : Flag<["-"], "fdiagnostics-fixit-info">, Group<f_clang_Group>; 1491 def fno_diagnostics_fixit_info : Flag<["-"], "fno-diagnostics-fixit-info">, Group<f_Group>, 1492 Flags<[CC1Option]>, HelpText<"Do not include fixit information in diagnostics">, 5995 def fixit : Flag<["-"], "fixit">, 5997 def fixit_EQ : Joined<["-"], "fixit=">, 6103 def fixit_recompile : Flag<["-"], "fixit-recompile">, 6106 def fixit_to_temp : Flag<["-"], "fixit-to-temporary">,
|
| /openbsd-src/gnu/usr.bin/cvs/src/ |
| H A D | sanity.sh | 16608 done" >fixit 16619 sh ../fixit 16620 cd ../3; sh ../fixit
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaChecking.cpp | 9816 FixItHint fixit = in HandleInvalidAmount() local 9827 fixit); in HandleInvalidAmount()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/ |
| H A D | ChangeLog.2 | 11705 (add_pool_constant, dump_table, fixit, broken_move): Delete. 12415 (fixit): Cope with PIC constants.
|
| H A D | FSFChangeLog.10 | 3911 (add_constant, dump_table, fixit, find_barrier, broken_move): New
|