Lines Matching refs:_LIBCPP_INLINE_VISIBILITY
142 static inline _LIBCPP_INLINE_VISIBILITY value_type* __allocate ( size_t count )
155 static inline _LIBCPP_INLINE_VISIBILITY void __deallocate ( value_type* __ptr ) noexcept
182 …inline _LIBCPP_INLINE_VISIBILITY iterator begin() noexcept { return iterator(data());…
183 …inline _LIBCPP_INLINE_VISIBILITY const_iterator begin() const noexcept { return const_iterator(da…
184 …inline _LIBCPP_INLINE_VISIBILITY const_iterator cbegin() const noexcept { return const_iterator(da…
185 …inline _LIBCPP_INLINE_VISIBILITY iterator end() noexcept { return iterator(data() +…
186 …inline _LIBCPP_INLINE_VISIBILITY const_iterator end() const noexcept { return const_iterator(da…
187 …inline _LIBCPP_INLINE_VISIBILITY const_iterator cend() const noexcept { return const_iterator(da…
189 …inline _LIBCPP_INLINE_VISIBILITY reverse_iterator rbegin() noexcept { return reverse_…
190 …inline _LIBCPP_INLINE_VISIBILITY const_reverse_iterator rbegin() const noexcept { return const_re…
191 …inline _LIBCPP_INLINE_VISIBILITY const_reverse_iterator crbegin() const noexcept { return const_re…
192 …inline _LIBCPP_INLINE_VISIBILITY reverse_iterator rend() noexcept { return reverse_…
193 …inline _LIBCPP_INLINE_VISIBILITY const_reverse_iterator rend() const noexcept { return const_re…
194 …inline _LIBCPP_INLINE_VISIBILITY const_reverse_iterator crend() const noexcept { return const_re…
197 inline _LIBCPP_INLINE_VISIBILITY size_type size() const noexcept { return __size_; }
198 inline _LIBCPP_INLINE_VISIBILITY size_type max_size() const noexcept { return __size_; }
199 inline _LIBCPP_INLINE_VISIBILITY bool empty() const noexcept { return __size_ == 0; }
202 …inline _LIBCPP_INLINE_VISIBILITY reference operator[](size_type __n) { return data()[_…
203 …inline _LIBCPP_INLINE_VISIBILITY const_reference operator[](size_type __n) const { return data()[_…
205 inline _LIBCPP_INLINE_VISIBILITY reference front() { return data()[0]; }
206 inline _LIBCPP_INLINE_VISIBILITY const_reference front() const { return data()[0]; }
207 inline _LIBCPP_INLINE_VISIBILITY reference back() { return data()[__size_-1]; }
208 inline _LIBCPP_INLINE_VISIBILITY const_reference back() const { return data()[__size_-1]; }
210 inline _LIBCPP_INLINE_VISIBILITY const_reference at(size_type __n) const;
211 inline _LIBCPP_INLINE_VISIBILITY reference at(size_type __n);
214 inline _LIBCPP_INLINE_VISIBILITY _Tp* data() noexcept { return __base_; }
215 inline _LIBCPP_INLINE_VISIBILITY const _Tp* data() const noexcept { return __base_; }
218 …inline _LIBCPP_INLINE_VISIBILITY void fill(const value_type& __v) { fill_n(begin(), __size_, __v);…
222 inline _LIBCPP_INLINE_VISIBILITY
232 inline _LIBCPP_INLINE_VISIBILITY
242 inline _LIBCPP_INLINE_VISIBILITY
254 inline _LIBCPP_INLINE_VISIBILITY
266 inline _LIBCPP_INLINE_VISIBILITY
276 inline _LIBCPP_INLINE_VISIBILITY
292 inline _LIBCPP_INLINE_VISIBILITY