Lines Matching refs:__k
1173 _LIBCPP_HIDE_FROM_ABI size_type __erase_unique(const _Key& __k);
1175 _LIBCPP_HIDE_FROM_ABI size_type __erase_multi(const _Key& __k);
1186 _LIBCPP_HIDE_FROM_ABI size_type __count_unique(const _Key& __k) const;
1188 _LIBCPP_HIDE_FROM_ABI size_type __count_multi(const _Key& __k) const;
1217 _LIBCPP_HIDE_FROM_ABI pair<iterator, iterator> __equal_range_unique(const _Key& __k);
1219 …_LIBCPP_HIDE_FROM_ABI pair<const_iterator, const_iterator> __equal_range_unique(const _Key& __k) c…
1222 _LIBCPP_HIDE_FROM_ABI pair<iterator, iterator> __equal_range_multi(const _Key& __k);
1224 …_LIBCPP_HIDE_FROM_ABI pair<const_iterator, const_iterator> __equal_range_multi(const _Key& __k) co…
1773 __tree<_Tp, _Compare, _Allocator>::__emplace_unique_key_args(_Key const& __k, _Args&&... __args) {
1775 __node_base_pointer& __child = __find_equal(__parent, __k);
1791 const_iterator __p, _Key const& __k, _Args&&... __args) {
1794 __node_base_pointer& __child = __find_equal(__p, __parent, __dummy, __k);
2059 __tree<_Tp, _Compare, _Allocator>::__erase_unique(const _Key& __k) {
2060 iterator __i = find(__k);
2070 __tree<_Tp, _Compare, _Allocator>::__erase_multi(const _Key& __k) {
2071 pair<iterator, iterator> __p = __equal_range_multi(__k);
2100 __tree<_Tp, _Compare, _Allocator>::__count_unique(const _Key& __k) const {
2103 if (value_comp()(__k, __rt->__value_)) {
2105 } else if (value_comp()(__rt->__value_, __k))
2116 __tree<_Tp, _Compare, _Allocator>::__count_multi(const _Key& __k) const {
2120 if (value_comp()(__k, __rt->__value_)) {
2123 } else if (value_comp()(__rt->__value_, __k))
2127 … __lower_bound(__k, static_cast<__node_pointer>(__rt->__left_), static_cast<__iter_pointer>(__rt)),
2128 __upper_bound(__k, static_cast<__node_pointer>(__rt->__right_), __result));
2192 __tree<_Tp, _Compare, _Allocator>::__equal_range_unique(const _Key& __k) {
2197 if (value_comp()(__k, __rt->__value_)) {
2200 } else if (value_comp()(__rt->__value_, __k))
2214 __tree<_Tp, _Compare, _Allocator>::__equal_range_unique(const _Key& __k) const {
2219 if (value_comp()(__k, __rt->__value_)) {
2222 } else if (value_comp()(__rt->__value_, __k))
2236 __tree<_Tp, _Compare, _Allocator>::__equal_range_multi(const _Key& __k) {
2241 if (value_comp()(__k, __rt->__value_)) {
2244 } else if (value_comp()(__rt->__value_, __k))
2247 …return _Pp(__lower_bound(__k, static_cast<__node_pointer>(__rt->__left_), static_cast<__iter_point…
2248 __upper_bound(__k, static_cast<__node_pointer>(__rt->__right_), __result));
2257 __tree<_Tp, _Compare, _Allocator>::__equal_range_multi(const _Key& __k) const {
2262 if (value_comp()(__k, __rt->__value_)) {
2265 } else if (value_comp()(__rt->__value_, __k))
2268 …return _Pp(__lower_bound(__k, static_cast<__node_pointer>(__rt->__left_), static_cast<__iter_point…
2269 __upper_bound(__k, static_cast<__node_pointer>(__rt->__right_), __result));