Home
last modified time | relevance | path

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

/src/contrib/llvm-project/libcxx/include/__memory/
H A Draw_storage_iterator.h34 class _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX17 raw_storage_iterator
55 _LIBCPP_HIDE_FROM_ABI explicit raw_storage_iterator(_OutputIterator __x) : __x_(__x) {} in raw_storage_iterator() function
56 _LIBCPP_HIDE_FROM_ABI raw_storage_iterator& operator*() { return *this; }
57 _LIBCPP_HIDE_FROM_ABI raw_storage_iterator& operator=(const _Tp& __element) {
62 _LIBCPP_HIDE_FROM_ABI raw_storage_iterator& operator=(_Tp&& __element) {
67 _LIBCPP_HIDE_FROM_ABI raw_storage_iterator& operator++() {
71 _LIBCPP_HIDE_FROM_ABI raw_storage_iterator operator++(int) {
72 raw_storage_iterator __t(*this);
/src/contrib/llvm-project/libcxx/include/
H A Dmemory167 class raw_storage_iterator // deprecated in C++17, removed in C++20
178 explicit raw_storage_iterator(OutputIterator x);
179 raw_storage_iterator& operator*();
180 raw_storage_iterator& operator=(const T& element);
181 raw_storage_iterator& operator++();
182 raw_storage_iterator operator++(int);
947 #include <__memory/raw_storage_iterator.h>
H A Dmodule.modulemap1534 …rivate_memory_raw_storage_iterator [system] { header "__memory/raw_storage_iterator.h" }
/src/lib/libc++/
H A DMakefile945 MEM_HEADERS+= raw_storage_iterator.h
H A Dlibcxx.imp541 { include: [ "<__memory/raw_storage_iterator.h>", "private", "<memory>", "public" ] },
/src/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdSymbolMap.inc2439 SYMBOL(raw_storage_iterator, std::, <memory>)