Lines Matching refs:find_first_of
140 constexpr size_type find_first_of(basic_string_view s, size_type pos = 0) const noexcept;
141 constexpr size_type find_first_of(charT c, size_type pos = 0) const noexcept;
142 constexpr size_type find_first_of(const charT* s, size_type pos, size_type n) const;
143 constexpr size_type find_first_of(const charT* s, size_type pos = 0) const;
477 // find_first_of
479 size_type find_first_of(basic_string_view __s, size_type __pos = 0) const _NOEXCEPT
481 …_LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find_first_of(): received n…
487 size_type find_first_of(_CharT __c, size_type __pos = 0) const _NOEXCEPT
491 size_type find_first_of(const _CharT* __s, size_type __pos, size_type __n) const
493 … _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find_first_of(): received nullptr");
499 size_type find_first_of(const _CharT* __s, size_type __pos=0) const
501 _LIBCPP_ASSERT(__s != nullptr, "string_view::find_first_of(): received nullptr");