Searched refs:IteratorType (Results 1 – 4 of 4) sorted by relevance
/frameworks/compile/mclinker/include/mcld/ADT/ |
D | BinTree.h | 87 template <class DataType, class Traits, class IteratorType> 88 class PolicyIteratorBase : public IteratorType { 95 typedef PolicyIteratorBase<value_type, Traits, IteratorType> Self; 101 typedef PolicyIteratorBase<value_type, nonconst_traits, IteratorType> 103 typedef PolicyIteratorBase<value_type, const_traits, IteratorType> 111 PolicyIteratorBase() : IteratorType() {} in PolicyIteratorBase() 113 PolicyIteratorBase(const iterator& X) : IteratorType(X.m_pNode) {} in PolicyIteratorBase() 115 explicit PolicyIteratorBase(NodeBase* X) : IteratorType(X) {} in PolicyIteratorBase() 121 return static_cast<node_type*>(IteratorType::m_pNode)->data; 125 return *static_cast<node_type*>(IteratorType::m_pNode)->data; [all …]
|
/frameworks/compile/mclinker/include/mcld/ |
D | InputTree.h | 25 template <typename Traits, typename IteratorType> 26 class PolicyIterator<mcld::Input, Traits, IteratorType> 27 : public PolicyIteratorBase<Input, Traits, IteratorType> { 29 typedef PolicyIterator<Input, Traits, IteratorType> Self; 30 typedef PolicyIteratorBase<Input, Traits, IteratorType> Base; 31 typedef PolicyIterator<Input, typename Traits::nonconst_traits, IteratorType> 33 typedef PolicyIterator<Input, typename Traits::const_traits, IteratorType> 48 IteratorType::advance(); 51 IteratorType::advance(); 57 IteratorType::advance(); [all …]
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/ |
D | reflection.h | 67 typedef typename internal::RefTypeTraits<T>::iterator IteratorType; typedef 81 typedef IteratorType iterator; 82 typedef IteratorType const_iterator; 175 typedef typename internal::RefTypeTraits<T>::iterator IteratorType; typedef 203 typedef IteratorType iterator; 204 typedef IteratorType const_iterator;
|
D | map_test.cc | 433 template <typename IteratorType> 436 IteratorType it = m->begin(); in TestOldVersusNewIterator() 439 const IteratorType old = it; in TestOldVersusNewIterator() 447 const IteratorType after_growth = m->find(old->first); in TestOldVersusNewIterator() 448 TestEqualIterators<IteratorType>(old, after_growth, m->end()); in TestOldVersusNewIterator() 462 TestEqualIterators<IteratorType>(old, m->find(old->first), m->end()); in TestOldVersusNewIterator() 463 TestEqualIterators<IteratorType>(old, after_growth, m->end()); in TestOldVersusNewIterator()
|