Home | History | Annotate | Download | only in cocoa

Lines Matching refs:summary

8 # example summary provider for NSDictionary
9 # the real summary is now C++ code built into LLDB
198 summary = provider.num_children();
200 summary = None
201 logger >> "got summary " + str(summary)
202 if summary == None:
204 if isinstance(summary,basestring):
205 return summary
206 return str(summary) + (" key/value pairs" if summary != 1 else " key/value pair")
207 return 'Summary Unavailable'
216 summary = provider.num_children();
218 summary = None
219 logger >> "got summary " + str(summary)
220 if summary == None:
221 summary = '<variable is not CFDictionary>'
222 if isinstance(summary,basestring):
223 return summary
227 summary = summary & ~0x0f1f000000000000
228 summary = '@"' + str(summary) + (' entries"' if summary != 1 else ' entry"')
229 return summary
230 return 'Summary Unavailable'
233 debugger.HandleCommand("type summary add -F CFDictionary.CFDictionary_SummaryProvider NSDictionary")
234 debugger.HandleCommand("type summary add -F CFDictionary.CFDictionary_SummaryProvider2 CFDictionaryRef CFMutableDictionaryRef")