/ndk/tests/device/test-stlport/unit/ |
D | alg_test.cpp | 230 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end()); in find_first_of_test() 242 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end()); in find_first_of_test() 260 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end()); in find_first_of_test() 272 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end()); in find_first_of_test() 286 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); in find_first_of_test() 300 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); in find_first_of_test() 315 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); in find_first_of_test() 329 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); in find_first_of_test() 359 …map<int, string>::iterator i = find_first_of(m.begin(), m.end(), values.begin(), values.end(), Val… in find_first_of_nsc_test()
|
D | string_test.cpp | 655 CPPUNIT_ASSERT( s.find_first_of("abcde") == 2 ); in find()
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | alg_test.cpp | 230 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end()); in find_first_of_test() 242 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end()); in find_first_of_test() 260 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end()); in find_first_of_test() 272 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end()); in find_first_of_test() 286 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); in find_first_of_test() 300 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); in find_first_of_test() 315 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); in find_first_of_test() 329 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); in find_first_of_test() 359 …map<int, string>::iterator i = find_first_of(m.begin(), m.end(), values.begin(), values.end(), Val… in find_first_of_nsc_test()
|
D | string_test.cpp | 655 CPPUNIT_ASSERT( s.find_first_of("abcde") == 2 ); in find()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _string_sum.h | 199 size_type find_first_of(const _BString& __s, size_type __pos = 0) const 200 { return _M_get_storage().find_first_of(__s, __pos); } 201 size_type find_first_of(const _CharT* __s, size_type __pos = 0) const 202 { return _M_get_storage().find_first_of(__s, __pos); } 203 size_type find_first_of(const _CharT* __s, size_type __pos, size_type __n) const in find_first_of() function 204 { return _M_get_storage().find_first_of(__s, __pos, __n); } in find_first_of() 205 size_type find_first_of(_CharT __c, size_type __pos = 0) const
|
D | _string.h | 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
|
D | _algo.h | 136 inline _InputIter find_first_of(_InputIter __first1, _InputIter __last1, in find_first_of() function 145 find_first_of(_InputIter __first1, _InputIter __last1, in find_first_of() function
|
D | _string.c | 482 basic_string<_CharT,_Traits,_Alloc> ::find_first_of(const _CharT* __s, size_type __pos, in find_first_of() function
|
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/ |
D | _string.h | 727 size_type find_first_of(const _Self& __s, size_type __pos = 0) const 728 { return _M_non_dbg_impl.find_first_of(__s._M_non_dbg_impl, __pos); } 729 size_type find_first_of(const _CharT* __s, size_type __pos = 0) const { 732 return _M_non_dbg_impl.find_first_of(__s, __pos); 734 size_type find_first_of(const _CharT* __s, size_type __pos, size_type __n) const { in find_first_of() function 737 return _M_non_dbg_impl.find_first_of(__s, __pos, __n); in find_first_of() 739 size_type find_first_of(_CharT __c, size_type __pos = 0) const 740 { return _M_non_dbg_impl.find_first_of(__c, __pos); }
|