Lines Matching defs:internal_dict
91 def __init__(self, target: lldb.SBTarget, internal_dict: dict):
131 def is_derived_attribute_or_type(sbtype: lldb.SBType, internal_dict):
141 def get_typeid_map(target: lldb.SBTarget, internal_dict: dict):
144 if "typeIdMap" not in internal_dict:
145 internal_dict["typeIdMap"] = ComputedTypeIDMap(target, internal_dict)
146 return internal_dict["typeIdMap"]
149 def is_attribute_or_type(sbtype: lldb.SBType, internal_dict):
165 sbtype.GetDirectBaseClassAtIndex(0).GetType(), internal_dict
170 valobj: lldb.SBValue, abstractVal: lldb.SBValue, internal_dict
175 if is_derived_attribute_or_type(valobj.GetType(), internal_dict):
180 typeIdMap = get_typeid_map(valobj.GetTarget(), internal_dict)
189 def __init__(self, valobj: lldb.SBValue, internal_dict):
202 valobj, self.abstractVal, internal_dict
282 def AttrTypeSummaryProvider(valobj: lldb.SBValue, internal_dict):
332 def __init__(self, valobj, internal_dict):
366 def is_op(sbtype: lldb.SBType, internal_dict):
377 return is_op(sbtype.GetDirectBaseClassAtIndex(0).GetType(), internal_dict)
383 def __init__(self, valobj, internal_dict):
450 def OperationSummaryProvider(valobj: lldb.SBValue, internal_dict):
469 def __init__(self, valobj, internal_dict):
505 def __init__(self, valobj, internal_dict):
534 def __init__(self, valobj, internal_dict):
587 def __init__(self, valobj, internal_dict):
685 def ValueSummaryProvider(valobj: lldb.SBValue, internal_dict):
713 def __lldb_init_module(debugger: lldb.SBDebugger, internal_dict):