Lines Matching refs:find_last_of
133 constexpr size_type find_last_of(basic_string_view s, size_type pos = npos) const noexcept;
134 constexpr size_type find_last_of(charT c, size_type pos = npos) const noexcept;
135 constexpr size_type find_last_of(const charT* s, size_type pos, size_type n) const;
136 constexpr size_type find_last_of(const charT* s, size_type pos = npos) const;
485 // find_last_of
487 size_type find_last_of(basic_string_view __s, size_type __pos=npos) const _NOEXCEPT
489 …_LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find_last_of(): received nu…
495 size_type find_last_of(_CharT __c, size_type __pos = npos) const _NOEXCEPT
499 size_type find_last_of(const _CharT* __s, size_type __pos, size_type __n) const
501 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find_last_of(): received nullptr");
507 size_type find_last_of(const _CharT* __s, size_type __pos=npos) const
509 _LIBCPP_ASSERT(__s != nullptr, "string_view::find_last_of(): received nullptr");