Home
last modified time | relevance | path

Searched refs:raw_storage_iterator (Results 1 – 6 of 6) sorted by relevance

/ndk/sources/cxx-stl/stlport/stlport/stl/
D_raw_storage_iter.h40 class raw_storage_iterator
53 explicit raw_storage_iterator(_ForwardIterator __x) : _M_iter(__x) {} in raw_storage_iterator() function
54 raw_storage_iterator<_ForwardIterator, _Tp>& operator*() { return *this; }
55 raw_storage_iterator<_ForwardIterator, _Tp>& operator=(const _Tp& __element) {
59 raw_storage_iterator<_ForwardIterator, _Tp>& operator++() {
63 raw_storage_iterator<_ForwardIterator, _Tp> operator++(int) {
64 raw_storage_iterator<_ForwardIterator, _Tp> __tmp = *this;
72 inline output_iterator_tag iterator_category(const raw_storage_iterator<_ForwardIterator, _Tp>&) { … in iterator_category()
D_abbrevs.h37 # define raw_storage_iterator _rS__It macro
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/storage.iterator/
Draw_storag_iterator.pass.cpp35 std::raw_storage_iterator<A*, A> it((A*)&buffer); in main()
/ndk/tests/device/test-gnustl-full/unit/
Drawriter_test.cpp48 raw_storage_iterator<X*, X> r(p); in rawiter1()
/ndk/tests/device/test-stlport/unit/
Drawriter_test.cpp48 raw_storage_iterator<X*, X> r(p); in rawiter1()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dmemory146 class raw_storage_iterator
151 raw_storage_iterator&> // purposefully not C++03
154 explicit raw_storage_iterator(OutputIterator x);
155 raw_storage_iterator& operator*();
156 raw_storage_iterator& operator=(const T& element);
157 raw_storage_iterator& operator++();
158 raw_storage_iterator operator++(int);
1802 class _LIBCPP_TYPE_VIS_ONLY raw_storage_iterator
1807 raw_storage_iterator<_OutputIterator, _Tp>&> // purposefully not C++03
1812 _LIBCPP_INLINE_VISIBILITY explicit raw_storage_iterator(_OutputIterator __x) : __x_(__x) {}
[all …]