Lines Matching refs:_NOEXCEPT

213         basic_string_view() _NOEXCEPT : __data (nullptr), __size(0) {}
216 basic_string_view(const basic_string_view&) _NOEXCEPT = default;
219 basic_string_view& operator=(const basic_string_view&) _NOEXCEPT = default;
223 basic_string_view(const basic_string<_CharT, _Traits, _Allocator>& __str) _NOEXCEPT
239 const_iterator begin() const _NOEXCEPT { return cbegin(); }
242 const_iterator end() const _NOEXCEPT { return cend(); }
245 const_iterator cbegin() const _NOEXCEPT { return __data; }
248 const_iterator cend() const _NOEXCEPT { return __data + __size; }
251 const_reverse_iterator rbegin() const _NOEXCEPT { return const_reverse_iterator(cend()); }
254 … const_reverse_iterator rend() const _NOEXCEPT { return const_reverse_iterator(cbegin()); }
257 const_reverse_iterator crbegin() const _NOEXCEPT { return const_reverse_iterator(cend()); }
260 … const_reverse_iterator crend() const _NOEXCEPT { return const_reverse_iterator(cbegin()); }
264 size_type size() const _NOEXCEPT { return __size; }
267 size_type length() const _NOEXCEPT { return __size; }
270 size_type max_size() const _NOEXCEPT { return _VSTD::numeric_limits<size_type>::max(); }
273 empty() const _NOEXCEPT { return __size == 0; }
300 const_pointer data() const _NOEXCEPT { return __data; }
304 void clear() _NOEXCEPT
311 void remove_prefix(size_type __n) _NOEXCEPT
319 void remove_suffix(size_type __n) _NOEXCEPT
326 void swap(basic_string_view& __other) _NOEXCEPT
372 _LIBCPP_CONSTEXPR_AFTER_CXX11 int compare(basic_string_view __sv) const _NOEXCEPT
414 size_type find(basic_string_view __s, size_type __pos = 0) const _NOEXCEPT
422 size_type find(_CharT __c, size_type __pos = 0) const _NOEXCEPT
446 size_type rfind(basic_string_view __s, size_type __pos = npos) const _NOEXCEPT
454 size_type rfind(_CharT __c, size_type __pos = npos) const _NOEXCEPT
478 size_type find_first_of(basic_string_view __s, size_type __pos = 0) const _NOEXCEPT
486 size_type find_first_of(_CharT __c, size_type __pos = 0) const _NOEXCEPT
507 size_type find_last_of(basic_string_view __s, size_type __pos=npos) const _NOEXCEPT
515 size_type find_last_of(_CharT __c, size_type __pos = npos) const _NOEXCEPT
536 size_type find_first_not_of(basic_string_view __s, size_type __pos=0) const _NOEXCEPT
544 size_type find_first_not_of(_CharT __c, size_type __pos=0) const _NOEXCEPT
568 size_type find_last_not_of(basic_string_view __s, size_type __pos=npos) const _NOEXCEPT
576 size_type find_last_not_of(_CharT __c, size_type __pos=npos) const _NOEXCEPT
609 basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
618 … typename _VSTD::common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
627 basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
637 …tor!=(basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
647 … typename _VSTD::common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
657 basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
668 …ator<(basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
676 … typename _VSTD::common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
684 basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
693 …tor> (basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
701 … typename _VSTD::common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
709 basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
718 …tor<=(basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
726 … typename _VSTD::common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
734 basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
743 …tor>=(basic_string_view<_CharT, _Traits> __lhs, basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
752 … typename _VSTD::common_type<basic_string_view<_CharT, _Traits> >::type __rhs) _NOEXCEPT
760 basic_string_view<_CharT, _Traits> __rhs) _NOEXCEPT
788 …e_t operator()(const std::experimental::basic_string_view<_CharT, _Traits>& __val) const _NOEXCEPT;
794 const std::experimental::basic_string_view<_CharT, _Traits>& __val) const _NOEXCEPT