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

1 2 3 4 5 6 7 8 91011>>

  /device/google/cuttlefish_common/guest/commands/vsoc_input_service/
vsoc_input_service.h 32 std::shared_ptr<VirtualPowerButton> virtual_power_button_;
33 std::shared_ptr<VirtualKeyboard> virtual_keyboard_;
34 std::shared_ptr<VirtualTouchScreen> virtual_touchscreen_;
  /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/r16/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;
unique.pass.cpp 12 // shared_ptr
21 const std::shared_ptr<int> p(new int(32));
24 std::shared_ptr<int> p2 = p;
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
shared_ptr.hpp 2 // detail/shared_ptr.hpp
22 using std::shared_ptr;
  /hardware/google/av/codec2/vndk/include/
C2PlatformSupport.h 31 std::shared_ptr<C2AllocatorStore> GetCodec2PlatformAllocatorStore();
100 C2BlockPool::local_id_t id, std::shared_ptr<const C2Component> component,
101 std::shared_ptr<C2BlockPool> *pool);
117 std::shared_ptr<const C2Component> component,
118 std::shared_ptr<C2BlockPool> *pool);
124 std::shared_ptr<C2ComponentStore> GetCodec2PlatformComponentStore();
132 void SetPreferredCodec2ComponentStore(std::shared_ptr<C2ComponentStore> store);
  /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));
atomic_store_explicit.pass.cpp 19 // shared_ptr
23 // atomic_store_explicit(shared_ptr<T>* p, shared_ptr<T> r, memory_order mo)
35 std::shared_ptr<int> p;
36 std::shared_ptr<int> r(new int(3));
  /prebuilts/ndk/r16/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);
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));
  /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...]
  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.obs/
not_less_than.fail.cpp 21 const std::shared_ptr<int> p1(new int);
22 const std::shared_ptr<int> p2(new int);
  /prebuilts/misc/common/swig/include/2.0.11/python/
boost_shared_ptr.i 1 %include <shared_ptr.i>
18 %naturalvar SWIG_SHARED_PTR_QNAMESPACE::shared_ptr< CONST TYPE >;
30 res = SWIG_ConvertPtrAndOwn($input, &argp, $descriptor(SWIG_SHARED_PTR_QNAMESPACE::shared_ptr< TYPE > *), %convertptr_flags, &newmem);
37 $1 = *(%reinterpret_cast(argp, SWIG_SHARED_PTR_QNAMESPACE::shared_ptr< CONST TYPE > *)->get());
38 if (newmem & SWIG_CAST_NEW_MEMORY) delete %reinterpret_cast(argp, SWIG_SHARED_PTR_QNAMESPACE::shared_ptr< CONST TYPE > *);
42 SWIG_SHARED_PTR_QNAMESPACE::shared_ptr< CONST TYPE > *smartresult = new SWIG_SHARED_PTR_QNAMESPACE::shared_ptr< CONST TYPE >(new $1_ltype(($1_ltype &)$1));
43 %set_output(SWIG_NewPointerObj(%as_voidptr(smartresult), $descriptor(SWIG_SHARED_PTR_QNAMESPACE::shared_ptr< TYPE > *), SWIG_POINTER_OWN));
49 int res = SWIG_ConvertPtrAndOwn($input, &argp, $descriptor(SWIG_SHARED_PTR_QNAMESPACE::shared_ptr< TYPE > *), %convertptr_flags, &newmem);
56 $1 = *(%reinterpret_cast(argp, SWIG_SHARED_PTR_QNAMESPACE::shared_ptr< CONST TYPE > *)->get())
    [all...]

Completed in 632 milliseconds

1 2 3 4 5 6 7 8 91011>>