Searched refs:fill_n (Results 1 – 16 of 16) sorted by relevance
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.fill/ |
D | fill_n.pass.cpp | 28 assert(std::fill_n(Iter(ca), n, char(1)) == std::next(Iter(ca), n)); in test_char() 41 assert(std::fill_n(Iter(ia), n, 1) == std::next(Iter(ia), n)); in test_int() 53 assert(std::fill_n(ia, n, static_cast<char>(1)) == std::next(ia, n)); in test_int_array() 72 assert(std::fill_n(ia, n, source()) == std::next(ia, n)); in test_int_array_struct_source() 90 assert(std::fill_n(test1a, n, static_cast<char>(10)) == std::next(test1a, n)); in test_struct_array() 113 assert(std::fill_n(&a[0], 3, A('a')) == a+3); in test5() 131 std::fill_n(&foo[0], 5, Storage()); in test6()
|
/ndk/tests/device/test-stlport/unit/ |
D | fill_test.cpp | 49 fill_n(v.begin(), v.size(), 42); in filln1()
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | fill_test.cpp | 49 fill_n(v.begin(), v.size(), 42); in filln1()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | bitset | 218 _VSTD::fill_n(__first_, _N_words, __storage_type(0)); 809 _VSTD::fill_n(base::__make_iter(0), __pos, false); 819 _VSTD::fill_n(base::__make_iter(_Size - __pos), __pos, false); 828 _VSTD::fill_n(base::__make_iter(0), _Size, true); 851 _VSTD::fill_n(base::__make_iter(0), _Size, false);
|
D | array | 141 {_VSTD::fill_n(__elems_, _Size, __u);}
|
D | vector | 1421 _VSTD::fill_n(this->__begin_, _VSTD::min(__n, __s), __u); 1855 _VSTD::fill_n(__p, __n, *__xr); 2526 _VSTD::fill_n(__make_iter(__old_size), __n, __x); 2881 _VSTD::fill_n(begin(), __n, __x); 3031 _VSTD::fill_n(__r, __n, __x); 3169 _VSTD::fill_n(__r, __n, __x);
|
D | __bit_reference | 319 // fill_n 384 fill_n(__bit_iterator<_Cp, false> __first, typename _Cp::size_type __n, bool __value_) 402 _VSTD::fill_n(__first, static_cast<typename _Cp::size_type>(__last - __first), __value_);
|
D | deque | 1621 _VSTD::fill_n(__base::begin(), __base::size(), __v); 1626 __erase_to_end(_VSTD::fill_n(__base::begin(), __n, __v)); 2064 _VSTD::fill_n(__old_begin, __n, *__vt); 2090 _VSTD::fill_n(__old_end - __n, __n, *__vt);
|
D | algorithm | 224 fill_n(OutputIterator first, Size n, const T& value); 2013 // fill_n 2044 fill_n(_OutputIterator __first, _Size __n, const _Tp& __value_) 2065 _VSTD::fill_n(__first, __last - __first, __value_);
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/ |
D | array.hpp | 188 std::fill_n(begin(),size(),value); in fill()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/experimental/ |
D | dynarray | 216 …inline _LIBCPP_INLINE_VISIBILITY void fill(const value_type& __v) { fill_n(begin(), __size_, __v);…
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _algobase.h | 511 inline void fill_n(_OutputIter __first, _Size __n, const _Tp& __val) { in fill_n() function
|
D | _bvector.h | 775 fill_n(__i, __n, __x);
|
D | _valarray.h | 145 fill_n(this->_M_first, this->_M_size, __x);
|
/ndk/tests/device/test-libc++-static-full/jni/ |
D | Android.mk | 146 $(call gen-test, algorithms/alg.modifying.operations/alg.fill/fill_n)
|
/ndk/tests/device/test-libc++-shared-full/jni/ |
D | Android.mk | 155 $(call gen-test, algorithms/alg.modifying.operations/alg.fill/fill_n)
|