/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_find.last.of/ |
D | char_size.pass.cpp | 24 assert(s.find_last_of(c, pos) == x); in test() 33 assert(s.find_last_of(c) == x); in test()
|
D | pointer_size.pass.cpp | 24 assert(s.find_last_of(str, pos) == x); in test() 33 assert(s.find_last_of(str) == x); in test()
|
D | string_size.pass.cpp | 23 assert(s.find_last_of(str, pos) == x); in test() 32 assert(s.find_last_of(str) == x); in test()
|
D | pointer_size_size.pass.cpp | 24 assert(s.find_last_of(str, pos, n) == x); in test()
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/ |
D | algorithm.hpp | 132 find_last_of( BidirectionalIterator1 first1, BidirectionalIterator1 last1, in find_last_of() function 156 find_last_of( BidirectionalIterator1 first1, BidirectionalIterator1 last1, in find_last_of() function
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | string_test.cpp | 65 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()
|
/ndk/tests/device/test-stlport/unit/ |
D | string_test.cpp | 65 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()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _string_sum.h | 208 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
|
D | _string.h | 988 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
|
D | _string.c | 496 basic_string<_CharT,_Traits,_Alloc> ::find_last_of(const _CharT* __s, size_type __pos, in find_last_of() function
|
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/ |
D | _string.h | 743 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
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/cla/ |
D | parser.ipp | 103 dstring::size_type pos = m_program_name.find_last_of( BOOST_RT_PARAM_LITERAL( "/\\" ) );
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | string | 246 size_type find_last_of(const basic_string& str, size_type pos = npos) const noexcept; 247 size_type find_last_of(const value_type* s, size_type pos, size_type n) const noexcept; 248 size_type find_last_of(const value_type* s, size_type pos = npos) const noexcept; 249 size_type find_last_of(value_type c, size_type pos = npos) const noexcept; 1676 size_type find_last_of(const basic_string& __str, size_type __pos = npos) const _NOEXCEPT; 1677 size_type find_last_of(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT; 1679 size_type find_last_of(const value_type* __s, size_type __pos = npos) const _NOEXCEPT; 1681 size_type find_last_of(value_type __c, size_type __pos = npos) const _NOEXCEPT; 3550 // find_last_of 3554 basic_string<_CharT, _Traits, _Allocator>::find_last_of(const value_type* __s, [all …]
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/ |
D | debug.ipp | 312 str_t::iterator it = unit_test::find_last_of( dsi.binary_path.begin(), dsi.binary_path.end(),
|