Searched defs:unique_ptr (Results 1 - 8 of 8) 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>[]>();
H A Dpr18635.cpp9 template <typename T> class unique_ptr { class
16 constexpr unique_ptr() noexcept : data() {}
17 explicit unique_ptr(T *p) noexcept : data() {}
20 thread_local unique_ptr<int> x;
21 int main() { x = unique_ptr<int>(new int(5)); }
H A Ddebug-info-template-partial-specialization.cpp24 template <class _Tp, class _Dp = default_delete<_Tp> > class unique_ptr class
27 unique_ptr(pointer __p, _Dp __d) {} function in class:unique_ptr
30 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...]
/external/v8/tools/clang/blink_gc_plugin/tests/
H A Dfields_illegal_tracing.h14 // check that (only) std::unique_ptr<> is reported
16 template<typename T> class unique_ptr { class in namespace:blink::bar
18 ~unique_ptr() { }
39 bar::unique_ptr<HeapObject> m_obj3;
40 std::unique_ptr<HeapObject> m_obj4;
53 bar::unique_ptr<HeapObject> m_obj3;
54 std::unique_ptr<HeapObject> m_obj4;
/external/v8/tools/clang/blink_gc_plugin/tests/legacy_naming/
H A Dfields_illegal_tracing.h14 // check that (only) std::unique_ptr<> is reported
16 template<typename T> class unique_ptr { class in namespace:blink::bar
18 ~unique_ptr() { }
39 bar::unique_ptr<HeapObject> m_obj3;
40 std::unique_ptr<HeapObject> m_obj4;
53 bar::unique_ptr<HeapObject> m_obj3;
54 std::unique_ptr<HeapObject> m_obj4;
/external/v8/tools/clang/blink_gc_plugin/tests/heap/
H A Dstubs.h158 template<typename T> class unique_ptr { class in namespace:std
160 ~unique_ptr() { }
/external/v8/tools/clang/blink_gc_plugin/tests/legacy_naming/heap/
H A Dstubs.h158 template<typename T> class unique_ptr { class in namespace:std
160 ~unique_ptr() { }

Completed in 231 milliseconds