Lines Matching refs:find_last_of
134 constexpr size_type find_last_of(basic_string_view s, size_type pos = npos) const noexcept;
135 constexpr size_type find_last_of(charT c, size_type pos = npos) const noexcept;
136 constexpr size_type find_last_of(const charT* s, size_type pos, size_type n) const;
137 constexpr size_type find_last_of(const charT* s, size_type pos = npos) const;
476 // find_last_of
478 size_type find_last_of(basic_string_view __s, size_type __pos=npos) const _NOEXCEPT
480 …_LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find_last_of(): received nu…
486 size_type find_last_of(_CharT __c, size_type __pos = npos) const _NOEXCEPT
490 size_type find_last_of(const _CharT* __s, size_type __pos, size_type __n) const
492 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find_last_of(): received nullptr");
498 size_type find_last_of(const _CharT* __s, size_type __pos=npos) const
500 _LIBCPP_ASSERT(__s != nullptr, "string_view::find_last_of(): received nullptr");