Lines Matching refs:const_reference

26     typedef typename allocator_type::const_reference const_reference;
86 const_reference operator[](size_type n) const;
88 const_reference at(size_type n) const;
91 const_reference front() const;
93 const_reference back() const;
153 class const_reference
156 const_reference(const reference&) noexcept;
210 const_reference operator[](size_type n) const;
212 const_reference at(size_type n) const;
215 const_reference front() const;
217 const_reference back() const;
340 typedef const value_type& const_reference;
505 typedef typename __base::const_reference const_reference;
635 void assign(size_type __n, const_reference __u);
692 _LIBCPP_INLINE_VISIBILITY const_reference operator[](size_type __n) const _NOEXCEPT;
694 const_reference at(size_type __n) const;
701 _LIBCPP_INLINE_VISIBILITY const_reference front() const _NOEXCEPT
711 _LIBCPP_INLINE_VISIBILITY const_reference back() const _NOEXCEPT
735 _LIBCPP_INLINE_VISIBILITY void push_back(const_reference __x);
752 iterator insert(const_iterator __position, const_reference __x);
760 iterator insert(const_iterator __position, size_type __n, const_reference __x);
802 void resize(size_type __sz, const_reference __x);
831 void __construct_at_end(size_type __n, const_reference __x);
840 void __append(size_type __n, const_reference __x);
1080 vector<_Tp, _Allocator>::__construct_at_end(size_type __n, const_reference __x)
1127 vector<_Tp, _Allocator>::__append(size_type __n, const_reference __x)
1490 vector<_Tp, _Allocator>::assign(size_type __n, const_reference __u)
1577 typename vector<_Tp, _Allocator>::const_reference
1594 typename vector<_Tp, _Allocator>::const_reference
1656 vector<_Tp, _Allocator>::push_back(const_reference __x)
1789 vector<_Tp, _Allocator>::insert(const_iterator __position, const_reference __x)
1894 vector<_Tp, _Allocator>::insert(const_iterator __position, size_type __n, const_reference __x)
2053 vector<_Tp, _Allocator>::resize(size_type __sz, const_reference __x)
2215 typedef __bit_const_reference<vector> const_reference;
2377 …_LIBCPP_INLINE_VISIBILITY const_reference operator[](size_type __n) const {return __make_ref(__n);}
2379 const_reference at(size_type __n) const;
2382 _LIBCPP_INLINE_VISIBILITY const_reference front() const {return __make_ref(0);}
2384 _LIBCPP_INLINE_VISIBILITY const_reference back() const {return __make_ref(__size_ - 1);}
2412 iterator insert(const_iterator __position, size_type __n, const_reference __x);
2471 void __append(size_type __n, const_reference __x);
2476 const_reference __make_ref(size_type __pos) const _NOEXCEPT
2477 …{return const_reference(__begin_ + __pos / __bits_per_word, __storage_type(1) << __pos % __bits_pe…
3074 typename vector<bool, _Allocator>::const_reference