Lines Matching refs:Value
6 from .value import Value
16 class LVList(Value):
19 def __init__(self, ll: Value, nodetype: Union[gdb.Type, str] = None): argument
35 next_value = Value(int(node) + self._next_offset)
39 prev_value = Value(int(node) + self._prev_offset)
65 class LVObject(Value):
68 def __init__(self, obj: Value): argument
130 class LVDisplay(Value):
133 def __init__(self, disp: Value): argument
146 def __init__(self, lv_global: Value): argument
170 def set_lvgl_instance(lv_global: Union[gdb.Value, Value, None]): argument
175 lv_global = Value(gdb.parse_and_eval("lv_global").address)
180 if not isinstance(lv_global, Value):
181 lv_global = Value(lv_global)
198 def dump_style_info(style: Value): argument
288 obj = Value(obj)
304 def dump_draw_unit(self, draw_unit: Value): argument