Searched defs:unique_ptr (Results 1 - 3 of 3) sorted by path

/external/clang/test/CodeGenCXX/
H A Ddebug-info-template-array.cpp4 struct unique_ptr { struct
5 unique_ptr() {} function in struct:unique_ptr
13 unique_ptr<Vertex<2>[]> v = unique_ptr<Vertex<2>[]>();
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) {} function in class:unique_ptr
28 unique_ptr<C> Ptr;
/external/clang/test/SemaCXX/
H A Drval-references-examples.cpp4 class unique_ptr { class
7 unique_ptr(const unique_ptr&) = delete; // expected-note 3{{'unique_ptr' has been explicitly marked deleted here}}
8 unique_ptr &operator=(const unique_ptr&) = delete; // expected-note{{candidate function has been explicitly deleted}}
10 unique_ptr() : ptr(0) { } function in class:unique_ptr
11 unique_ptr(unique_ptr &&other) : ptr(other.ptr) { other.ptr = 0; } function in class:unique_ptr
12 explicit unique_ptr( function in class:unique_ptr
[all...]

Completed in 408 milliseconds