Home
last modified time | relevance | path

Searched defs:unique_ptr (Results 1 – 4 of 4) sorted by relevance

/minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/
H A Ddebug-info-template-array.cpp4 struct unique_ptr { struct
5 unique_ptr() {} in unique_ptr() function
H A Dpr18635.cpp9 template <typename T> class unique_ptr { class
16 constexpr unique_ptr() noexcept : data() {} in unique_ptr() function in unique_ptr
17 explicit unique_ptr(T *p) noexcept : data() {} in unique_ptr() function in unique_ptr
H A Ddebug-info-template-partial-specialization.cpp22 template <class _Tp, class _Dp = default_delete<_Tp> > class unique_ptr class
25 unique_ptr(pointer __p, _Dp __d) {} in unique_ptr() function in unique_ptr
/minix3/external/bsd/llvm/dist/clang/test/SemaCXX/
H A Drval-references-examples.cpp4 class unique_ptr { class
10 unique_ptr() : ptr(0) { } in unique_ptr() function in unique_ptr
11 unique_ptr(unique_ptr &&other) : ptr(other.ptr) { other.ptr = 0; } in unique_ptr() function in unique_ptr
12 explicit unique_ptr(T *ptr) : ptr(ptr) { } in unique_ptr() function in unique_ptr