Home
last modified time | relevance | path

Searched refs:node_sp (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxUnorderedMap.cpp137 auto [node_sp, is_compressed_pair] = GetValueOrOldCompressedPair( in GetNodeType()
140 node_sp = GetFirstValueOfLibCXXCompressedPair(*node_sp); in GetNodeType()
142 if (!node_sp) in GetNodeType()
145 return node_sp->GetCompilerType().GetTypeTemplateArgument(0).GetPointeeType(); in GetNodeType()
160 ValueObjectSP node_sp = m_next_element->Dereference(error); in GetChildAtIndex() local
161 if (!node_sp || error.Fail()) in GetChildAtIndex()
164 ValueObjectSP value_sp = node_sp->GetChildMemberWithName("__value_"); in GetChildAtIndex()
165 ValueObjectSP hash_sp = node_sp->GetChildMemberWithName("__hash_"); in GetChildAtIndex()
167 node_sp = m_next_element->Cast(m_node_type.GetPointerType()) in GetChildAtIndex()
169 if (!node_sp || error.Fail()) in GetChildAtIndex()
[all …]
H A DLibCxx.cpp113 ValueObjectSP node_sp(obj.GetChildMemberWithName(child_name)); in GetValueOrOldCompressedPair() local
114 if (node_sp) in GetValueOrOldCompressedPair()
115 return {node_sp, is_old_compressed_pair(*node_sp)}; in GetValueOrOldCompressedPair()
120 ValueObjectSP node_sp(obj.GetChildMemberWithName(child_name)); in GetValueOrOldCompressedPair() local
121 if (node_sp) in GetValueOrOldCompressedPair()
122 return {node_sp, is_old_compressed_pair(*node_sp)}; in GetValueOrOldCompressedPair()
128 node_sp = obj.GetChildMemberWithName(compressed_pair_name); in GetValueOrOldCompressedPair()
131 if (!node_sp) in GetValueOrOldCompressedPair()
135 if (!is_old_compressed_pair(*node_sp)) in GetValueOrOldCompressedPair()
138 return {node_sp, true}; in GetValueOrOldCompressedPair()
H A DLibCxxMap.cpp259 auto node_sp = GetFirstValueOfLibCXXCompressedPair(pair); in CalculateNumChildrenForOldCompressedPairLayout() local
261 if (!node_sp) in CalculateNumChildrenForOldCompressedPairLayout()
264 m_count = node_sp->GetValueAsUnsigned(0); in CalculateNumChildrenForOldCompressedPairLayout()