aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Interpreter/Options.cpp
AgeCommit message (Expand)AuthorFilesLines
2025-12-04Add a `breakpoint add` command to fix the option-madness that is `breakpoint ...jimingham1-1/+3
2025-11-19[NFC][lldb] move DiagnosticsRendering to Host (#168696)Charles Zablit1-1/+1
2025-09-04[lldb] Correct style of error messages (#156774)Jonas Devlieghere1-1/+1
2025-09-04[lldb] Add more command option mnemonics (#155705)Jonas Devlieghere1-7/+16
2025-08-26[lldb] Underline short option letters as mnemonics (#153695)Jonas Devlieghere1-5/+8
2025-05-13[lldb] Use std:::string::find with std::string_view (NFC) (#139679)Kazu Hirata1-1/+1
2025-01-31[lldb] Use llvm::Error instead of CommandReturnObject for error reporting (#1...Jonas Devlieghere1-43/+44
2024-10-20[lldb] Avoid repeated map lookups (NFC) (#113073)Kazu Hirata1-5/+2
2024-10-11Support inline diagnostics in CommandReturnObject (#110901)Adrian Prantl1-4/+46
2024-09-24Add the ability to define custom completers to the parsed_cmd template. (#109...jimingham1-2/+3
2024-09-16[lldb] Nits on uses of llvm::raw_string_ostream (NFC) (#108745)Youngsuk Kim1-1/+1
2024-08-27[lldb] Turn lldb_private::Status into a value type. (#106163)Adrian Prantl1-7/+9
2024-06-17[LLDB] Remove dead code (NFC) (#95713)Shivam Gupta1-15/+6
2024-05-23Add a createError variant without error code (NFC) (#93209)Adrian Prantl1-18/+11
2024-02-21[lldb] Standardize command option parsing error messages (#82273)Alex Langford1-0/+13
2023-12-16[lldb] Use StringRef::{starts,ends}_with (NFC)Kazu Hirata1-4/+4
2023-06-06[lldb/Commands] Add support to auto-completion for user commandsMed Ismail Bennani1-3/+3
2023-02-17[lldb] Add expression command options in dwim-printDave Lee1-0/+13
2023-01-03[lldb] Remove spurious `n` at the end of option error messageJonas Devlieghere1-3/+3
2022-09-14Revert "Revert "Be more careful to maintain quoting information when parsing ...Jim Ingham1-11/+24
2022-09-13Revert "Be more careful to maintain quoting information when parsing commands."Jim Ingham1-24/+14
2022-09-13Be more careful to maintain quoting information when parsing commands.Jim Ingham1-14/+24
2022-08-08[lldb] LLVM_FALLTHROUGH => [[fallthrough]]. NFCFangrui Song1-2/+2
2022-06-24[lldb] Replace Host::SystemLog with Debugger::Report{Error,Warning}Jonas Devlieghere1-14/+18
2022-05-16[lldb][NFC] Simplify GenerateOptionUsageDavid Spickett1-11/+4
2022-05-16[lldb][NFC] Make cmd a reference in GenerateOptionUsageDavid Spickett1-14/+7
2022-05-03[lldb][NFC] Refactor printing of short options in helpDavid Spickett1-55/+22
2022-05-03[lldb][NFC] Simplify part of Options::GenerateOptionUsageDavid Spickett1-32/+19
2022-01-12[lldb] Don't print "Command Options Usage:" for an alias with no optionsDavid Spickett1-7/+8
2021-06-17[lldb] Remove redundant calls to set eReturnStatusFailedDavid Spickett1-1/+0
2021-02-28[lldb/Interpreter][NFC] Remove explicit default initialization of members and...Tatyana Krasnukha1-1/+1
2021-02-28[lldb/Interpreter][NFC] Replace default constructors/destructors bodies with ...Tatyana Krasnukha1-1/+1
2020-11-12[lldb][NFC] Move OptionDefinition from lldb-private-types.h to its own Utilit...Raphael Isemann1-9/+7
2020-07-20[lldb] Remove redundant WithFormat suffixes (NFC)Jonas Devlieghere1-2/+2
2020-06-24[lldb] Use std::make_unique<> (NFC)Jonas Devlieghere1-1/+2
2020-02-11[lldb][NFC] Remove ConstString -> const char * -> StringRef conversions when ...Raphael Isemann1-1/+1
2020-02-06[LLDB] Fix compilation with GCC 5Martin Storsjö1-2/+2
2020-01-28Make llvm::StringRef to std::string conversions explicit.Benjamin Kramer1-3/+3
2020-01-24[lldb][NFC] Fix all formatting errors in .cpp file headersRaphael Isemann1-1/+1
2019-10-03Break out the Python class & key/value options into a separate OptionGroup.Jim Ingham1-0/+4
2019-09-25[lldb][NFC] Remove CompletionRequest::GetCursorArgument and GetRawLineUntilCu...Raphael Isemann1-1/+1
2019-09-25[lldb][NFC] Remove useless cursor shifting in Options::HandleOptionCompletionRaphael Isemann1-4/+1
2019-09-23[lldb][NFC] Remove unused variable in Options::HandleOptionArgumentCompletionRaphael Isemann1-1/+0
2019-09-23[lldb][NFC] Remove dead code in Options::HandleOptionArgumentCompletionRaphael Isemann1-9/+2
2019-09-23[lldb] Make cursor index in CompletionRequest unsignedRaphael Isemann1-2/+2
2019-09-23[lldb][NFC] Remove argument prefix checking boilerplate when adding completionsRaphael Isemann1-4/+1
2019-09-13[lldb][NFC] Remove ArgEntry::ref memberRaphael Isemann1-7/+7
2019-09-13[lldb][NFC] Make ArgEntry::quote private and provide a getterRaphael Isemann1-1/+1
2019-09-02[lldb] Add description to option completions.Raphael Isemann1-5/+6
2019-08-28[lldb] Fix and test completion for ambiguous long optionsRaphael Isemann1-10/+4