Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/libcxx/include/__memory/
H A Draw_storage_iterator.h32 class _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX17 raw_storage_iterator
51 _LIBCPP_INLINE_VISIBILITY explicit raw_storage_iterator(_OutputIterator __x) : __x_(__x) {} in raw_storage_iterator() function
52 _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;}
/freebsd-13.1/contrib/llvm-project/libcxx/include/
H A Dmemory156 class raw_storage_iterator // deprecated in C++17, removed in C++20
167 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>
H A Dmodule.modulemap560 module raw_storage_iterator { private header "__memory/raw_storage_iterator.h" }
/freebsd-13.1/lib/libc++/
H A DMakefile431 MEM_HEADERS+= raw_storage_iterator.h
/freebsd-13.1/tools/build/mk/
H A DOptionalObsoleteFiles.inc4000 OLD_FILES+=usr/include/c++/v1/__memory/raw_storage_iterator.h