Home
last modified time | relevance | path

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

/external/clang/test/CodeGenCXX/
Ddebug-info-template-array.cpp4 struct unique_ptr { struct
5 unique_ptr() {} in unique_ptr() function
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
/external/clang/test/SemaCXX/
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