1. c58a80f Add a StringList constructor to Args class by Pavel Labath · 8 years ago
  2. 97206d5 Rename Error -> Status. by Zachary Turner · 8 years ago
  3. 3eb2b44 Delete some more dead includes. by Zachary Turner · 8 years ago
  4. 4eb8449 Fix up some enumerate() callsites in LLDB. by Zachary Turner · 8 years ago
  5. bf9a773 Move classes from Core -> Utility. by Zachary Turner · 8 years ago
  6. 63dea59 Fix a couple of incorrect format string warnings by Luke Drummond · 8 years ago
  7. 2c84f90 Remove some more uses of Args::GetArgumentAtIndex. by Zachary Turner · 9 years ago
  8. c156427 Don't allow direct access to StreamString's internal buffer. by Zachary Turner · 9 years ago
  9. e706c1d Make OptionParser::Parse() take StringRef. by Zachary Turner · 9 years ago
  10. cb3c9f6 Fix some cases where we were printf'ing StringRefs. by Zachary Turner · 9 years ago
  11. c5d7df9 Convert some Expression parser functions to StringRef. by Zachary Turner · 9 years ago
  12. 812101d Interpreter: Don't return StringRef from functions whose return value is never used by Justin Bogner · 9 years ago
  13. 9a605f9 Match printf field width arg and type by Ed Maste · 9 years ago
  14. a449698 Convert CommandObject constructors to StringRef. by Zachary Turner · 9 years ago
  15. 11eb9c6 Convert various CommandInterpreter functions to StringRef. by Zachary Turner · 9 years ago
  16. 5a8ad459 Make lldb -Werror clean on Windows. by Zachary Turner · 9 years ago
  17. 5c28c66 Modernize some code related to Args usage / implementation. by Zachary Turner · 9 years ago
  18. 691405b Refactor the Args class. by Zachary Turner · 9 years ago
  19. 8cef4b0 Update OptionGroup::SetValue to take StringRef. by Zachary Turner · 9 years ago
  20. 1f0f5b5 Convert option tables to ArrayRefs. by Zachary Turner · 9 years ago
  21. 36bf6a4 added environment variable-related Args gtests by Todd Fiala · 9 years ago
  22. 150aa32 fix Args function broken in r281942 by Todd Fiala · 9 years ago
  23. 4037780 Fix an incorrect nullptr conversion. by Zachary Turner · 9 years ago
  24. 95eae42 Make lldb::Regex use StringRef. by Zachary Turner · 9 years ago
  25. 5c725f3 Convert 3 more functions to use a StringRef. by Zachary Turner · 9 years ago
  26. ecbb0bb Fix more functions in Args to use StringRef. by Zachary Turner · 9 years ago
  27. 6fa7681b Convert many functions to use StringRefs. by Zachary Turner · 9 years ago
  28. 7b2e5a3 Add unit tests for a few string conversion functions in Args. by Zachary Turner · 9 years ago
  29. b9c1b51 *** This commit represents a complete reformatting of the LLDB source code by Kate Stone · 9 years ago
  30. b9739d4 Revert r280137 and 280139 and subsequent build fixes by Pavel Labath · 9 years ago
  31. 2d240d0 A few minor stylistic cleanups in StringExtractor. by Zachary Turner · 9 years ago
  32. e1c716c Fix fallout from the GetNameColonValue() refactor (r280000) by Pavel Labath · 9 years ago
  33. 54695a3 Convert GetNameColonValue to return StringRefs. by Zachary Turner · 9 years ago
  34. 7593001 Add StructuredData plugin type; showcase with new DarwinLog feature by Todd Fiala · 9 years ago
  35. a07e4a8 Revert "Add StructuredData plugin type; showcase with new DarwinLog feature" by Todd Fiala · 9 years ago
  36. aef7de8 Add StructuredData plugin type; showcase with new DarwinLog feature by Todd Fiala · 9 years ago
  37. e1cfbc7 Decoupled Options from CommandInterpreter. by Todd Fiala · 9 years ago
  38. 4acb65e fix command-line LLDB so NSLog messages show up by Todd Fiala · 9 years ago
  39. 7aa4d97 Implement ProcessInfo::Dump(), log gdb-remote stub launch by Todd Fiala · 9 years ago
  40. bb19a13 second pass over removal of Mutex and Condition by Saleem Abdulrasool · 9 years ago
  41. 7a37df3 Improve the way LLDB escapes arguments before passing them to the shell by Enrico Granata · 9 years ago
  42. c77ce7b LLDB needs a mutex around getopt_long_only() function calls to avoid multi-threading option parsing issues. by Jim Ingham · 10 years ago
  43. ba507b0 Silence -Wqual-cast warnings from GCC 5.2 by Saleem Abdulrasool · 10 years ago
  44. 89d3f09 Fix tab completion for command arguments containing spaces by Tamas Berghammer · 10 years ago
  45. e171da5 Fix typos. by Bruce Mitchener · 10 years ago
  46. 1124045 Don't #include "lldb-python.h" from anywhere. by Zachary Turner · 10 years ago
  47. d7e6a4f Fixed a ton of gcc compile warnings by Vince Harron · 10 years ago
  48. bcbfa09 Fix a problem where 'process launch' was not correctly re-quoting arguments for the inferior process when handing them down for the actual launch by Enrico Granata · 10 years ago
  49. 073951f Fix a bug related to arg escaping, and add unit tests. by Zachary Turner · 10 years ago
  50. 6100f61 Fix build breakage on win7-msvc caused by r230955 by Pavel Labath · 10 years ago
  51. 00b7f95 Fix handling of backslashes in Args parsing by Pavel Labath · 10 years ago
  52. df50f94 Handle trailing spaces on "settings set" command more correctly by Pavel Labath · 10 years ago
  53. 2d53c31 Don't remove backslashes from arguments unless the following char is recognized. by Zachary Turner · 10 years ago
  54. 5275aaa Moved Args::StringToXIntYZ to StringConvert::ToXIntYZ by Vince Harron · 10 years ago
  55. 3e7442b Add support for character option types. by Zachary Turner · 10 years ago
  56. 320e7b3 It's possible for long_options[long_options_index].definition to be null by Jason Molenda · 11 years ago
  57. 2c77a42 Reverse out r219169 related to quote handling. by Todd Fiala · 11 years ago
  58. ca0e5ad In cases where you'd use an expression to get a value to insert in a command, be ready to use synthetic children if they are there. Those are now a source of values, so worth checking for by Enrico Granata · 11 years ago
  59. a9ae365 Add "target.expr-parser-compiler-args" setting. by Todd Fiala · 11 years ago
  60. dc498e5 A quoted - is not the beginning of an option, and should not be completed as such. This was causing: by Jim Ingham · 11 years ago
  61. d37221d Revert "Fix broken tests due to new error output." by Zachary Turner · 11 years ago
  62. 9734280 Fix broken tests due to new error output. by Todd Fiala · 11 years ago
  63. 2863891 Invalidate process UID/GID-related command options on Windows. by Zachary Turner · 11 years ago
  64. 2fc43a3 Args::StringToGenericRegister will now accept "lr" as by Jason Molenda · 11 years ago
  65. 8646d3c Rename eExecution*** to eExpression*** to be consistent with the result type. by Jim Ingham · 11 years ago
  66. 1624a2d Make the Expression Execution result enum available to the SB API layer. by Jim Ingham · 11 years ago
  67. d78c957 Switch NULL to C++11 nullptr in source/Interpreter by Ed Maste · 11 years ago
  68. 78d1019 Cleanup the code a bit. by Greg Clayton · 11 years ago
  69. 3985c8c sanitise sign comparisons by Saleem Abdulrasool · 11 years ago
  70. 6fbc48b This patch does a couple of things. by Jim Ingham · 12 years ago
  71. b57e4a1b Roll back the changes I made in r193907 which created a new Frame by Jason Molenda · 12 years ago
  72. f23bf74 Add a new base class, Frame. It is a pure virtual function which by Jason Molenda · 12 years ago
  73. e2607b5 Add OptionParser.h by Virgile Bello · 12 years ago
  74. b2f1fb2 MingW compilation (windows). Includes various refactoring to improve portability. by Virgile Bello · 12 years ago
  75. 5eeaf74 Fix a missing pointer deref that was uncovered by one of the buildbots. by Adrian Prantl · 12 years ago
  76. 243b369 Fix linux argument completion with for "--" options (llvm.org/bugs/pr14425) by Daniel Malea · 12 years ago
  77. b7ad58a <rdar://problem/13457391> by Greg Clayton · 12 years ago
  78. bc43cab <rdar://problem/13384801> by Greg Clayton · 12 years ago
  79. 30820f0 <rdar://problem/13184855> by Greg Clayton · 12 years ago
  80. 5548cb5 <rdar://problem/12978143> by Enrico Granata · 12 years ago
  81. c7bece56 <rdar://problem/13069948> by Greg Clayton · 12 years ago
  82. b9d5df5 <rdar://problem/12820334> by Greg Clayton · 13 years ago
  83. 90b0c84 Define isprint8() wrapper around isprint() in order to avoid crashes on Linux by Daniel Malea · 13 years ago
  84. 93a6430 Fix Linux build warnings due to redefinition of macros: by Daniel Malea · 13 years ago
  85. 3bcdfc0 <rdar://problem/12798131> by Greg Clayton · 13 years ago
  86. 43e0af0 Stop using the "%z" size_t modifier and cast all size_t values to uint64_t. Some platforms don't support this modification. by Greg Clayton · 13 years ago
  87. 4c05410 Made it so changes to the prompt via "settings set prompt" get noticed by the command line. by Greg Clayton · 13 years ago
  88. 2443cbd Added Args::StringForEncoding(), Args::StringToGenericRegister() and centralized the parsing of the string to encoding and string to generic register. by Greg Clayton · 13 years ago
  89. a39fb7a Handle backslash protection inside unquoted commands like: by Jim Ingham · 13 years ago
  90. da91b17 Patch from Viktor Kutuzov: changes the method declarations to const for the Args::GetCommandString and Agrs::GetQuotedCommandString methods. It allows using of these methods within the other const methods. by Greg Clayton · 13 years ago
  91. 0c94313 <rdar://problem/11052829> by Greg Clayton · 13 years ago
  92. a28b89c rdar://problem/10712130 by Johnny Chen · 13 years ago
  93. 144f3a9 Added a new class to Process.h: ProcessAttachInfo. This class contains enough by Greg Clayton · 14 years ago
  94. 982c976 Modified all Process::Launch() calls to use a ProcessLaunchInfo structure by Greg Clayton · 14 years ago
  95. 86edbf4 Cleaned up many error codes. For any who is filling in error strings into by Greg Clayton · 14 years ago
  96. cf0e4f0 Re-organized the contents of RangeMap.h to be more concise and also allow for a Range, RangeArray, RangeData (range + data), or a RangeDataArray. We have many range implementations in LLDB and I will be converting over to using the classes in RangeMap.h so we can have one set of code that does ranges and searching of ranges. by Greg Clayton · 14 years ago
  97. 44c9b37 ++ cannot be used to increment an enum, so do it another way by Peter Collingbourne · 14 years ago
  98. bb7f31f Centralized all of the format to c-string and to format character code inside by Greg Clayton · 14 years ago
  99. 4a33d31 Committing type format code for Enrico Granata. by Greg Clayton · 14 years ago
  100. 4e4294b Added a new format for displaying an array of characters: eFormatCharArray by Greg Clayton · 14 years ago