Searched defs:find_first_not_of (Results 1 - 5 of 5) sorted by relevance

/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
H A Dalgorithm.hpp85 find_first_not_of( ForwardIterator1 first1, ForwardIterator1 last1, function in namespace:boost::unit_test
109 find_first_not_of( ForwardIterator1 first1, ForwardIterator1 last1, function in namespace:boost::unit_test
/ndk/sources/cxx-stl/stlport/stlport/stl/
H A D_string.c513 basic_string<_CharT,_Traits,_Alloc> ::find_first_not_of(const _CharT* __s, size_type __pos, function in class:_Alloc
528 basic_string<_CharT,_Traits,_Alloc> ::find_first_not_of(_CharT __c, size_type __pos) const { function in class:_Alloc
H A D_string_sum.h217 size_type find_first_not_of(const _BString& __s, size_type __pos = 0) const function in class:__bstr_sum
218 { return _M_get_storage().find_first_not_of(__s, __pos); }
219 size_type find_first_not_of(const _CharT* __s, size_type __pos = 0) const function in class:__bstr_sum
220 { return _M_get_storage().find_first_not_of(__s, __pos); }
221 size_type find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const function in class:__bstr_sum
222 { return _M_get_storage().find_first_not_of(__s, __pos, __n); }
223 size_type find_first_not_of(_CharT __c, size_type __pos = 0) const function in class:__bstr_sum
224 { return _M_get_storage().find_first_not_of(__c, __pos); }
H A D_string.h999 public: // find_first_not_of
1000 size_type find_first_not_of(const _Self& __s, size_type __pos = 0) const function in class:basic_string
1001 { return find_first_not_of(__s._M_Start(), __pos, __s.size()); }
1003 size_type find_first_not_of(const _CharT* __s, size_type __pos = 0) const function in class:basic_string
1004 { _STLP_FIX_LITERAL_BUG(__s) return find_first_not_of(__s, __pos, _Traits::length(__s)); }
1006 size_type find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const;
1008 size_type find_first_not_of(_CharT __c, size_type __pos = 0) const;
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/
H A D_string.h758 // find_first_not_of
759 size_type find_first_not_of(const _Self& __s, size_type __pos = 0) const function in class:basic_string
760 { return _M_non_dbg_impl.find_first_not_of(__s._M_non_dbg_impl, __pos); }
761 size_type find_first_not_of(const _CharT* __s, size_type __pos = 0) const { function in class:basic_string
764 return _M_non_dbg_impl.find_first_not_of(__s, __pos);
766 size_type find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const { function in class:basic_string
769 return _M_non_dbg_impl.find_first_not_of(__s, __pos, __n);
771 size_type find_first_not_of(_CharT __c, size_type __pos = 0) const function in class:basic_string
772 { return _M_non_dbg_impl.find_first_not_of(__c, __pos); }

Completed in 108 milliseconds