Home
last modified time | relevance | path

Searched refs:ValueSP (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormattersContainer.h143 typedef typename std::shared_ptr<ValueType> ValueSP; typedef
144 typedef std::vector<std::pair<TypeMatcher, ValueSP>> MapType;
145 typedef std::function<bool(const TypeMatcher &, const ValueSP &)>
154 void Add(TypeMatcher matcher, const ValueSP &entry) { in Add()
180 bool Get(FormattersMatchCandidate candidate, ValueSP &entry) { in Get()
193 bool Get(const FormattersMatchVector &candidates, ValueSP &entry) { in Get()
207 bool GetExact(TypeMatcher matcher, ValueSP &entry) { in GetExact()
217 ValueSP GetAtIndex(size_t index) { in GetAtIndex()
220 return ValueSP(); in GetAtIndex()
258 ForEach([&request](const TypeMatcher &matcher, const ValueSP &value) { in AutoComplete()
H A DTypeCategory.h41 using MapValueType = typename Subcontainer::ValueSP;
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ABI/PowerPC/
H A DABISysV_ppc64.cpp521 ValueSP value_sp; in GetValue()
578 ValueSP NewScalarValue(CompilerType &type) { in NewScalarValue()
579 ValueSP value_sp(new Value); in NewScalarValue()
586 ValueSP GetIntegerValue(uint32_t reg_index) { in GetIntegerValue()
590 return ValueSP(); in GetIntegerValue()
593 ValueSP value_sp(NewScalarValue(m_type)); in GetIntegerValue()
642 ValueSP value_sp(NewScalarValue(type)); in GetFloatValue()
667 ValueSP GetPointerValue(uint32_t reg_index) { in GetPointerValue()
671 return ValueSP(); in GetPointerValue()
674 ValueSP value_sp(NewScalarValue(m_type)); in GetPointerValue()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h472 typedef std::shared_ptr<lldb_private::Value> ValueSP; typedef