OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:shared_ptr
(Results
176 - 200
of
502
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/
dereference.pass.cpp
12
//
shared_ptr
21
const std::
shared_ptr
<int> p(new int(32));
/external/libcxx/test/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);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/
types.pass.cpp
12
// template<class T> class
shared_ptr
25
static_assert((std::is_same<std::
shared_ptr
<A>::element_type, A>::value), "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/
default.pass.cpp
12
//
shared_ptr
();
19
std::
shared_ptr
<int> p;
nullptr_t.pass.cpp
12
//
shared_ptr
(nullptr_t)
19
std::
shared_ptr
<int> p(nullptr);
nullptr_t_deleter_allocator_throw.pass.cpp
12
// template<class D, class A>
shared_ptr
(nullptr_t, D d, A a);
35
std::
shared_ptr
<A> p(nullptr, test_deleter<A>(3), test_allocator<A>(5));
pointer_deleter_allocator_throw.pass.cpp
12
// template<class Y, class D, class A>
shared_ptr
(Y* p, D d, A a);
36
std::
shared_ptr
<A> p(ptr, test_deleter<A>(3), test_allocator<A>(5));
pointer_throw.pass.cpp
12
// template<class Y> explicit
shared_ptr
(Y* p);
52
std::
shared_ptr
<A> p(ptr);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/
arrow.pass.cpp
12
//
shared_ptr
22
const std::
shared_ptr
<std::pair<int, int> > p(new std::pair<int, int>(3, 4));
dereference.pass.cpp
12
//
shared_ptr
21
const std::
shared_ptr
<int> p(new int(32));
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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);
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
allocate_shared.pass.cpp
12
//
shared_ptr
15
//
shared_ptr
<T> allocate_shared(const A& a, Args&&... args);
49
std::
shared_ptr
<A> p = std::allocate_shared<A>(test_allocator<A>(54), i, c);
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.mod/
reset.pass.cpp
12
//
shared_ptr
45
std::
shared_ptr
<B> p(new B);
54
std::
shared_ptr
<B> p;
reset_pointer.pass.cpp
12
//
shared_ptr
45
std::
shared_ptr
<B> p(new B);
55
std::
shared_ptr
<B> p;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
allocate_shared.pass.cpp
12
//
shared_ptr
15
//
shared_ptr
<T> allocate_shared(const A& a, Args&&... args);
49
std::
shared_ptr
<A> p = std::allocate_shared<A>(test_allocator<A>(54), i, c);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.mod/
reset.pass.cpp
12
//
shared_ptr
45
std::
shared_ptr
<B> p(new B);
54
std::
shared_ptr
<B> p;
reset_pointer.pass.cpp
12
//
shared_ptr
45
std::
shared_ptr
<B> p(new B);
55
std::
shared_ptr
<B> p;
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/
nullptr_t_deleter_allocator_throw.pass.cpp
12
// template<class D, class A>
shared_ptr
(nullptr_t, D d, A a);
35
std::
shared_ptr
<A> p(nullptr, test_deleter<A>(3), test_allocator<A>(5));
pointer_deleter_allocator_throw.pass.cpp
12
// template<class Y, class D, class A>
shared_ptr
(Y* p, D d, A a);
36
std::
shared_ptr
<A> p(ptr, test_deleter<A>(3), test_allocator<A>(5));
pointer_throw.pass.cpp
12
// template<class Y> explicit
shared_ptr
(Y* p);
52
std::
shared_ptr
<A> p(ptr);
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.mod/
swap.pass.cpp
35
std::
shared_ptr
<A> p1(ptr1);
38
std::
shared_ptr
<A> p2(ptr2);
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.spec/
swap.pass.cpp
35
std::
shared_ptr
<A> p1(ptr1);
38
std::
shared_ptr
<A> p2(ptr2);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.mod/
swap.pass.cpp
35
std::
shared_ptr
<A> p1(ptr1);
38
std::
shared_ptr
<A> p2(ptr2);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.spec/
swap.pass.cpp
35
std::
shared_ptr
<A> p1(ptr1);
38
std::
shared_ptr
<A> p2(ptr2);
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/smart_ptr/detail/
spinlock_pool.hpp
20
// spinlock_pool<1> is reserved for
shared_ptr
reference counts
21
// spinlock_pool<2> is reserved for
shared_ptr
atomic access
Completed in 89 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>