/external/stlport/stlport/stl/ |
_raw_storage_iter.h | 46 typedef output_iterator_tag iterator_category; typedef in class:raw_storage_iterator 72 inline output_iterator_tag iterator_category(const raw_storage_iterator<_ForwardIterator, _Tp>&) { return output_iterator_tag(); } function
|
_ostreambuf_iterator.h | 50 typedef output_iterator_tag iterator_category; typedef in class:ostreambuf_iterator 92 iterator_category(const ostreambuf_iterator<_CharT, _Traits>&) { return output_iterator_tag(); } function
|
_istreambuf_iterator.h | 55 typedef input_iterator_tag iterator_category; typedef in class:istreambuf_iterator 134 inline input_iterator_tag _STLP_CALL iterator_category(const istreambuf_iterator<_CharT, _Traits>&) { return input_iterator_tag(); } function
|
_iterator.h | 48 public iterator<typename iterator_traits<_Iterator>::iterator_category, 169 typedef output_iterator_tag iterator_category; typedef in class:back_insert_iterator 199 typedef output_iterator_tag iterator_category; typedef in class:front_insert_iterator 229 typedef output_iterator_tag iterator_category; typedef in class:insert_iterator
|
_iterator_old.h | 43 iterator_category(const back_insert_iterator<_Container>&) { return output_iterator_tag(); } function 46 iterator_category(const front_insert_iterator<_Container>&) { return output_iterator_tag(); } function 49 iterator_category(const insert_iterator<_Container>&) { return output_iterator_tag(); } function 71 typedef bidirectional_iterator_tag iterator_category; typedef in class:reverse_bidirectional_iterator 116 iterator_category(const reverse_bidirectional_iterator<_BidirectionalIterator, _Tp, Reference__, _Distance>&) function 165 typedef random_access_iterator_tag iterator_category; typedef in class:reverse_iterator 224 iterator_category(const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>&) function
|
_stream_iterator.h | 102 typedef input_iterator_tag iterator_category; typedef in class:istream_iterator 175 typedef output_iterator_tag iterator_category; typedef in class:ostream_iterator 197 iterator_category(const ostream_iterator<_TpP>&) { return output_iterator_tag(); } function 201 iterator_category(const ostream_iterator<_TpP, _CharT, _Traits>&) { return output_iterator_tag(); } function 227 iterator_category(const istream_iterator< __ISI_TMPL_ARGUMENTS >&) function
|
_hash_map.h | 447 typedef output_iterator_tag iterator_category; typedef in class:insert_iterator 474 typedef output_iterator_tag iterator_category; typedef in class:insert_iterator
|
_hash_set.h | 442 typedef output_iterator_tag iterator_category; typedef in class:insert_iterator 469 typedef output_iterator_tag iterator_category; typedef in class:insert_iterator
|
_iterator_base.h | 60 typedef _Category iterator_category; typedef in struct:iterator 68 typedef output_iterator_tag iterator_category; typedef in struct:iterator 78 # define _STLP_ITERATOR_CATEGORY(_It, _Tp) _STLP_STD::iterator_category(_It) 90 # define _STLP_ITERATOR_CATEGORY(_It, _Tp) _STLP_STD::iterator_traits< _Tp >::iterator_category() 92 # define _STLP_ITERATOR_CATEGORY(_It, _Tp) _STLP_TYPENAME _STLP_STD::iterator_traits< _Tp >::iterator_category() 143 typedef typename _Iterator::iterator_category _OriginalTag; 144 typedef typename _CategoryMapping<_OriginalTag>::_Tag iterator_category; typedef in struct:iterator_traits 148 typedef typename _Iterator::iterator_category iterator_category; typedef in struct:iterator_traits::iterator_traits 167 typedef random_access_iterator_tag iterator_category; typedef in struct:iterator_traits::iterator_traits 176 typedef random_access_iterator_tag iterator_category; typedef in struct:iterator_traits::iterator_traits 186 typedef random_access_iterator_tag iterator_category; typedef in struct:iterator_traits::iterator_traits 280 iterator_category(const input_iterator<_Tp, _Distance>&) { return input_iterator_tag(); } function in struct:iterator_traits 282 iterator_category(const output_iterator&) { return output_iterator_tag(); } function in struct:iterator_traits 285 iterator_category(const forward_iterator<_Tp, _Distance>&) { return forward_iterator_tag(); } function in struct:iterator_traits 288 iterator_category(const bidirectional_iterator<_Tp, _Distance>&) { return bidirectional_iterator_tag(); } function in struct:iterator_traits 291 iterator_category(const random_access_iterator<_Tp, _Distance>&) { return random_access_iterator_tag(); } function in struct:iterator_traits [all...] |
_unordered_map.h | 389 typedef output_iterator_tag iterator_category; typedef in class:insert_iterator 416 typedef output_iterator_tag iterator_category; typedef in class:insert_iterator
|
_unordered_set.h | 364 typedef output_iterator_tag iterator_category; typedef in class:insert_iterator 391 typedef output_iterator_tag iterator_category; typedef in class:insert_iterator
|
_hashtable.h | 117 typedef forward_iterator_tag iterator_category; typedef in struct:_Ht_iterator 180 inline forward_iterator_tag iterator_category(const _STLP_PRIV _Ht_iterator<_BaseIte,_Traits>&) function
|
_list.h | 85 typedef bidirectional_iterator_tag iterator_category; typedef in struct:_List_iterator_base 108 typedef bidirectional_iterator_tag iterator_category; typedef in struct:_List_iterator 165 inline bidirectional_iterator_tag iterator_category(const _STLP_PRIV _List_iterator_base&) { return bidirectional_iterator_tag();} function
|
_slist.h | 68 typedef forward_iterator_tag iterator_category; typedef in struct:_Slist_iterator_base 85 typedef forward_iterator_tag iterator_category; typedef in class:_Slist_iterator 142 inline forward_iterator_tag _STLP_CALL iterator_category(const _STLP_PRIV _Slist_iterator_base&) { return forward_iterator_tag(); } function 882 typedef output_iterator_tag iterator_category; typedef in class:insert_iterator
|
_tree.h | 138 typedef bidirectional_iterator_tag iterator_category; typedef in struct:_Rb_tree_base_iterator 222 inline bidirectional_iterator_tag iterator_category(const _STLP_PRIV _Rb_tree_base_iterator&) function
|
/external/astl/tests/ |
test_iterator.cpp | 39 typedef std::input_iterator_tag iterator_category; typedef in struct:android::Input 47 typedef std::forward_iterator_tag iterator_category; typedef in struct:android::Forward 55 typedef std::bidirectional_iterator_tag iterator_category; typedef in struct:android::Bidirectional 63 typedef std::random_access_iterator_tag iterator_category; typedef in struct:android::Random 105 EXPECT_TRUE(category(android::iterator_category(Input())) == INPUT); 106 EXPECT_TRUE(category(android::iterator_category(Forward())) == FORWARD); 107 EXPECT_TRUE(category(android::iterator_category(Bidirectional())) == BIDIRECTIONAL); 108 EXPECT_TRUE(category(android::iterator_category(Random())) == RANDOM);
|
/external/stlport/stlport/stl/debug/ |
_deque.h | 46 inline random_access_iterator_tag iterator_category(const _STLP_PRIV _DBG_iter_base< _STLP_NON_DBG_DEQUE >&) function
|
_vector.h | 48 iterator_category(const _STLP_PRIV _DBG_iter_base< _STLP_NON_DBG_VECTOR >&) function
|
_hashtable.h | 85 iterator_category(const _STLP_PRIV _DBG_iter_base< _STLP_NON_DBG_HT >&) function
|
_iterator.h | 131 typedef typename iterator_traits<_Const_iterator>::iterator_category _Iterator_category; 135 typedef _Iterator_category iterator_category; typedef in struct:_DBG_iter_base 216 typedef typename _Base::iterator_category iterator_category; typedef in struct:_DBG_iter 439 iterator_category(const _STLP_PRIV _DBG_iter_base<_Container>&) { function
|
_list.h | 52 iterator_category(const _STLP_PRIV _DBG_iter_base< _STLP_NON_DBG_LIST >&) function
|
_slist.h | 46 iterator_category(const _STLP_PRIV _DBG_iter_base< _STLP_NON_DBG_SLIST >&) function
|
_string.h | 37 iterator_category(const _STLP_PRIV _DBG_iter_base< _STLP_NON_DBG_STRING >&) function
|
_tree.h | 85 iterator_category(const _STLP_PRIV _DBG_iter_base< _STLP_NON_DBG_TREE >&) function
|
/external/stlport/stlport/stl/pointers/ |
_tools.h | 340 typedef typename _IteTraits::iterator_category iterator_category; typedef in struct:_IteWrapper
|