HomeSort by relevance Sort by last modified time
    Searched defs:unique_ptr (Results 1 - 10 of 10) sorted by null

  /external/clang/test/CodeGenCXX/
debug-info-template-array.cpp 4 struct unique_ptr { struct
5 unique_ptr() {} function in struct:unique_ptr
13 unique_ptr<Vertex<2>[]> v = unique_ptr<Vertex<2>[]>();
pr18635.cpp 9 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)); }
debug-info-template-partial-specialization.cpp 24 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/
rval-references-examples.cpp 4 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(T *ptr) : ptr(ptr) { function in class:unique_ptr
    [all...]
  /external/v8/tools/clang/blink_gc_plugin/tests/
fields_illegal_tracing.h 14 // 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/
fields_illegal_tracing.h 14 // 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;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
unique_ptr.h 0 // unique_ptr implementation -*- C++ -*-
25 /** @file bits/unique_ptr.h
107 /// 20.7.1.2 unique_ptr for single objects.
109 class unique_ptr class
135 constexpr unique_ptr() noexcept
141 unique_ptr(pointer __p) noexcept
146 unique_ptr(pointer __p,
151 unique_ptr(pointer __p,
157 constexpr unique_ptr(nullptr_t) noexcept : unique_ptr() { } function in class:unique_ptr
282 class unique_ptr<_Tp[], _Dp> class
360 constexpr unique_ptr(nullptr_t) noexcept : unique_ptr() { } function in class:unique_ptr
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
unique_ptr.h 0 // unique_ptr implementation -*- C++ -*-
25 /** @file bits/unique_ptr.h
107 /// 20.7.1.2 unique_ptr for single objects.
109 class unique_ptr class
135 constexpr unique_ptr() noexcept
141 unique_ptr(pointer __p) noexcept
146 unique_ptr(pointer __p,
151 unique_ptr(pointer __p,
157 constexpr unique_ptr(nullptr_t) noexcept : unique_ptr() { } function in class:unique_ptr
282 class unique_ptr<_Tp[], _Dp> class
360 constexpr unique_ptr(nullptr_t) noexcept : unique_ptr() { } function in class:unique_ptr
    [all...]
  /external/v8/tools/clang/blink_gc_plugin/tests/heap/
stubs.h 158 template<typename T> class unique_ptr { class in namespace:std
160 ~unique_ptr() { }
  /external/v8/tools/clang/blink_gc_plugin/tests/legacy_naming/heap/
stubs.h 158 template<typename T> class unique_ptr { class in namespace:std
160 ~unique_ptr() { }

Completed in 244 milliseconds