Lines Matching refs:find_first_of
241 size_type find_first_of(const basic_string& str, size_type pos = 0) const noexcept;
242 size_type find_first_of(const_pointer s, size_type pos, size_type n) const noexcept;
243 size_type find_first_of(const_pointer s, size_type pos = 0) const noexcept;
244 size_type find_first_of(value_type c, size_type pos = 0) const noexcept;
1424 size_type find_first_of(const basic_string& __str, size_type __pos = 0) const _NOEXCEPT;
1425 size_type find_first_of(const_pointer __s, size_type __pos, size_type __n) const _NOEXCEPT;
1427 size_type find_first_of(const_pointer __s, size_type __pos = 0) const _NOEXCEPT;
1429 size_type find_first_of(value_type __c, size_type __pos = 0) const _NOEXCEPT;
3211 // find_first_of
3215 basic_string<_CharT, _Traits, _Allocator>::find_first_of(const_pointer __s,
3226 const_pointer __r = _VSTD::find_first_of(__p + __pos, __p + __sz, __s,
3236 basic_string<_CharT, _Traits, _Allocator>::find_first_of(const basic_string& __str,
3239 return find_first_of(__str.data(), __pos, __str.size());
3245 basic_string<_CharT, _Traits, _Allocator>::find_first_of(const_pointer __s,
3251 return find_first_of(__s, __pos, traits_type::length(__s));
3257 basic_string<_CharT, _Traits, _Allocator>::find_first_of(value_type __c,