/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_find.first.not.of/ |
D | char_size.pass.cpp | 24 assert(s.find_first_not_of(c, pos) == x); in test() 33 assert(s.find_first_not_of(c) == x); in test()
|
D | pointer_size.pass.cpp | 24 assert(s.find_first_not_of(str, pos) == x); in test() 33 assert(s.find_first_not_of(str) == x); in test()
|
D | string_size.pass.cpp | 23 assert(s.find_first_not_of(str, pos) == x); in test() 32 assert(s.find_first_not_of(str) == x); in test()
|
D | pointer_size_size.pass.cpp | 24 assert(s.find_first_not_of(str, pos, n) == x); in test()
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/ |
D | algorithm.hpp | 85 find_first_not_of( ForwardIterator1 first1, ForwardIterator1 last1, in find_first_not_of() function 109 find_first_not_of( ForwardIterator1 first1, ForwardIterator1 last1, in find_first_not_of() function
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _string_sum.h | 217 size_type find_first_not_of(const _BString& __s, size_type __pos = 0) const 218 { return _M_get_storage().find_first_not_of(__s, __pos); } 219 size_type find_first_not_of(const _CharT* __s, size_type __pos = 0) const 220 { return _M_get_storage().find_first_not_of(__s, __pos); } 221 size_type find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const in find_first_not_of() function 222 { return _M_get_storage().find_first_not_of(__s, __pos, __n); } in find_first_not_of() 223 size_type find_first_not_of(_CharT __c, size_type __pos = 0) const 224 { return _M_get_storage().find_first_not_of(__c, __pos); }
|
D | _string.h | 1000 size_type find_first_not_of(const _Self& __s, size_type __pos = 0) const 1001 { return find_first_not_of(__s._M_Start(), __pos, __s.size()); } 1003 size_type find_first_not_of(const _CharT* __s, size_type __pos = 0) const 1004 { _STLP_FIX_LITERAL_BUG(__s) return find_first_not_of(__s, __pos, _Traits::length(__s)); } 1006 size_type find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const; 1008 size_type find_first_not_of(_CharT __c, size_type __pos = 0) const;
|
D | _string.c | 513 basic_string<_CharT,_Traits,_Alloc> ::find_first_not_of(const _CharT* __s, size_type __pos, in find_first_not_of() function 528 basic_string<_CharT,_Traits,_Alloc> ::find_first_not_of(_CharT __c, size_type __pos) const { in find_first_not_of() function
|
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/ |
D | _string.h | 759 size_type find_first_not_of(const _Self& __s, size_type __pos = 0) const 760 { return _M_non_dbg_impl.find_first_not_of(__s._M_non_dbg_impl, __pos); } 761 size_type find_first_not_of(const _CharT* __s, size_type __pos = 0) const { 764 return _M_non_dbg_impl.find_first_not_of(__s, __pos); 766 size_type find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const { in find_first_not_of() function 769 return _M_non_dbg_impl.find_first_not_of(__s, __pos, __n); in find_first_not_of() 771 size_type find_first_not_of(_CharT __c, size_type __pos = 0) const 772 { return _M_non_dbg_impl.find_first_not_of(__c, __pos); }
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | string | 251 size_type find_first_not_of(const basic_string& str, size_type pos = 0) const noexcept; 252 size_type find_first_not_of(const value_type* s, size_type pos, size_type n) const noexcept; 253 size_type find_first_not_of(const value_type* s, size_type pos = 0) const noexcept; 254 size_type find_first_not_of(value_type c, size_type pos = 0) const noexcept; 1684 size_type find_first_not_of(const basic_string& __str, size_type __pos = 0) const _NOEXCEPT; 1685 …size_type find_first_not_of(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT; 1687 size_type find_first_not_of(const value_type* __s, size_type __pos = 0) const _NOEXCEPT; 1689 size_type find_first_not_of(value_type __c, size_type __pos = 0) const _NOEXCEPT; 3593 // find_first_not_of 3597 basic_string<_CharT, _Traits, _Allocator>::find_first_not_of(const value_type* __s, [all …]
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | string_test.cpp | 657 CPPUNIT_ASSERT( s.find_first_not_of("enotw ") == 9 ); in find()
|
/ndk/tests/device/test-stlport/unit/ |
D | string_test.cpp | 657 CPPUNIT_ASSERT( s.find_first_not_of("enotw ") == 9 ); in find()
|