Home | History | Annotate | Download | only in bits

Lines Matching refs:__k

445       operator[](const key_type& __k)
450 iterator __i = lower_bound(__k);
451 // __i->first is greater than or equivalent to __k.
452 if (__i == end() || key_comp()(__k, (*__i).first))
453 __i = insert(__i, value_type(__k, mapped_type()));
459 operator[](key_type&& __k)
464 iterator __i = lower_bound(__k);
465 // __i->first is greater than or equivalent to __k.
466 if (__i == end() || key_comp()(__k, (*__i).first))
467 __i = insert(__i, std::make_pair(std::move(__k), mapped_type()));
482 at(const key_type& __k)
484 iterator __i = lower_bound(__k);
485 if (__i == end() || key_comp()(__k, (*__i).first))
491 at(const key_type& __k) const
493 const_iterator __i = lower_bound(__k);
494 if (__i == end() || key_comp()(__k, (*__i).first))