diff options
| author | Enrico Granata <egranata@apple.com> | 2013-03-16 00:50:25 +0000 |
|---|---|---|
| committer | Enrico Granata <egranata@apple.com> | 2013-03-16 00:50:25 +0000 |
| commit | 50b5ee50238fbd8ea5633204a21723825786c00c (patch) | |
| tree | 74e188da3e34174e5f46eb7c583261dad015b8fd /lldb/examples/summaries/cocoa | |
| parent | 5efca64dd95cb236241252173fab1eac96c8140f (diff) | |
| download | bcm5719-llvm-50b5ee50238fbd8ea5633204a21723825786c00c.tar.gz bcm5719-llvm-50b5ee50238fbd8ea5633204a21723825786c00c.zip | |
Converting more data formatters to C++ - NSBundle, CFBinaryHeap, NSMachPort and NSNotification
llvm-svn: 177213
Diffstat (limited to 'lldb/examples/summaries/cocoa')
| -rw-r--r-- | lldb/examples/summaries/cocoa/CFBag.py | 3 | ||||
| -rw-r--r-- | lldb/examples/summaries/cocoa/CFBinaryHeap.py | 3 | ||||
| -rw-r--r-- | lldb/examples/summaries/cocoa/NSBundle.py | 3 | ||||
| -rw-r--r-- | lldb/examples/summaries/cocoa/NSMachPort.py | 3 | ||||
| -rw-r--r-- | lldb/examples/summaries/cocoa/NSNotification.py | 3 |
5 files changed, 10 insertions, 5 deletions
diff --git a/lldb/examples/summaries/cocoa/CFBag.py b/lldb/examples/summaries/cocoa/CFBag.py index 7c7493e2a77..37d14a432d5 100644 --- a/lldb/examples/summaries/cocoa/CFBag.py +++ b/lldb/examples/summaries/cocoa/CFBag.py @@ -5,7 +5,8 @@ part of The LLVM Compiler Infrastructure This file is distributed under the University of Illinois Open Source License. See LICENSE.TXT for details. """ -# summary provider for CFBag +# example summary provider for CFBag +# the real summary is now C++ code built into LLDB import lldb import ctypes import lldb.runtime.objc.objc_runtime diff --git a/lldb/examples/summaries/cocoa/CFBinaryHeap.py b/lldb/examples/summaries/cocoa/CFBinaryHeap.py index 1b7183d1417..2348a897181 100644 --- a/lldb/examples/summaries/cocoa/CFBinaryHeap.py +++ b/lldb/examples/summaries/cocoa/CFBinaryHeap.py @@ -5,7 +5,8 @@ part of The LLVM Compiler Infrastructure This file is distributed under the University of Illinois Open Source License. See LICENSE.TXT for details. """ -# summary provider for CFBinaryHeap +# example summary provider for CFBinaryHeap +# the real summary is now C++ code built into LLDB import lldb import ctypes import lldb.runtime.objc.objc_runtime diff --git a/lldb/examples/summaries/cocoa/NSBundle.py b/lldb/examples/summaries/cocoa/NSBundle.py index 342ccfac7d9..1f6a7dd39d8 100644 --- a/lldb/examples/summaries/cocoa/NSBundle.py +++ b/lldb/examples/summaries/cocoa/NSBundle.py @@ -5,7 +5,8 @@ part of The LLVM Compiler Infrastructure This file is distributed under the University of Illinois Open Source License. See LICENSE.TXT for details. """ -# summary provider for NSBundle +# example summary provider for NSBundle +# the real summary is now C++ code built into LLDB import lldb import ctypes import lldb.runtime.objc.objc_runtime diff --git a/lldb/examples/summaries/cocoa/NSMachPort.py b/lldb/examples/summaries/cocoa/NSMachPort.py index ecb4b7590ca..554d2ca7785 100644 --- a/lldb/examples/summaries/cocoa/NSMachPort.py +++ b/lldb/examples/summaries/cocoa/NSMachPort.py @@ -5,7 +5,8 @@ part of The LLVM Compiler Infrastructure This file is distributed under the University of Illinois Open Source License. See LICENSE.TXT for details. """ -# summary provider for NSData +# example summary provider for NSMachPort +# the real summary is now C++ code built into LLDB import lldb import ctypes import lldb.runtime.objc.objc_runtime diff --git a/lldb/examples/summaries/cocoa/NSNotification.py b/lldb/examples/summaries/cocoa/NSNotification.py index 8d49caa93d3..33c20065346 100644 --- a/lldb/examples/summaries/cocoa/NSNotification.py +++ b/lldb/examples/summaries/cocoa/NSNotification.py @@ -5,7 +5,8 @@ part of The LLVM Compiler Infrastructure This file is distributed under the University of Illinois Open Source License. See LICENSE.TXT for details. """ -# summary provider for class NSNotification +# example summary provider for NSNotification +# the real summary is now C++ code built into LLDB import lldb.runtime.objc.objc_runtime import lldb.formatters.metrics import CFString |

