HomeSort by relevance Sort by last modified time
    Searched refs:shared_ptr (Results 1 - 25 of 737) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/
cxx-variadic-templates.cpp 13 shared_ptr<int> spi = shared_ptr<int>::allocate_shared(1, 2);
cxx-variadic-templates.h 3 class shared_ptr{ class
7 shared_ptr<_Tp>
13 shared_ptr<_Tp>
14 shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _Args&& ...__args)
16 shared_ptr<_Tp> __r;
  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/
op_bool.pass.cpp 12 // shared_ptr
22 const std::shared_ptr<int> p(new int(32));
26 const std::shared_ptr<int> p;
unique.pass.cpp 12 // shared_ptr
21 const std::shared_ptr<int> p(new int(32));
24 std::shared_ptr<int> p2 = p;
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/
op_bool.pass.cpp 12 // shared_ptr
22 const std::shared_ptr<int> p(new int(32));
26 const std::shared_ptr<int> p;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/
op_bool.pass.cpp 12 // shared_ptr
22 const std::shared_ptr<int> p(new int(32));
26 const std::shared_ptr<int> p;
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
shared_ptr.hpp 2 // detail/shared_ptr.hpp
22 using std::shared_ptr;
  /system/vold/
MoveTask.h 30 MoveTask(const std::shared_ptr<VolumeBase>& from, const std::shared_ptr<VolumeBase>& to);
36 std::shared_ptr<VolumeBase> mFrom;
37 std::shared_ptr<VolumeBase> mTo;
  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared.atomic/
atomic_compare_exchange_strong.pass.cpp 19 // shared_ptr
23 // atomic_compare_exchange_strong(shared_ptr<T>* p, shared_ptr<T>* v,
24 // shared_ptr<T> w);
36 std::shared_ptr<int> p(new int(4));
37 std::shared_ptr<int> v(new int(3));
38 std::shared_ptr<int> w(new int(2));
46 std::shared_ptr<int> p(new int(4));
47 std::shared_ptr<int> v = p;
48 std::shared_ptr<int> w(new int(2))
    [all...]
atomic_compare_exchange_weak.pass.cpp 19 // shared_ptr
23 // atomic_compare_exchange_weak(shared_ptr<T>* p, shared_ptr<T>* v,
24 // shared_ptr<T> w);
36 std::shared_ptr<int> p(new int(4));
37 std::shared_ptr<int> v(new int(3));
38 std::shared_ptr<int> w(new int(2));
46 std::shared_ptr<int> p(new int(4));
47 std::shared_ptr<int> v = p;
48 std::shared_ptr<int> w(new int(2))
    [all...]
atomic_exchange.pass.cpp 19 // shared_ptr
22 // shared_ptr<T>
23 // atomic_exchange(shared_ptr<T>* p, shared_ptr<T> r)
35 std::shared_ptr<int> p(new int(4));
36 std::shared_ptr<int> r(new int(3));
atomic_exchange_explicit.pass.cpp 19 // shared_ptr
22 // shared_ptr<T>
23 // atomic_exchange_explicit(shared_ptr<T>* p, shared_ptr<T> r)
35 std::shared_ptr<int> p(new int(4));
36 std::shared_ptr<int> r(new int(3));
atomic_load.pass.cpp 19 // shared_ptr
22 // shared_ptr<T>
23 // atomic_load(const shared_ptr<T>* p)
35 std::shared_ptr<int> p(new int(3));
36 std::shared_ptr<int> q = std::atomic_load(&p);
atomic_load_explicit.pass.cpp 19 // shared_ptr
22 // shared_ptr<T>
23 // atomic_load_explicit(const shared_ptr<T>* p, memory_order mo)
35 const std::shared_ptr<int> p(new int(3));
36 std::shared_ptr<int> q = std::atomic_load_explicit(&p, std::memory_order_relaxed);
atomic_store.pass.cpp 19 // shared_ptr
23 // atomic_store(shared_ptr<T>* p, shared_ptr<T> r)
35 std::shared_ptr<int> p;
36 std::shared_ptr<int> r(new int(3));
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared.atomic/
atomic_compare_exchange_strong.pass.cpp 17 // shared_ptr
21 // atomic_compare_exchange_strong(shared_ptr<T>* p, shared_ptr<T>* v,
22 // shared_ptr<T> w);
31 std::shared_ptr<int> p(new int(4));
32 std::shared_ptr<int> v(new int(3));
33 std::shared_ptr<int> w(new int(2));
41 std::shared_ptr<int> p(new int(4));
42 std::shared_ptr<int> v = p;
43 std::shared_ptr<int> w(new int(2))
    [all...]
atomic_compare_exchange_weak.pass.cpp 17 // shared_ptr
21 // atomic_compare_exchange_weak(shared_ptr<T>* p, shared_ptr<T>* v,
22 // shared_ptr<T> w);
31 std::shared_ptr<int> p(new int(4));
32 std::shared_ptr<int> v(new int(3));
33 std::shared_ptr<int> w(new int(2));
41 std::shared_ptr<int> p(new int(4));
42 std::shared_ptr<int> v = p;
43 std::shared_ptr<int> w(new int(2))
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/util.smartptr/util.smartptr.shared.atomic/
atomic_compare_exchange_strong.pass.cpp 19 // shared_ptr
23 // atomic_compare_exchange_strong(shared_ptr<T>* p, shared_ptr<T>* v,
24 // shared_ptr<T> w);
33 std::shared_ptr<int> p(new int(4));
34 std::shared_ptr<int> v(new int(3));
35 std::shared_ptr<int> w(new int(2));
43 std::shared_ptr<int> p(new int(4));
44 std::shared_ptr<int> v = p;
45 std::shared_ptr<int> w(new int(2))
    [all...]
atomic_compare_exchange_weak.pass.cpp 19 // shared_ptr
23 // atomic_compare_exchange_weak(shared_ptr<T>* p, shared_ptr<T>* v,
24 // shared_ptr<T> w);
33 std::shared_ptr<int> p(new int(4));
34 std::shared_ptr<int> v(new int(3));
35 std::shared_ptr<int> w(new int(2));
43 std::shared_ptr<int> p(new int(4));
44 std::shared_ptr<int> v = p;
45 std::shared_ptr<int> w(new int(2))
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
shared_ptr.h 0 // shared_ptr and weak_ptr implementation -*- C++ -*-
30 // shared_ptr.hpp
44 /** @file bits/shared_ptr.h
63 /// 2.2.3.7 shared_ptr I/O
73 /// 2.2.3.10 shared_ptr get_deleter (experimental)
89 * The object pointed to is deleted when the last shared_ptr pointing to
93 class shared_ptr : public __shared_ptr<_Tp> class in inherits:__shared_ptr
97 * @brief Construct an empty %shared_ptr.
100 constexpr shared_ptr() noexcept
103 shared_ptr(const shared_ptr&) noexcept = default
112 explicit shared_ptr(_Tp1* __p) function in class:shared_ptr
129 shared_ptr(_Tp1* __p, _Deleter __d) function in class:shared_ptr
146 shared_ptr(nullptr_t __p, _Deleter __d) function in class:shared_ptr
165 shared_ptr(_Tp1* __p, _Deleter __d, _Alloc __a) function in class:shared_ptr
184 shared_ptr(nullptr_t __p, _Deleter __d, _Alloc __a) function in class:shared_ptr
248 explicit shared_ptr(const weak_ptr<_Tp1>& __r) function in class:shared_ptr
257 shared_ptr(std::unique_ptr<_Tp1, _Del>&& __r) function in class:shared_ptr
314 shared_ptr(_Sp_make_shared_tag __tag, const _Alloc& __a, function in class:shared_ptr
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
shared_ptr.h 0 // shared_ptr and weak_ptr implementation -*- C++ -*-
30 // shared_ptr.hpp
44 /** @file bits/shared_ptr.h
63 /// 2.2.3.7 shared_ptr I/O
73 /// 2.2.3.10 shared_ptr get_deleter (experimental)
89 * The object pointed to is deleted when the last shared_ptr pointing to
93 class shared_ptr : public __shared_ptr<_Tp> class in inherits:__shared_ptr
97 * @brief Construct an empty %shared_ptr.
100 constexpr shared_ptr() noexcept
103 shared_ptr(const shared_ptr&) noexcept = default
112 explicit shared_ptr(_Tp1* __p) function in class:shared_ptr
129 shared_ptr(_Tp1* __p, _Deleter __d) function in class:shared_ptr
146 shared_ptr(nullptr_t __p, _Deleter __d) function in class:shared_ptr
165 shared_ptr(_Tp1* __p, _Deleter __d, _Alloc __a) function in class:shared_ptr
184 shared_ptr(nullptr_t __p, _Deleter __d, _Alloc __a) function in class:shared_ptr
248 explicit shared_ptr(const weak_ptr<_Tp1>& __r) function in class:shared_ptr
257 shared_ptr(std::unique_ptr<_Tp1, _Del>&& __r) function in class:shared_ptr
314 shared_ptr(_Sp_make_shared_tag __tag, const _Alloc& __a, function in class:shared_ptr
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
shared_ptr.h 0 // shared_ptr and weak_ptr implementation -*- C++ -*-
30 // shared_ptr.hpp
44 /** @file bits/shared_ptr.h
63 /// 2.2.3.7 shared_ptr I/O
73 /// 2.2.3.10 shared_ptr get_deleter (experimental)
89 * The object pointed to is deleted when the last shared_ptr pointing to
93 class shared_ptr : public __shared_ptr<_Tp> class in inherits:__shared_ptr
97 * @brief Construct an empty %shared_ptr.
100 constexpr shared_ptr() noexcept
103 shared_ptr(const shared_ptr&) noexcept = default
112 explicit shared_ptr(_Tp1* __p) function in class:shared_ptr
129 shared_ptr(_Tp1* __p, _Deleter __d) function in class:shared_ptr
146 shared_ptr(nullptr_t __p, _Deleter __d) function in class:shared_ptr
165 shared_ptr(_Tp1* __p, _Deleter __d, _Alloc __a) function in class:shared_ptr
184 shared_ptr(nullptr_t __p, _Deleter __d, _Alloc __a) function in class:shared_ptr
248 explicit shared_ptr(const weak_ptr<_Tp1>& __r) function in class:shared_ptr
257 shared_ptr(std::unique_ptr<_Tp1, _Del>&& __r) function in class:shared_ptr
314 shared_ptr(_Sp_make_shared_tag __tag, const _Alloc& __a, function in class:shared_ptr
    [all...]
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
shared_ptr.h 0 // shared_ptr and weak_ptr implementation -*- C++ -*-
30 // shared_ptr.hpp
44 /** @file bits/shared_ptr.h
63 /// 20.7.2.2.11 shared_ptr I/O
73 /// 20.7.2.2.10 shared_ptr get_deleter
89 * The object pointed to is deleted when the last shared_ptr pointing to
93 class shared_ptr : public __shared_ptr<_Tp> class in inherits:__shared_ptr
97 * @brief Construct an empty %shared_ptr.
100 constexpr shared_ptr() noexcept
103 shared_ptr(const shared_ptr&) noexcept = default
112 explicit shared_ptr(_Tp1* __p) function in class:shared_ptr
129 shared_ptr(_Tp1* __p, _Deleter __d) function in class:shared_ptr
146 shared_ptr(nullptr_t __p, _Deleter __d) function in class:shared_ptr
165 shared_ptr(_Tp1* __p, _Deleter __d, _Alloc __a) function in class:shared_ptr
184 shared_ptr(nullptr_t __p, _Deleter __d, _Alloc __a) function in class:shared_ptr
248 explicit shared_ptr(const weak_ptr<_Tp1>& __r) function in class:shared_ptr
257 shared_ptr(std::unique_ptr<_Tp1, _Del>&& __r) function in class:shared_ptr
314 shared_ptr(_Sp_make_shared_tag __tag, const _Alloc& __a, function in class:shared_ptr
324 shared_ptr(const weak_ptr<_Tp>& __r, std::nothrow_t) function in class:shared_ptr
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
shared_ptr.h 0 // shared_ptr and weak_ptr implementation -*- C++ -*-
30 // shared_ptr.hpp
44 /** @file bits/shared_ptr.h
63 /// 20.7.2.2.11 shared_ptr I/O
73 /// 20.7.2.2.10 shared_ptr get_deleter
89 * The object pointed to is deleted when the last shared_ptr pointing to
93 class shared_ptr : public __shared_ptr<_Tp> class in inherits:__shared_ptr
97 * @brief Construct an empty %shared_ptr.
100 constexpr shared_ptr() noexcept
103 shared_ptr(const shared_ptr&) noexcept = default
112 explicit shared_ptr(_Tp1* __p) function in class:shared_ptr
129 shared_ptr(_Tp1* __p, _Deleter __d) function in class:shared_ptr
146 shared_ptr(nullptr_t __p, _Deleter __d) function in class:shared_ptr
165 shared_ptr(_Tp1* __p, _Deleter __d, _Alloc __a) function in class:shared_ptr
184 shared_ptr(nullptr_t __p, _Deleter __d, _Alloc __a) function in class:shared_ptr
248 explicit shared_ptr(const weak_ptr<_Tp1>& __r) function in class:shared_ptr
257 shared_ptr(std::unique_ptr<_Tp1, _Del>&& __r) function in class:shared_ptr
314 shared_ptr(_Sp_make_shared_tag __tag, const _Alloc& __a, function in class:shared_ptr
324 shared_ptr(const weak_ptr<_Tp>& __r, std::nothrow_t) function in class:shared_ptr
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
shared_ptr.h 0 // shared_ptr and weak_ptr implementation -*- C++ -*-
30 // shared_ptr.hpp
44 /** @file bits/shared_ptr.h
63 /// 20.7.2.2.11 shared_ptr I/O
73 /// 20.7.2.2.10 shared_ptr get_deleter
89 * The object pointed to is deleted when the last shared_ptr pointing to
93 class shared_ptr : public __shared_ptr<_Tp> class in inherits:__shared_ptr
97 * @brief Construct an empty %shared_ptr.
100 constexpr shared_ptr() noexcept
103 shared_ptr(const shared_ptr&) noexcept = default
112 explicit shared_ptr(_Tp1* __p) function in class:shared_ptr
129 shared_ptr(_Tp1* __p, _Deleter __d) function in class:shared_ptr
146 shared_ptr(nullptr_t __p, _Deleter __d) function in class:shared_ptr
165 shared_ptr(_Tp1* __p, _Deleter __d, _Alloc __a) function in class:shared_ptr
184 shared_ptr(nullptr_t __p, _Deleter __d, _Alloc __a) function in class:shared_ptr
248 explicit shared_ptr(const weak_ptr<_Tp1>& __r) function in class:shared_ptr
257 shared_ptr(std::unique_ptr<_Tp1, _Del>&& __r) function in class:shared_ptr
314 shared_ptr(_Sp_make_shared_tag __tag, const _Alloc& __a, function in class:shared_ptr
324 shared_ptr(const weak_ptr<_Tp>& __r, std::nothrow_t) function in class:shared_ptr
    [all...]

Completed in 458 milliseconds

1 2 3 4 5 6 7 8 91011>>