Home
last modified time | relevance | path

Searched defs:auto_ptr (Results 1 – 6 of 6) sorted by relevance

/llvm-project/libcxx/include/__memory/
H A Dauto_ptr.h37 _LIBCPP_HIDE_FROM_ABI auto_ptr(auto_ptr& __p) _NOEXCEPT : __ptr_(__p.release()) {} in auto_ptr() function
39 _LIBCPP_HIDE_FROM_ABI auto_ptr(auto_ptr<_Up>& __p) _NOEXCEPT : __ptr_(__p.release()) {} in auto_ptr() function
69 _LIBCPP_HIDE_FROM_ABI auto_ptr(auto_ptr_ref<_Tp> __p) _NOEXCEPT : __ptr_(__p.__ptr_) {} in auto_ptr() function
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/replace-auto-ptr/
H A Dmemory.h17 template <class Y> auto_ptr(auto_ptr<Y> &) throw() {} in auto_ptr() function
/llvm-project/clang/test/CodeGenCXX/
H A D2010-07-23-DeclLoc.cpp14 template<typename _Tp> class auto_ptr { class
18 auto_ptr(element_type* __p = 0) throw() : _M_ptr(__p) { } in auto_ptr() function in std::auto_ptr
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/modernize/
H A Dreplace-auto-ptr.cpp67 template <typename T> struct auto_ptr {}; struct
/llvm-project/clang/test/SemaCXX/
H A Dconversion-function.cpp266 struct auto_ptr { struct
267 auto_ptr_refPR7055::auto_ptr global() argument
[all...]
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Dunhandled-self-assignment.cpp26 class auto_ptr { global() class