Lines Matching refs:summary
8 # example synthetic children and summary provider for CFString (and related NSString class)
19 summary = provider.get_child_at_index(provider.get_child_index("content"))
20 if type(summary) == lldb.SBValue:
21 summary = summary.GetSummary()
23 summary = '"' + summary + '"'
25 summary = None
26 if summary == None:
27 summary = '<variable is not NSString>'
28 return '@'+summary
35 summary = '<variable is not NSAttributedString>'
43 summary = provider.get_child_at_index(provider.get_child_index("content")).GetSummary();
45 summary = '<variable is not NSAttributedString>'
46 if summary == None:
47 summary = '<variable is not NSAttributedString>'
48 return '@'+summary
52 debugger.HandleCommand("type summary add -F CFString.CFString_SummaryProvider NSString CFStringRef CFMutableStringRef")
53 debugger.HandleCommand("type summary add -F CFString.CFAttributedString_SummaryProvider NSAttributedString")