Searched refs:find_last_of (Results 1 - 6 of 6) sorted by relevance

/ndk/tests/device/test-gnustl-full/unit/
H A Dstring_test.cpp65 CPPUNIT_TEST(find_last_of);
124 void find_last_of();
781 void StringTest::find_last_of() function in class:StringTest
786 CPPUNIT_ASSERT( s.find_last_of("abcde") == 26 );
790 CPPUNIT_CHECK( test.find_last_of( "a", 2, 1 ) == 2 );
791 CPPUNIT_CHECK( test.find_last_of( "a", 1, 1 ) == 0 );
792 CPPUNIT_CHECK( test.find_last_of( "a", 0, 1 ) == 0 );
794 CPPUNIT_CHECK( test.find_last_of( 'a', 2 ) == 2 );
795 CPPUNIT_CHECK( test.find_last_of( 'a', 1 ) == 0 );
796 CPPUNIT_CHECK( test.find_last_of( '
[all...]
/ndk/tests/device/test-stlport/unit/
H A Dstring_test.cpp65 CPPUNIT_TEST(find_last_of);
124 void find_last_of();
781 void StringTest::find_last_of() function in class:StringTest
786 CPPUNIT_ASSERT( s.find_last_of("abcde") == 26 );
790 CPPUNIT_CHECK( test.find_last_of( "a", 2, 1 ) == 2 );
791 CPPUNIT_CHECK( test.find_last_of( "a", 1, 1 ) == 0 );
792 CPPUNIT_CHECK( test.find_last_of( "a", 0, 1 ) == 0 );
794 CPPUNIT_CHECK( test.find_last_of( 'a', 2 ) == 2 );
795 CPPUNIT_CHECK( test.find_last_of( 'a', 1 ) == 0 );
796 CPPUNIT_CHECK( test.find_last_of( '
[all...]
/ndk/sources/cxx-stl/stlport/stlport/stl/
H A D_string_sum.h208 size_type find_last_of(const _BString& __s, size_type __pos = _BString::npos) const function in class:__bstr_sum
209 { return _M_get_storage().find_last_of(__s, __pos); }
210 size_type find_last_of(const _CharT* __s, size_type __pos = _BString::npos) const function in class:__bstr_sum
211 { return _M_get_storage().find_last_of(__s, __pos); }
212 size_type find_last_of(const _CharT* __s, size_type __pos, size_type __n) const function in class:__bstr_sum
213 { return _M_get_storage().find_last_of(__s, __pos, __n); }
214 size_type find_last_of(_CharT __c, size_type __pos = _BString::npos) const function in class:__bstr_sum
H A D_string.h987 public: // find_last_of
988 size_type find_last_of(const _Self& __s, size_type __pos = npos) const function in class:basic_string
989 { return find_last_of(__s._M_Start(), __pos, __s.size()); }
991 size_type find_last_of(const _CharT* __s, size_type __pos = npos) const function in class:basic_string
992 { _STLP_FIX_LITERAL_BUG(__s) return find_last_of(__s, __pos, _Traits::length(__s)); }
994 size_type find_last_of(const _CharT* __s, size_type __pos, size_type __n) const;
996 size_type find_last_of(_CharT __c, size_type __pos = npos) const function in class:basic_string
H A D_string.c496 basic_string<_CharT,_Traits,_Alloc> ::find_last_of(const _CharT* __s, size_type __pos, function in class:_Alloc
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/
H A D_string.h742 // find_last_of
743 size_type find_last_of(const _Self& __s, size_type __pos = npos) const function in class:basic_string
744 { return _M_non_dbg_impl.find_last_of(__s._M_non_dbg_impl, __pos); }
745 size_type find_last_of(const _CharT* __s, size_type __pos = npos) const { function in class:basic_string
748 return _M_non_dbg_impl.find_last_of(__s, __pos);
750 size_type find_last_of(const _CharT* __s, size_type __pos, size_type __n) const { function in class:basic_string
753 return _M_non_dbg_impl.find_last_of(__s, __pos, __n);
755 size_type find_last_of(_CharT __c, size_type __pos = npos) const function in class:basic_string

Completed in 39 milliseconds