Home | History | Annotate | Download | only in stl

Lines Matching defs:find_first_of

975 public: // find_first_of
976 size_type find_first_of(const _Self& __s, size_type __pos = 0) const
977 { return find_first_of(__s._M_Start(), __pos, __s.size()); }
979 size_type find_first_of(const _CharT* __s, size_type __pos = 0) const
980 { _STLP_FIX_LITERAL_BUG(__s) return find_first_of(__s, __pos, _Traits::length(__s)); }
982 size_type find_first_of(const _CharT* __s, size_type __pos, size_type __n) const;
984 size_type find_first_of(_CharT __c, size_type __pos = 0) const