summaryrefslogtreecommitdiffstats
path: root/lldb/source/DataFormatters/DumpValueObjectOptions.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Preliminary plumbing work to make 'parray' able to take offset and stride ↵Enrico Granata2016-11-041-2/+8
| | | | | | options llvm-svn: 286003
* *** This commit represents a complete reformatting of the LLDB source codeKate Stone2016-09-061-198/+147
| | | | | | | | | | | | | | | | | | | | | | | *** to conform to clang-format’s LLVM style. This kind of mass change has *** two obvious implications: Firstly, merging this particular commit into a downstream fork may be a huge effort. Alternatively, it may be worth merging all changes up to this commit, performing the same reformatting operation locally, and then discarding the merge for this particular commit. The commands used to accomplish this reformatting were as follows (with current working directory as the root of the repository): find . \( -iname "*.c" -or -iname "*.cpp" -or -iname "*.h" -or -iname "*.mm" \) -exec clang-format -i {} + find . -iname "*.py" -exec autopep8 --in-place --aggressive --aggressive {} + ; The version of clang-format used was 3.9.0, and autopep8 was 1.2.4. Secondly, “blame” style tools will generally point to this commit instead of a meaningful prior commit. There are alternatives available that will attempt to look through this change and find the appropriate prior commit. YMMV. llvm-svn: 280751
* Add a --element-count option to the expression commandEnrico Granata2016-04-251-1/+7
| | | | | | | | | | | | | This option evaluates an expression and, if the result is of pointer type, treats it as if it was an array of that many elements and displays such elements This has a couple subtle points but is mostly as straightforward as it sounds Add a parray N <expr> alias for this new mode Also, extend the --object-description mode to do the moral equivalent of the above but display each element in --object-description mode Add a poarray N <expr> alias for this llvm-svn: 267372
* Fix indentationEnrico Granata2015-11-131-21/+21
| | | | llvm-svn: 253089
* Upstream changes to the ValueObjectPrinter; nfcEnrico Granata2015-11-101-19/+28
| | | | llvm-svn: 252638
* Let Language plugins vend a default DeclPrintingHelper in case a custom one ↵Enrico Granata2015-10-191-0/+236
is not specified for the specific invocation llvm-svn: 250744
OpenPOWER on IntegriCloud