Lines Matching refs:val
8 def __init__(self, val):
9 self.val = val
12 if self.val.type.strip_typedefs().code == gdb.TYPE_CODE_FLT:
13 return ("%.6f" % float(self.val)).rstrip("0")
14 return self.val
16 def json_lookup_function(val):
17 m = ns_pattern.fullmatch(val.type.strip_typedefs().name)
20 m = ns_pattern.fullmatch(str(val['m_type']))
24 union_val = val['m_value'][t.removeprefix('detail::value_t::')]
30 return JsonValuePrinter(val['m_type'])