Lines Matching refs:noexcept

57     iterator       begin()        noexcept;
58 const_iterator begin() const noexcept;
59 const_iterator cbegin() const noexcept;
60 iterator end() noexcept;
61 const_iterator end() const noexcept;
62 const_iterator cend() const noexcept;
64 reverse_iterator rbegin() noexcept;
65 const_reverse_iterator rbegin() const noexcept;
66 const_reverse_iterator crbegin() const noexcept;
67 reverse_iterator rend() noexcept;
68 const_reverse_iterator rend() const noexcept;
69 const_reverse_iterator crend() const noexcept;
72 size_type size() const noexcept;
73 size_type max_size() const noexcept;
74 bool empty() const noexcept;
89 T* data() noexcept;
90 const T* data() const noexcept;
140 _LIBCPP_ALWAYS_INLINE dynarray () noexcept : __base_(nullptr), __size_(0) {}
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; }
214 inline _LIBCPP_INLINE_VISIBILITY _Tp* data() noexcept { return __base_; }
215 inline _LIBCPP_INLINE_VISIBILITY const _Tp* data() const noexcept { return __base_; }