Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DCoalescingBitVector.h250 UnderlyingIterator MapIterator; variable
267 if (MapIterator.valid()) { in resetCache()
269 CachedStart = MapIterator.start(); in resetCache()
270 CachedStop = MapIterator.stop(); in resetCache()
287 const_iterator(UnderlyingIterator MapIt) : MapIterator(MapIt) { in const_iterator()
314 ++MapIterator;
336 ++MapIterator; in advanceToLowerBound()
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeCategoryMap.cpp43 MapIterator iter = m_map.find(name); in Delete()
153 MapIterator iter = m_map.find(name); in Get()
167 MapIterator pos, end = m_map.end(); in AnyMatches()
241 MapIterator pos, end = m_map.end(); in ForEach()
256 MapIterator pos, end = m_map.end(); in GetAtIndex()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxMap.cpp103 class MapIterator { class
105 MapIterator(ValueObject *entry, size_t depth = 0) in MapIterator() function in MapIterator
108 MapIterator() = default;
225 std::map<size_t, MapIterator> m_iterators;
281 MapIterator iterator(m_root_node, max_depth); in GetKeyValuePair()
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DTypeCategoryMap.h33 typedef MapType::iterator MapIterator; typedef