Lines Matching refs:const_reference
165 typedef __bit_const_reference<__bitset> const_reference;
176 …_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR const_reference __make_ref(size_t __pos) const _NOEXCE…
177 …{return const_reference(__first_ + __pos / __bits_per_word, __storage_type(1) << __pos % __bits_pe…
461 typedef __bit_const_reference<__bitset> const_reference;
472 …_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR const_reference __make_ref(size_t __pos) const _NOEXCE…
473 {return const_reference(&__first_, __storage_type(1) << __pos);}
618 typedef __bit_const_reference<__bitset> const_reference;
629 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR const_reference __make_ref(size_t) const _NOEXCEPT
630 {return const_reference(nullptr, 1);}
676 typedef typename base::const_reference const_reference;
716 … const_reference operator[](size_t __p) const {return base::__make_ref(__p);}