Searched defs:unique_ptr (Results 1 - 2 of 2) sorted by relevance

/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>[]>();
/external/clang/test/SemaCXX/
H A Drval-references-examples.cpp4 class unique_ptr { class
7 unique_ptr(const unique_ptr&) = delete; // expected-note 3{{function 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(T *ptr) : ptr(ptr) { } function in class:unique_ptr
14 ~unique_ptr() { delet
[all...]

Completed in 241 milliseconds