Home
last modified time | relevance | path

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/
Dfill_n.pass.cpp28 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/
Dfill_test.cpp49 fill_n(v.begin(), v.size(), 42); in filln1()
/ndk/tests/device/test-gnustl-full/unit/
Dfill_test.cpp49 fill_n(v.begin(), v.size(), 42); in filln1()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dbitset218 _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);
Darray141 {_VSTD::fill_n(__elems_, _Size, __u);}
Dvector1421 _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_reference319 // 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_);
Ddeque1621 _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);
Dalgorithm224 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/
Darray.hpp188 std::fill_n(begin(),size(),value); in fill()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/experimental/
Ddynarray216 …inline _LIBCPP_INLINE_VISIBILITY void fill(const value_type& __v) { fill_n(begin(), __size_, __v);…
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_algobase.h511 inline void fill_n(_OutputIter __first, _Size __n, const _Tp& __val) { in fill_n() function
D_bvector.h775 fill_n(__i, __n, __x);
D_valarray.h145 fill_n(this->_M_first, this->_M_size, __x);
/ndk/tests/device/test-libc++-static-full/jni/
DAndroid.mk146 $(call gen-test, algorithms/alg.modifying.operations/alg.fill/fill_n)
/ndk/tests/device/test-libc++-shared-full/jni/
DAndroid.mk155 $(call gen-test, algorithms/alg.modifying.operations/alg.fill/fill_n)