HomeSort by relevance Sort by last modified time
    Searched refs:IteratorBase (Results 1 - 3 of 3) sorted by null

  /frameworks/compile/mclinker/include/mcld/ADT/
HashIterator.h 240 * behavior by change the template argument IteratorBase. HashTable defines
241 * above two iterators by defining HashIterators with different IteratorBase.
243 template <typename IteratorBase, typename Traits>
244 class HashIterator : public IteratorBase {
251 typedef IteratorBase Base;
253 typedef HashIterator<IteratorBase, Traits> Self;
256 typedef HashIterator<IteratorBase, nonconst_traits> iterator;
259 typedef HashIterator<IteratorBase, const_traits> const_iterator;
263 HashIterator() : IteratorBase() {}
266 HashIterator(typename IteratorBase::hash_table* pTable, unsigned int pIndex
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_list.h 119 class IteratorBase {
121 explicit IteratorBase(ListTy *list)
134 typedef IteratorBase<IntrusiveList<Item>, Item> Iterator;
135 typedef IteratorBase<const IntrusiveList<Item>, const Item> ConstIterator;