Lines Matching refs:__k

986         size_type __erase_unique(const _Key& __k);
988 size_type __erase_multi(const _Key& __k);
1000 size_type __count_unique(const _Key& __k) const;
1002 size_type __count_multi(const _Key& __k) const;
1038 __equal_range_unique(const _Key& __k);
1041 __equal_range_unique(const _Key& __k) const;
1045 __equal_range_multi(const _Key& __k);
1048 __equal_range_multi(const _Key& __k) const;
1999 __tree<_Tp, _Compare, _Allocator>::__erase_unique(const _Key& __k)
2001 iterator __i = find(__k);
2011 __tree<_Tp, _Compare, _Allocator>::__erase_multi(const _Key& __k)
2013 pair<iterator, iterator> __p = __equal_range_multi(__k);
2045 __tree<_Tp, _Compare, _Allocator>::__count_unique(const _Key& __k) const
2051 if (value_comp()(__k, __rt->__value_))
2056 else if (value_comp()(__rt->__value_, __k))
2067 __tree<_Tp, _Compare, _Allocator>::__count_multi(const _Key& __k) const
2073 if (value_comp()(__k, __rt->__value_))
2078 else if (value_comp()(__rt->__value_, __k))
2082 __lower_bound(__k, static_cast<__node_const_pointer>(__rt->__left_), __rt),
2083 __upper_bound(__k, static_cast<__node_const_pointer>(__rt->__right_), __result)
2173 __tree<_Tp, _Compare, _Allocator>::__equal_range_unique(const _Key& __k)
2180 if (value_comp()(__k, __rt->__value_))
2185 else if (value_comp()(__rt->__value_, __k))
2201 __tree<_Tp, _Compare, _Allocator>::__equal_range_unique(const _Key& __k) const
2208 if (value_comp()(__k, __rt->__value_))
2213 else if (value_comp()(__rt->__value_, __k))
2229 __tree<_Tp, _Compare, _Allocator>::__equal_range_multi(const _Key& __k)
2236 if (value_comp()(__k, __rt->__value_))
2241 else if (value_comp()(__rt->__value_, __k))
2244 return _Pp(__lower_bound(__k, static_cast<__node_pointer>(__rt->__left_), __rt),
2245 __upper_bound(__k, static_cast<__node_pointer>(__rt->__right_), __result));
2254 __tree<_Tp, _Compare, _Allocator>::__equal_range_multi(const _Key& __k) const
2261 if (value_comp()(__k, __rt->__value_))
2266 else if (value_comp()(__rt->__value_, __k))
2269 return _Pp(__lower_bound(__k, static_cast<__node_const_pointer>(__rt->__left_), __rt),
2270 … __upper_bound(__k, static_cast<__node_const_pointer>(__rt->__right_), __result));