Home | History | Annotate | Download | only in tr1

Lines Matching full:__cache

88   template<typename _Value, bool __cache>
91 _Node_iterator_base(_Hash_node<_Value, __cache>* __p)
98 _Hash_node<_Value, __cache>* _M_cur;
101 template<typename _Value, bool __cache>
103 operator==(const _Node_iterator_base<_Value, __cache>& __x,
104 const _Node_iterator_base<_Value, __cache>& __y)
107 template<typename _Value, bool __cache>
109 operator!=(const _Node_iterator_base<_Value, __cache>& __x,
110 const _Node_iterator_base<_Value, __cache>& __y)
113 template<typename _Value, bool __constant_iterators, bool __cache>
115 : public _Node_iterator_base<_Value, __cache>
130 : _Node_iterator_base<_Value, __cache>(0) { }
133 _Node_iterator(_Hash_node<_Value, __cache>* __p)
134 : _Node_iterator_base<_Value, __cache>(__p) { }
160 template<typename _Value, bool __constant_iterators, bool __cache>
162 : public _Node_iterator_base<_Value, __cache>
171 : _Node_iterator_base<_Value, __cache>(0) { }
174 _Node_const_iterator(_Hash_node<_Value, __cache>* __p)
175 : _Node_iterator_base<_Value, __cache>(__p) { }
178 __cache>& __x)
179 : _Node_iterator_base<_Value, __cache>(__x._M_cur) { }
205 template<typename _Value, bool __cache>
208 _Hashtable_iterator_base(_Hash_node<_Value, __cache>* __node,
209 _Hash_node<_Value, __cache>** __bucket)
223 _Hash_node<_Value, __cache>* _M_cur_node;
224 _Hash_node<_Value, __cache>** _M_cur_bucket;
229 template<typename _Value, bool __cache>
231 _Hashtable_iterator_base<_Value, __cache>::
242 template<typename _Value, bool __cache>
244 operator==(const _Hashtable_iterator_base<_Value, __cache>& __x,
245 const _Hashtable_iterator_base<_Value, __cache>& __y)
248 template<typename _Value, bool __cache>
250 operator!=(const _Hashtable_iterator_base<_Value, __cache>& __x,
251 const _Hashtable_iterator_base<_Value, __cache>& __y)
254 template<typename _Value, bool __constant_iterators, bool __cache>
256 : public _Hashtable_iterator_base<_Value, __cache>
271 : _Hashtable_iterator_base<_Value, __cache>(0, 0) { }
273 _Hashtable_iterator(_Hash_node<_Value, __cache>* __p,
274 _Hash_node<_Value, __cache>** __b)
275 : _Hashtable_iterator_base<_Value, __cache>(__p, __b) { }
278 _Hashtable_iterator(_Hash_node<_Value, __cache>** __b)
279 : _Hashtable_iterator_base<_Value, __cache>(*__b, __b) { }
305 template<typename _Value, bool __constant_iterators, bool __cache>
307 : public _Hashtable_iterator_base<_Value, __cache>
316 : _Hashtable_iterator_base<_Value, __cache>(0, 0) { }
318 _Hashtable_const_iterator(_Hash_node<_Value, __cache>* __p,
319 _Hash_node<_Value, __cache>** __b)
320 : _Hashtable_iterator_base<_Value, __cache>(__p, __b) { }
323 _Hashtable_const_iterator(_Hash_node<_Value, __cache>** __b)
324 : _Hashtable_iterator_base<_Value, __cache>(*__b, __b) { }
327 __constant_iterators, __cache>& __x)
328 : _Hashtable_iterator_base<_Value, __cache>(__x._M_cur_node,