Home
last modified time | relevance | path

Searched refs:find_last_of (Results 1 – 11 of 11) sorted by relevance

/reactos/sdk/lib/3rdparty/stlport/test/unit/
H A Dstring_test.cpp65 CPPUNIT_TEST(find_last_of);
124 void find_last_of();
781 void StringTest::find_last_of() in find_last_of() function in StringTest
786 CPPUNIT_ASSERT( s.find_last_of("abcde") == 26 ); in find_last_of()
790 CPPUNIT_CHECK( test.find_last_of( "a", 2, 1 ) == 2 ); in find_last_of()
791 CPPUNIT_CHECK( test.find_last_of( "a", 1, 1 ) == 0 ); in find_last_of()
792 CPPUNIT_CHECK( test.find_last_of( "a", 0, 1 ) == 0 ); in find_last_of()
794 CPPUNIT_CHECK( test.find_last_of( 'a', 2 ) == 2 ); in find_last_of()
795 CPPUNIT_CHECK( test.find_last_of( 'a', 1 ) == 0 ); in find_last_of()
796 CPPUNIT_CHECK( test.find_last_of( 'a', 0 ) == 0 ); in find_last_of()
/reactos/sdk/include/c++/stlport/stl/
H A D_string_sum.h208 size_type find_last_of(const _BString& __s, size_type __pos = _BString::npos) const
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
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 in find_last_of() function
213 { return _M_get_storage().find_last_of(__s, __pos, __n); } in find_last_of()
214 size_type find_last_of(_CharT __c, size_type __pos = _BString::npos) const
H A D_string.h988 size_type find_last_of(const _Self& __s, size_type __pos = npos) const
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
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
H A D_string.c496 basic_string<_CharT,_Traits,_Alloc> ::find_last_of(const _CharT* __s, size_type __pos, in find_last_of() function
/reactos/sdk/include/c++/stlport/stl/debug/
H A D_string.h743 size_type find_last_of(const _Self& __s, size_type __pos = npos) const
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 {
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 { in find_last_of() function
753 return _M_non_dbg_impl.find_last_of(__s, __pos, __n); in find_last_of()
755 size_type find_last_of(_CharT __c, size_type __pos = npos) const
/reactos/sdk/tools/hhpcomp/
H A Dhhpcomp.cpp57 int prefixlen = absolute_name.find_last_of('/'); in main()
/reactos/base/applications/drwtsn32/
H A Ddrwtsn32.cpp67 std::string::size_type pos = data.ProcessPath.find_last_of(L"\\/"); in UpdateFromEvent()
/reactos/modules/rostests/rosautotest/
H A DCWineTest.cpp245 UnderscorePosition = m_CurrentFile.find_last_of('_'); in GetNextTestInfo()
/reactos/sdk/tools/cabman/
H A Dcabinet.cxx1612 auto sep = szSearchPath.find_last_of(DIR_SEPARATOR_CHAR); in CreateSimpleCabinet()
/reactos/sdk/lib/3rdparty/stlport/etc/
H A DChangeLog1359 * stlport/stl/_string.c: fix bugs in string rfind, find_last_of,
1376 * test/unit/string_test.cpp: test for bug in find_last_of,
1491 the find_first_of trick below in string::find_first_of, find_last_of,
H A DChangeLog-5.1114 * stlport/stl/_string.c: fix bugs in string rfind, find_last_of,