Home
last modified time | relevance | path

Searched refs:cast_type (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/lldb/source/Core/
H A DValueObjectCast.cpp26 const CompilerType &cast_type) { in Create() argument
28 new ValueObjectCast(parent, name, cast_type); in Create()
33 const CompilerType &cast_type) in ValueObjectCast() argument
34 : ValueObject(parent), m_cast_type(cast_type) { in ValueObjectCast()
36 m_value.SetCompilerType(cast_type); in ValueObjectCast()
H A DValueObjectConstResultCast.cpp24 ValueObject &parent, ConstString name, const CompilerType &cast_type, in ValueObjectConstResultCast() argument
26 : ValueObjectCast(parent, name, cast_type), m_impl(this, live_address) { in ValueObjectConstResultCast()
/llvm-project-15.0.7/libcxx/utils/gdb/libcxx/
H A Dprinters.py552 def __init__(self, cast_type, root): argument
553 self.cast_type = cast_type
613 cast_type = self._init_cast_type(val.type)
614 self.util = RBTreeUtils(cast_type, root)
670 key_value = node.cast(self.util.cast_type).dereference()[
699 cast_type = self.val.type.template_argument(1)
700 self.util = RBTreeUtils(cast_type, None)
702 self.node = self.addr.cast(cast_type).dereference()
775 self.cast_type = node_base_type.template_argument(0)
780 next_val = next_ptr.cast(self.cast_type).dereference()
[all …]
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DValueObjectCast.h31 const CompilerType &cast_type);
51 const CompilerType &cast_type);
H A DValueObjectConstResultCast.h31 const CompilerType &cast_type,