Searched refs:__it (Results 1 – 4 of 4) sorted by relevance
100 bool operator==(const iterator& __it) const101 { return _M_cur == __it._M_cur; }102 bool operator!=(const iterator& __it) const103 { return _M_cur != __it._M_cur; }133 _Hashtable_const_iterator(const iterator& __it) in _Hashtable_const_iterator()134 : _M_cur(__it._M_cur), _M_ht(__it._M_ht) {} in _Hashtable_const_iterator()141 bool operator==(const const_iterator& __it) const 142 { return _M_cur == __it._M_cur; }143 bool operator!=(const const_iterator& __it) const 144 { return _M_cur != __it._M_cur; }[all …]
193 void erase(iterator __it) { _M_ht.erase(__it); } in erase() argument373 void erase(iterator __it) { _M_ht.erase(__it); } in erase() argument
187 void erase(iterator __it) { _M_ht.erase(__it); } in erase() argument359 void erase(iterator __it) { _M_ht.erase(__it); } in erase() argument
165 _Rb_tree_iterator(const iterator& __it) { _M_node = __it._M_node; } in _Rb_tree_iterator()1279 for (const_iterator __it = begin(); __it != end(); ++__it) { in __rb_verify() local1280 _Link_type __x = (_Link_type) __it._M_node; in __rb_verify()