Searched refs:ValueSP (Results 1 – 7 of 7) sorted by relevance
| /openbsd-src/gnu/llvm/lldb/include/lldb/DataFormatters/ |
| H A D | TypeCategoryMap.h | 33 typedef ValueType::SharedPointer ValueSP; typedef 34 typedef std::map<KeyType, ValueSP> MapType; 36 typedef std::function<bool(const ValueSP &)> ForEachCallback; 46 void Add(KeyType name, const ValueSP &entry); 54 bool Enable(ValueSP category, Position pos = Default); 56 bool Disable(ValueSP category); 64 bool Get(KeyType name, ValueSP &entry); 66 bool Get(uint32_t pos, ValueSP &entry);
|
| H A D | FormattersContainer.h | 143 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 D | FormatManager.h | 60 TypeCategoryMap::ValueSP category_sp; in EnableCategory()
|
| H A D | TypeCategory.h | 41 using MapValueType = typename Subcontainer::ValueSP;
|
| /openbsd-src/gnu/llvm/lldb/source/DataFormatters/ |
| H A D | TypeCategoryMap.cpp | 27 void TypeCategoryMap::Add(KeyType name, const ValueSP &entry) { in Add() 48 ValueSP category; in Enable() 56 ValueSP category; in Disable() 62 bool TypeCategoryMap::Enable(ValueSP category, Position pos) { in Enable() 84 bool TypeCategoryMap::Disable(ValueSP category) { in Disable() 96 std::vector<ValueSP> sorted_categories(m_map.size(), ValueSP()); in EnableAllCategories() 105 [](const ValueSP &sp) -> bool { return sp.get() == nullptr; }); in EnableAllCategories() 133 bool TypeCategoryMap::Get(KeyType name, ValueSP &entry) { in Get() 142 bool TypeCategoryMap::Get(uint32_t pos, ValueSP &entry) { in Get()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ABI/PowerPC/ |
| H A D | ABISysV_ppc64.cpp | 521 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() 635 ValueSP GetFloatValue(CompilerType &type, uint32_t reg_index) { in GetFloatValue() 642 ValueSP value_sp(NewScalarValue(type)); in GetFloatValue() 667 ValueSP GetPointerValue(uint32_t reg_index) { in GetPointerValue() 671 return ValueSP(); in GetPointerValue() [all …]
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/ |
| H A D | lldb-forward.h | 455 typedef std::shared_ptr<lldb_private::Value> ValueSP; typedef
|