/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.nonmodifying/alg.find.first.of/ |
D | find_first_of.pass.cpp | 28 assert(std::find_first_of(input_iterator<const int*>(ia), in main() 34 assert(std::find_first_of(input_iterator<const int*>(ia), in main() 39 assert(std::find_first_of(input_iterator<const int*>(ia), in main() 44 assert(std::find_first_of(input_iterator<const int*>(ia), in main()
|
D | find_first_of_pred.pass.cpp | 30 assert(std::find_first_of(input_iterator<const int*>(ia), in main() 37 assert(std::find_first_of(input_iterator<const int*>(ia), in main() 43 assert(std::find_first_of(input_iterator<const int*>(ia), in main() 49 assert(std::find_first_of(input_iterator<const int*>(ia), in main()
|
/ndk/tests/device/test-stlport/unit/ |
D | alg_test.cpp | 230 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end()); in find_first_of_test() 242 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end()); in find_first_of_test() 260 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end()); in find_first_of_test() 272 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end()); in find_first_of_test() 286 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); in find_first_of_test() 300 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); in find_first_of_test() 315 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); in find_first_of_test() 329 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); in find_first_of_test() 359 …map<int, string>::iterator i = find_first_of(m.begin(), m.end(), values.begin(), values.end(), Val… in find_first_of_nsc_test()
|
D | string_test.cpp | 655 CPPUNIT_ASSERT( s.find_first_of("abcde") == 2 ); in find()
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | alg_test.cpp | 230 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end()); in find_first_of_test() 242 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end()); in find_first_of_test() 260 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end()); in find_first_of_test() 272 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end()); in find_first_of_test() 286 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); in find_first_of_test() 300 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); in find_first_of_test() 315 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); in find_first_of_test() 329 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); in find_first_of_test() 359 …map<int, string>::iterator i = find_first_of(m.begin(), m.end(), values.begin(), values.end(), Val… in find_first_of_nsc_test()
|
D | string_test.cpp | 655 CPPUNIT_ASSERT( s.find_first_of("abcde") == 2 ); in find()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_find.first.of/ |
D | char_size.pass.cpp | 24 assert(s.find_first_of(c, pos) == x); in test() 33 assert(s.find_first_of(c) == x); in test()
|
D | pointer_size.pass.cpp | 24 assert(s.find_first_of(str, pos) == x); in test() 33 assert(s.find_first_of(str) == x); in test()
|
D | string_size.pass.cpp | 23 assert(s.find_first_of(str, pos) == x); in test() 32 assert(s.find_first_of(str) == x); in test()
|
D | pointer_size_size.pass.cpp | 24 assert(s.find_first_of(str, pos, n) == x); in test()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _string_sum.h | 199 size_type find_first_of(const _BString& __s, size_type __pos = 0) const 200 { return _M_get_storage().find_first_of(__s, __pos); } 201 size_type find_first_of(const _CharT* __s, size_type __pos = 0) const 202 { return _M_get_storage().find_first_of(__s, __pos); } 203 size_type find_first_of(const _CharT* __s, size_type __pos, size_type __n) const in find_first_of() function 204 { return _M_get_storage().find_first_of(__s, __pos, __n); } in find_first_of() 205 size_type find_first_of(_CharT __c, size_type __pos = 0) const
|
D | _string.h | 976 size_type find_first_of(const _Self& __s, size_type __pos = 0) const 977 { return find_first_of(__s._M_Start(), __pos, __s.size()); } 979 size_type find_first_of(const _CharT* __s, size_type __pos = 0) const 980 { _STLP_FIX_LITERAL_BUG(__s) return find_first_of(__s, __pos, _Traits::length(__s)); } 982 size_type find_first_of(const _CharT* __s, size_type __pos, size_type __n) const; 984 size_type find_first_of(_CharT __c, size_type __pos = 0) const
|
D | _algo.h | 136 inline _InputIter find_first_of(_InputIter __first1, _InputIter __last1, in find_first_of() function 145 find_first_of(_InputIter __first1, _InputIter __last1, in find_first_of() function
|
D | _string.c | 482 basic_string<_CharT,_Traits,_Alloc> ::find_first_of(const _CharT* __s, size_type __pos, in find_first_of() function
|
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/ |
D | _string.h | 727 size_type find_first_of(const _Self& __s, size_type __pos = 0) const 728 { return _M_non_dbg_impl.find_first_of(__s._M_non_dbg_impl, __pos); } 729 size_type find_first_of(const _CharT* __s, size_type __pos = 0) const { 732 return _M_non_dbg_impl.find_first_of(__s, __pos); 734 size_type find_first_of(const _CharT* __s, size_type __pos, size_type __n) const { in find_first_of() function 737 return _M_non_dbg_impl.find_first_of(__s, __pos, __n); in find_first_of() 739 size_type find_first_of(_CharT __c, size_type __pos = 0) const 740 { return _M_non_dbg_impl.find_first_of(__c, __pos); }
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | string | 241 size_type find_first_of(const basic_string& str, size_type pos = 0) const noexcept; 242 size_type find_first_of(const value_type* s, size_type pos, size_type n) const noexcept; 243 size_type find_first_of(const value_type* s, size_type pos = 0) const noexcept; 244 size_type find_first_of(value_type c, size_type pos = 0) const noexcept; 1071 const _CharT* __r = _VSTD::find_first_of 1668 size_type find_first_of(const basic_string& __str, size_type __pos = 0) const _NOEXCEPT; 1669 size_type find_first_of(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT; 1671 size_type find_first_of(const value_type* __s, size_type __pos = 0) const _NOEXCEPT; 1673 size_type find_first_of(value_type __c, size_type __pos = 0) const _NOEXCEPT; 3507 // find_first_of [all …]
|
D | algorithm | 62 find_first_of(ForwardIterator1 first1, ForwardIterator1 last1, 67 find_first_of(ForwardIterator1 first1, ForwardIterator1 last1, 1041 // find_first_of 1045 find_first_of(_ForwardIterator1 __first1, _ForwardIterator1 __last1, 1058 find_first_of(_ForwardIterator1 __first1, _ForwardIterator1 __last1, 1063 return _VSTD::find_first_of(__first1, __last1, __first2, __last2, __equal_to<__v1, __v2>());
|
/ndk/tests/device/test-libc++-static-full/jni/ |
D | Android.mk | 194 $(call gen-test, algorithms/alg.nonmodifying/alg.find.first.of/find_first_of)
|
/ndk/tests/device/test-libc++-shared-full/jni/ |
D | Android.mk | 203 $(call gen-test, algorithms/alg.nonmodifying/alg.find.first.of/find_first_of)
|