Lines Matching refs:find_last_not_of
303 size_type find_last_not_of(const basic_string& str, size_type pos = npos) const noexcept;
305 …size_type find_last_not_of(const T& t, size_type pos = npos) const noexcept; // C++17, noexcept as…
306 size_type find_last_not_of(const value_type* s, size_type pos, size_type n) const noexcept;
307 size_type find_last_not_of(const value_type* s, size_type pos = npos) const noexcept;
308 size_type find_last_not_of(value_type c, size_type pos = npos) const noexcept;
1355 size_type find_last_not_of(const basic_string& __str, size_type __pos = npos) const _NOEXCEPT;
1364 find_last_not_of(const _Tp& __t, size_type __pos = npos) const _NOEXCEPT;
1365 … size_type find_last_not_of(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT;
1367 size_type find_last_not_of(const value_type* __s, size_type __pos = npos) const _NOEXCEPT;
1369 size_type find_last_not_of(value_type __c, size_type __pos = npos) const _NOEXCEPT;
3832 // find_last_not_of
3836 basic_string<_CharT, _Traits, _Allocator>::find_last_not_of(const value_type* __s,
3840 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string::find_last_not_of(): received nullptr");
3848 basic_string<_CharT, _Traits, _Allocator>::find_last_not_of(const basic_string& __str,
3862 basic_string<_CharT, _Traits, _Allocator>::find_last_not_of(const _Tp& __t,
3873 basic_string<_CharT, _Traits, _Allocator>::find_last_not_of(const value_type* __s,
3876 _LIBCPP_ASSERT(__s != nullptr, "string::find_last_not_of(): received nullptr");
3884 basic_string<_CharT, _Traits, _Allocator>::find_last_not_of(value_type __c,