Home | History | Annotate | Download | only in bits

Lines Matching full:__cache

99   template<typename _Value, bool __cache>
102 _Node_iterator_base(_Hash_node<_Value, __cache>* __p)
109 _Hash_node<_Value, __cache>* _M_cur;
112 template<typename _Value, bool __cache>
114 operator==(const _Node_iterator_base<_Value, __cache>& __x,
115 const _Node_iterator_base<_Value, __cache>& __y)
118 template<typename _Value, bool __cache>
120 operator!=(const _Node_iterator_base<_Value, __cache>& __x,
121 const _Node_iterator_base<_Value, __cache>& __y)
124 template<typename _Value, bool __constant_iterators, bool __cache>
126 : public _Node_iterator_base<_Value, __cache>
139 : _Node_iterator_base<_Value, __cache>(0) { }
142 _Node_iterator(_Hash_node<_Value, __cache>* __p)
143 : _Node_iterator_base<_Value, __cache>(__p) { }
169 template<typename _Value, bool __constant_iterators, bool __cache>
171 : public _Node_iterator_base<_Value, __cache>
180 : _Node_iterator_base<_Value, __cache>(0) { }
183 _Node_const_iterator(_Hash_node<_Value, __cache>* __p)
184 : _Node_iterator_base<_Value, __cache>(__p) { }
187 __cache>& __x)
188 : _Node_iterator_base<_Value, __cache>(__x._M_cur) { }
214 template<typename _Value, bool __cache>
217 _Hashtable_iterator_base(_Hash_node<_Value, __cache>* __node,
218 _Hash_node<_Value, __cache>** __bucket)
232 _Hash_node<_Value, __cache>* _M_cur_node;
233 _Hash_node<_Value, __cache>** _M_cur_bucket;
238 template<typename _Value, bool __cache>
240 _Hashtable_iterator_base<_Value, __cache>::
251 template<typename _Value, bool __cache>
253 operator==(const _Hashtable_iterator_base<_Value, __cache>& __x,
254 const _Hashtable_iterator_base<_Value, __cache>& __y)
257 template<typename _Value, bool __cache>
259 operator!=(const _Hashtable_iterator_base<_Value, __cache>& __x,
260 const _Hashtable_iterator_base<_Value, __cache>& __y)
263 template<typename _Value, bool __constant_iterators, bool __cache>
265 : public _Hashtable_iterator_base<_Value, __cache>
278 : _Hashtable_iterator_base<_Value, __cache>(0, 0) { }
280 _Hashtable_iterator(_Hash_node<_Value, __cache>* __p,
281 _Hash_node<_Value, __cache>** __b)
282 : _Hashtable_iterator_base<_Value, __cache>(__p, __b) { }
285 _Hashtable_iterator(_Hash_node<_Value, __cache>** __b)
286 : _Hashtable_iterator_base<_Value, __cache>(*__b, __b) { }
312 template<typename _Value, bool __constant_iterators, bool __cache>
314 : public _Hashtable_iterator_base<_Value, __cache>
323 : _Hashtable_iterator_base<_Value, __cache>(0, 0) { }
325 _Hashtable_const_iterator(_Hash_node<_Value, __cache>* __p,
326 _Hash_node<_Value, __cache>** __b)
327 : _Hashtable_iterator_base<_Value, __cache>(__p, __b) { }
330 _Hashtable_const_iterator(_Hash_node<_Value, __cache>** __b)
331 : _Hashtable_iterator_base<_Value, __cache>(*__b, __b) { }
334 __constant_iterators, __cache>& __x)
335 : _Hashtable_iterator_base<_Value, __cache>(__x._M_cur_node,