- ceff664 Remove header grouping comments. by Jonas Devlieghere · 7 years ago
- 8f3be7a [FileSystem] Move path resolution logic out of FileSpec by Jonas Devlieghere · 7 years ago
- c678ed7 Add EchoCommentCommands to CommandInterpreterRunOptions in addition to the existing EchoCommands and expose both as interpreter settings. by Stefan Granitz · 7 years ago
- 8fe53c49 Replace "nullptr-terminated" C-arrays of OptionValueEnumeration with safer llvm::ArrayRef by Tatyana Krasnukha · 7 years ago
- 1a6d7ab Narrow the CompletionRequest API to being append-only. by Raphael Isemann · 7 years ago
- a2e76c0 Replaced more boilerplate code with CompletionRequest (NFC) by Raphael Isemann · 7 years ago
- 4d51a90 Get rid of the C-string parameter in DoExecute by Raphael Isemann · 7 years ago
- 3a0e127 Refactor parsing of option lists with a raw string suffix. by Raphael Isemann · 7 years ago
- 2443bbd Refactoring for for the internal command line completion API (NFC) by Raphael Isemann · 7 years ago
- 0509724 Reflow paragraphs in comments. by Adrian Prantl · 7 years ago
- 145d95c Move Args.cpp from Interpreter to Utility by Pavel Labath · 7 years ago
- 47cbf4a Move Args::StringTo*** functions to a new OptionArgParser class by Pavel Labath · 7 years ago
- 97206d5 Rename Error -> Status. by Zachary Turner · 8 years ago
- aab5be0 Fix !N and !-N commands and add a test case. by Jim Ingham · 8 years ago
- 3eb2b44 Delete some more dead includes. by Zachary Turner · 9 years ago
- 573ab90 Move StringList from Core -> Utility. by Zachary Turner · 9 years ago
- 867e7d1 Fix some occurrences of passing StringRef to Printf. by Zachary Turner · 9 years ago
- 4574a89 Convert CommandObjectCommands to entry-based Args access. by Zachary Turner · 9 years ago
- 696bd63 [lldb] Fix typos in file headers by Alexander Shaposhnikov · 9 years ago
- d6a2475 Re-add "demonstrate new Args API" by Zachary Turner · 9 years ago
- 99a318e Fix build failure on Linux and BSD by reverting r287597 by Omair Javaid · 9 years ago
- 1c55c9b Add the new Args / entry-access API. by Zachary Turner · 9 years ago
- a49c201 Update GenerateAdditionalHelpAvenues to take StringRef. by Zachary Turner · 9 years ago
- c156427 Don't allow direct access to StreamString's internal buffer. by Zachary Turner · 9 years ago
- 442f653 Make CommandObject help getters/setters use StringRef. by Zachary Turner · 9 years ago
- fe11483 Make Options::SetOptionValue take a StringRef. by Zachary Turner · 9 years ago
- 771ef6d Fix Clang-tidy readability-redundant-string-cstr warnings by Malcolm Parsons · 9 years ago
- 97d2c40 Convert some Args index-based iteration to range-style iteration. by Zachary Turner · 9 years ago
- a01bccd Convert some more aliasing and CI functions to StringRef. by Zachary Turner · 9 years ago
- a449698 Convert CommandObject constructors to StringRef. by Zachary Turner · 9 years ago
- 11eb9c6 Convert various CommandInterpreter functions to StringRef. by Zachary Turner · 9 years ago
- 514d8cd Update the prompt related functions to use StringRefs. by Zachary Turner · 9 years ago
- 8cef4b0 Update OptionGroup::SetValue to take StringRef. by Zachary Turner · 9 years ago
- 7060243 Try to fix build errors on Android. by Zachary Turner · 9 years ago
- 1f0f5b5 Convert option tables to ArrayRefs. by Zachary Turner · 9 years ago
- b9c1b51 *** This commit represents a complete reformatting of the LLDB source code by Kate Stone · 9 years ago
- ac9c3a6 Tables of command options in LLDB benefit from hand-formatting to make it by Kate Stone · 9 years ago
- e1cfbc7 Decoupled Options from CommandInterpreter. by Todd Fiala · 9 years ago
- 7428a18 LLDB help content has accumulated over time without a recent attempt to by Kate Stone · 9 years ago
- d72e412 Cleanups to command alias to refer to itself as 'command alias' and not allow to make aliases starting with a - as that isn't really supported, and is most often a mistake (trying to pass options) by Enrico Granata · 9 years ago
- 45d0e23 Add --help and --long-help options to 'command alias' such that one can now specify a help string for an alias as they are defining it by Enrico Granata · 9 years ago
- bfb75e9 Make it so that a command alias can actually remove the help/long help from its parent command by setting itself to an empty help string by Enrico Granata · 10 years ago
- 212130a A few more improvements on the way to the command alias refactoring by Enrico Granata · 10 years ago
- 5e55030 Move ProcessAliasOptionsArgs to be a static on CommandAlias; it wasn't using any instance data on the CommandInterpreter anyway by Enrico Granata · 10 years ago
- 308f73c Change the way command aliases are stored. Go from a model where a map holds the alias -> underlying command binding and another map holds the alias -> options, to a model where one single map holds the alias -> (all useful data) combination by Enrico Granata · 10 years ago
- 46d4aa2 When 'help' cannot find a command, produce additional help text that also points the user to the apropos and type lookup commands by Enrico Granata · 10 years ago
- 6e3d8e7 Fix Clang-tidy modernize-use-nullptr and modernize-use-default warnings in source/Commands/CommandObjectCommands.cpp; other minor fixes. by Eugene Zelenko · 10 years ago
- 13d21e9 commands: Use override instead of virtual. by Bruce Mitchener · 10 years ago
- ea671fb Fixed line wrapping for the "long help" content in LLDB commands. Content is now dynamically wrapped for the column width of the current terminal. Lines that begin with whitespace will be indented identically on subsequent lines to maintain formatting. by Kate Stone · 10 years ago
- 0e97848 Correct type in for loop to remove signedness warning by Ed Maste · 10 years ago
- 3b00e35 Enable 'command script import' to accept multiple modules to import in one invocation by Enrico Granata · 10 years ago
- 1124045 Don't #include "lldb-python.h" from anywhere. by Zachary Turner · 10 years ago
- e87764f Add support for custom commands to set flags on themselves by Enrico Granata · 10 years ago
- 0641ca1 Remove ScriptInterpreterObject. by Zachary Turner · 11 years ago
- 9370d27 If creating a Python command via a class, the help text is handled directly by the class object, no need for setting it manually via the cmdline by Enrico Granata · 11 years ago
- 6f79bb2 Add support for Python object commands to return custom short and long help by implementing by Enrico Granata · 11 years ago
- 9fe00e5 Bulk of the infrastructure work to allow script commands to be backed by object instances in addition to free functions by Enrico Granata · 11 years ago
- c95f7e2 Refactor OptionValue::SetValueFromCString to use llvm::StringRef by Pavel Labath · 11 years ago
- b547278 Fixed an issue where you couldn't delete a user defined regex, python, or multi-word command by adding a new "command delete" command. by Greg Clayton · 11 years ago
- b0a1814 More override warning cleanup. by Eric Christopher · 11 years ago
- 7d8555c Patch from dawn@burble.org to make the --silent-run do what it says, not the opposite of what it says. by Jim Ingham · 11 years ago
- ea50863 Have CommandObjectCommandsAddRegex inherit from IOHandlerDelegateMultiline so it will not immediately terminate after the first regular expression in "command regex <name>" commands. by Greg Clayton · 11 years ago
- e30f11d Complete rewrite of interactive editing support for single- and multi-line input. by Kate Stone · 11 years ago
- 26c7bf9 Rework the way we pass "run multiple command" options to the various API's that by Jim Ingham · 11 years ago
- 06be059 Allow Python commands to optionally take an SBExecutionContext argument in case they need to handle 'where they want to act' separately from the notion of 'currently-selected entity' that is associated to the debugger. Do this in an (hopefully) non-breaking way by running an argcount check before passing in the new argument. Update the test case to also check for this new feature. www update to follow by Enrico Granata · 11 years ago
- 735152e Add a --help (-h) option to "command script add" that enables users to define a one-liner short help for their command by Enrico Granata · 11 years ago
- 73d80fa Make sure the "command regex add" has a unique name for editline history purposes. by Greg Clayton · 11 years ago
- d37221d Revert "Fix broken tests due to new error output." by Zachary Turner · 11 years ago
- 9734280 Fix broken tests due to new error output. by Todd Fiala · 11 years ago
- de963e9 Adds the notion of an OptionValidator. by Zachary Turner · 11 years ago
- d93c4a3 Fix typos. by Bruce Mitchener · 11 years ago
- c3d874a lldb TOT is dropping the last entry for multi-line IOHandlers that use the IOHandlerDelegateMultiline. by Greg Clayton · 11 years ago
- f29bf9a "DONE" is being left in multi-line results when it shouldn't for non terminal input. by Greg Clayton · 11 years ago
- f6913cd Allow line numbers to be shown in multi-line expressions. by Greg Clayton · 12 years ago
- e4e462c Fixed output to display correctly for "command source" by fixing the correct flags being set. by Greg Clayton · 12 years ago
- 340b030 Fixed an issue where "command source" would not do the right thing: by Greg Clayton · 12 years ago
- 44d9378 Merging the iohandler branch back into main. by Greg Clayton · 12 years ago
- e2607b5 Add OptionParser.h by Virgile Bello · 12 years ago
- 84400ec Remove need of <functional> for CommandObjectCommands. by Virgile Bello · 12 years ago
- 6098617 Add silent option to command source. Patch from Matthew Sorrels by Michael Sartain · 12 years ago
- 9a71a7d Revert commits that cause broken builds on GCC buildbots by Daniel Malea · 12 years ago
- 15571f1 <rdar://problem/14266578> by Enrico Granata · 12 years ago
- b4675a4 <rdar://problem/14266411> by Enrico Granata · 12 years ago
- 63123b6 Renaming the "--wipe" option to "command history" to "--clear" (-C) for coherence with the rest of the LLDB command-line interface by Enrico Granata · 12 years ago
- 7594f14 <rdar://problem/14134716> by Enrico Granata · 12 years ago
- 012d4fc <rdar://problem/12876503> by Enrico Granata · 12 years ago
- e0c70f1 <rdar://problem/11109316> by Enrico Granata · 12 years ago
- 078551c <rdar://problem/13831149> by Enrico Granata · 12 years ago
- 7b0992d After discussing with Chris Lattner, we require C++11, so lets get rid of the macros and just use C++11. by Greg Clayton · 12 years ago
- e01e07b Since we use C++11, we should switch over to using std::unique_ptr when C++11 is being used. To do this, we follow what we have done for shared pointers and we define a STD_UNIQUE_PTR macro that can be used and it will "do the right thing". Due to some API differences in std::unique_ptr and due to the fact that we need to be able to compile without C++11, we can't use move semantics so some code needed to change so that it can compile with either C++. by Greg Clayton · 12 years ago
- c7bece56 <rdar://problem/13069948> by Greg Clayton · 13 years ago
- 93a6430 Fix Linux build warnings due to redefinition of macros: by Daniel Malea · 13 years ago
- 3bcdfc0 <rdar://problem/12798131> by Greg Clayton · 13 years ago
- c9d645d <rdar://problem/12491420> by Greg Clayton · 13 years ago
- 998255b <rdar://problem/12491387> by Greg Clayton · 13 years ago
- 3a18e31 Added a new "module" log channel which covers module creation, deletion, and common module list actions. by Greg Clayton · 13 years ago
- fac939e <rdar://problem/12188843> Fixing a problem where a Python command created in the same module where the target function is defined causes the help string not to come out by Enrico Granata · 13 years ago
- adc43c9 Fixed some small formatting issues in the help for by Sean Callanan · 13 years ago
- 40d5571 <rdar://problem/11975483> Removing user-visible references to 'dict' as a parameter name for Python summary-generating functions since it is a Python keyword. by Enrico Granata · 13 years ago
- 70f11f8 Make a way to set the result status for Python defined commands, and don't overwrite the status of the result if by Jim Ingham · 13 years ago