Home
last modified time | relevance | path

Searched refs:find_last_not_of (Results 1 – 12 of 12) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_find.last.not.of/
Dchar_size.pass.cpp24 assert(s.find_last_not_of(c, pos) == x); in test()
33 assert(s.find_last_not_of(c) == x); in test()
Dpointer_size.pass.cpp24 assert(s.find_last_not_of(str, pos) == x); in test()
33 assert(s.find_last_not_of(str) == x); in test()
Dstring_size.pass.cpp23 assert(s.find_last_not_of(str, pos) == x); in test()
32 assert(s.find_last_not_of(str) == x); in test()
Dpointer_size_size.pass.cpp24 assert(s.find_last_not_of(str, pos, n) == x); in test()
/ndk/tests/device/test-stlport/unit/
Dstring_test.cpp66 CPPUNIT_TEST(find_last_not_of);
125 void find_last_not_of();
799 void StringTest::find_last_not_of() in find_last_not_of() function in StringTest
804 CPPUNIT_ASSERT( s.find_last_not_of("ehortw ") == 15 ); in find_last_not_of()
808 CPPUNIT_CHECK( test.find_last_not_of( "a", 2, 1 ) == 1 ); in find_last_not_of()
809 CPPUNIT_CHECK( test.find_last_not_of( "b", 2, 1 ) == 2 ); in find_last_not_of()
810 CPPUNIT_CHECK( test.find_last_not_of( "a", 1, 1 ) == 1 ); in find_last_not_of()
811 CPPUNIT_CHECK( test.find_last_not_of( "b", 1, 1 ) == 0 ); in find_last_not_of()
812 CPPUNIT_CHECK( test.find_last_not_of( "a", 0, 1 ) == string::npos ); in find_last_not_of()
813 CPPUNIT_CHECK( test.find_last_not_of( "b", 0, 1 ) == 0 ); in find_last_not_of()
[all …]
/ndk/tests/device/test-gnustl-full/unit/
Dstring_test.cpp66 CPPUNIT_TEST(find_last_not_of);
125 void find_last_not_of();
799 void StringTest::find_last_not_of() in find_last_not_of() function in StringTest
804 CPPUNIT_ASSERT( s.find_last_not_of("ehortw ") == 15 ); in find_last_not_of()
808 CPPUNIT_CHECK( test.find_last_not_of( "a", 2, 1 ) == 1 ); in find_last_not_of()
809 CPPUNIT_CHECK( test.find_last_not_of( "b", 2, 1 ) == 2 ); in find_last_not_of()
810 CPPUNIT_CHECK( test.find_last_not_of( "a", 1, 1 ) == 1 ); in find_last_not_of()
811 CPPUNIT_CHECK( test.find_last_not_of( "b", 1, 1 ) == 0 ); in find_last_not_of()
812 CPPUNIT_CHECK( test.find_last_not_of( "a", 0, 1 ) == string::npos ); in find_last_not_of()
813 CPPUNIT_CHECK( test.find_last_not_of( "b", 0, 1 ) == 0 ); in find_last_not_of()
[all …]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
Dalgorithm.hpp179 find_last_not_of( BidirectionalIterator1 first1, BidirectionalIterator1 last1, in find_last_not_of() function
203 find_last_not_of( BidirectionalIterator1 first1, BidirectionalIterator1 last1, in find_last_not_of() function
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_string_sum.h226 size_type find_last_not_of(const _BString& __s, size_type __pos = _BString::npos) const
227 { return _M_get_storage().find_last_not_of(__s, __pos); }
228 size_type find_last_not_of(const _CharT* __s, size_type __pos =_BString:: npos) const
229 { return _M_get_storage().find_last_not_of(__s, __pos); }
230 size_type find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const in find_last_not_of() function
231 { return _M_get_storage().find_last_not_of(__s, __pos, __n); } in find_last_not_of()
232 size_type find_last_not_of(_CharT __c, size_type __pos = _BString::npos) const
233 { return _M_get_storage().find_last_not_of(__c, __pos); }
D_string.h1011 size_type find_last_not_of(const _Self& __s, size_type __pos = npos) const
1012 { return find_last_not_of(__s._M_Start(), __pos, __s.size()); }
1014 size_type find_last_not_of(const _CharT* __s, size_type __pos = npos) const
1015 { _STLP_FIX_LITERAL_BUG(__s) return find_last_not_of(__s, __pos, _Traits::length(__s)); }
1017 size_type find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const;
1019 size_type find_last_not_of(_CharT __c, size_type __pos = npos) const;
D_string.c540 basic_string<_CharT,_Traits,_Alloc>::find_last_not_of(const _CharT* __s, size_type __pos, size_type… in find_last_not_of() function
559 basic_string<_CharT, _Traits, _Alloc>::find_last_not_of(_CharT __c, size_type __pos) const in find_last_not_of() function
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/
D_string.h775 size_type find_last_not_of(const _Self& __s, size_type __pos = npos) const
776 { return _M_non_dbg_impl.find_last_not_of(__s._M_non_dbg_impl, __pos); }
777 size_type find_last_not_of(const _CharT* __s, size_type __pos = npos) const {
780 return _M_non_dbg_impl.find_last_not_of(__s, __pos);
782 size_type find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const { in find_last_not_of() function
785 return _M_non_dbg_impl.find_last_not_of(__s, __pos, __n); in find_last_not_of()
787 size_type find_last_not_of(_CharT __c, size_type __pos = npos) const
788 { return _M_non_dbg_impl.find_last_not_of(__c, __pos); }
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dstring256 size_type find_last_not_of(const basic_string& str, size_type pos = npos) const noexcept;
257 size_type find_last_not_of(const value_type* s, size_type pos, size_type n) const noexcept;
258 size_type find_last_not_of(const value_type* s, size_type pos = npos) const noexcept;
259 size_type find_last_not_of(value_type c, size_type pos = npos) const noexcept;
1692 size_type find_last_not_of(const basic_string& __str, size_type __pos = npos) const _NOEXCEPT;
1693 … size_type find_last_not_of(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT;
1695 size_type find_last_not_of(const value_type* __s, size_type __pos = npos) const _NOEXCEPT;
1697 size_type find_last_not_of(value_type __c, size_type __pos = npos) const _NOEXCEPT;
3637 // find_last_not_of
3641 basic_string<_CharT, _Traits, _Allocator>::find_last_not_of(const value_type* __s,
[all …]