aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectMultiword.cpp
AgeCommit message (Expand)AuthorFilesLines
2024-11-10[lldb] Use heterogenous lookups with std::map (NFC) (#115590) (#115634)Kazu Hirata1-2/+2
2024-10-18[lldb] Avoid repeated map lookups (NFC) (#112823)Kazu Hirata1-5/+3
2024-10-15[lldb] Avoid repeated map lookups (NFC) (#112315)Kazu Hirata1-10/+1
2024-10-15[LLDB]Provide clearer error message for invalid commands. (#111891)Vy Nguyen1-10/+36
2023-10-25[lldb] Part 1 of 2 - Refactor `CommandObject::Execute(...)` return `void` (no...Pete Lawrence1-12/+10
2023-07-10[lldb] Prevent crash when completing ambiguous subcommandsJonas Devlieghere1-3/+3
2023-01-19Remove the undocumented `help` subcommand.Jim Ingham1-5/+0
2023-01-07[lldb] Use std::optional instead of llvm::Optional (NFC)Kazu Hirata1-2/+2
2023-01-07[lldb] Add #include <optional> (NFC)Kazu Hirata1-0/+1
2022-12-19Revert "[lldb] Remove redundant .c_str() and .get() calls"Muhammad Omair Javaid1-1/+1
2022-12-18[lldb] Remove redundant .c_str() and .get() callsFangrui Song1-1/+1
2022-12-04[lldb] Use std::nullopt instead of None (NFC)Kazu Hirata1-3/+3
2022-02-14Add a repeat command option for "thread backtrace --count N".Jim Ingham1-7/+9
2022-01-02[lldb] Remove unused AproposAllSubCommands (NFC)Dave Lee1-35/+0
2021-10-18Add a "command container" hierarchy to allow users to add container nodes.Jim Ingham1-27/+102
2021-06-25[lldb] Rename StringRef _lower() method calls to _insensitive()Martin Storsjö1-1/+1
2021-06-23[lldb] Remove CommandReturnObject's SetError(StringRef)David Spickett1-1/+1
2021-06-17[lldb] Remove redundant calls to set eReturnStatusFailedDavid Spickett1-2/+0
2020-11-18[trace][intel-pt] Scaffold the 'thread trace start | stop' commandsWalter Erquinigo1-11/+30
2020-06-12[lldb] Remove unnecessary c_str() in OutputFormattedHelpText calls (NFC)Jonas Devlieghere1-6/+5
2020-01-28Make llvm::StringRef to std::string conversions explicit.Benjamin Kramer1-7/+7
2020-01-24[lldb][NFC] Fix all formatting errors in .cpp file headersRaphael Isemann1-1/+1
2019-12-16[lldb][NFC] Remove unnecessary includes in source/CommandsRaphael Isemann1-1/+0
2019-09-27[lldb] Print an error message for an empty subcommandRaphael Isemann1-1/+3
2019-09-25[lldb][NFC] Add CompletionRequest::AppendEmptyArgumentRaphael Isemann1-2/+1
2019-09-23[lldb] Reduce some dangerous boilerplate with CompletionRequest::ShiftArgumentsRaphael Isemann1-2/+1
2019-09-13[lldb][NFC] Remove ArgEntry::ref memberRaphael Isemann1-3/+3
2019-08-22[lldb][NFC] NFC cleanup for the completion codeRaphael Isemann1-13/+15
2019-08-22[lldb][NFC] Remove WordComplete mode, make result array indexed from 0 and re...Raphael Isemann1-17/+7
2019-08-16[lldb][NFC] Allow for-ranges on StringListRaphael Isemann1-2/+2
2019-04-10[NFC] Remove ASCII lines from commentsJonas Devlieghere1-2/+0
2019-01-19Update the file headers across all of the LLVM projects in the monorepoChandler Carruth1-4/+3
2018-11-11Remove header grouping comments.Jonas Devlieghere1-4/+0
2018-09-13Add support for descriptions with command completions.Raphael Isemann1-3/+4
2018-07-27Narrow the CompletionRequest API to being append-only.Raphael Isemann1-12/+14
2018-07-02Refactoring for for the internal command line completion API (NFC)Raphael Isemann1-39/+20
2018-04-30Reflow paragraphs in comments.Adrian Prantl1-6/+5
2016-12-09Remove some more uses of Args::GetArgumentAtIndex.Zachary Turner1-55/+57
2016-11-16Don't allow direct access to StreamString's internal buffer.Zachary Turner1-1/+1
2016-11-14Fix some StringRef Printf warnings.Zachary Turner1-1/+1
2016-11-13Change some more CommandObject functions to StringRef.Zachary Turner1-12/+13
2016-11-12Make CommandObject help getters/setters use StringRef.Zachary Turner1-2/+2
2016-10-05Convert CommandObject constructors to StringRef.Zachary Turner1-1/+1
2016-09-19Fix more functions in Args to use StringRef.Zachary Turner1-1/+1
2016-09-06*** This commit represents a complete reformatting of the LLDB source codeKate Stone1-430/+322
2016-07-14LLDB help content has accumulated over time without a recent attempt toKate Stone1-2/+3
2016-04-20Fix a bug where LLDB would crash if 'apropos <anything>' was used after spawn...Enrico Granata1-0/+9
2016-03-08Attempt to fix the Ubuntu buildbot by making FindLongestCommandWord a free te...Enrico Granata1-1/+1
2016-03-08Change the way command aliases are stored. Go from a model where a map holds ...Enrico Granata1-4/+4
2016-02-20Fix Clang-tidy modernize-use-nullptr and modernize-use-default warnings in so...Eugene Zelenko1-52/+31