Home | History | Annotate | Download | only in cocoa

Lines Matching refs:valobj

29 	def __init__(self, valobj, params):
31 self.valobj = valobj;
35 self.sys_params.types_cache.NSUInteger = self.valobj.GetType().GetBasicType(lldb.eBasicTypeUnsignedLong)
37 self.sys_params.types_cache.NSUInteger = self.valobj.GetType().GetBasicType(lldb.eBasicTypeUnsignedInt)
53 size = self.valobj.CreateChildAtOffset("count",
63 def __init__(self, valobj, params):
65 self.valobj = valobj;
76 self.valobj.GetExpressionPath(stream)
77 num_children_vo = self.valobj.CreateValueFromExpression("count","(int)CFBinaryHeapGetCount(" + stream.GetData() + " )");
83 def GetSummary_Impl(valobj):
86 class_data,wrapper =lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(valobj,statistics)
98 valobj_type = valobj.GetType()
104 wrapper = CFBinaryHeapRef_SummaryProvider(valobj, class_data.sys_params)
105 statistics.metric_hit('code_notrun',valobj)
107 wrapper = CFBinaryHeapUnknown_SummaryProvider(valobj, class_data.sys_params)
108 statistics.metric_hit('unknown_class',valobj.GetName() + " seen as " + name_string)
111 def CFBinaryHeap_SummaryProvider (valobj,dict):
113 provider = GetSummary_Impl(valobj);