Searched refs:raw_storage_iterator (Results 1 – 5 of 5) sorted by relevance
32 class _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX17 raw_storage_iterator51 _LIBCPP_INLINE_VISIBILITY explicit raw_storage_iterator(_OutputIterator __x) : __x_(__x) {} in raw_storage_iterator() function52 _LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator*() {return *this;}53 _LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator=(const _Tp& __element)56 _LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator=(_Tp&& __element)59 _LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator++() {++__x_; return *this;}60 _LIBCPP_INLINE_VISIBILITY raw_storage_iterator operator++(int)61 {raw_storage_iterator __t(*this); ++__x_; return __t;}
156 class raw_storage_iterator // deprecated in C++17, removed in C++20167 explicit raw_storage_iterator(OutputIterator x);168 raw_storage_iterator& operator*();169 raw_storage_iterator& operator=(const T& element);170 raw_storage_iterator& operator++();171 raw_storage_iterator operator++(int);681 #include <__memory/raw_storage_iterator.h>
560 module raw_storage_iterator { private header "__memory/raw_storage_iterator.h" }
431 MEM_HEADERS+= raw_storage_iterator.h
4000 OLD_FILES+=usr/include/c++/v1/__memory/raw_storage_iterator.h