OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:unique_ptr
(Results
51 - 75
of
247
) sorted by null
1
2
3
4
5
6
7
8
9
10
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
nullptr.pass.cpp
12
//
unique_ptr
14
//
unique_ptr
(nullptr_t);
19
// default
unique_ptr
ctor should only require default Deleter ctor
38
std::
unique_ptr
<int[]> p(nullptr);
42
std::
unique_ptr
<int[], Deleter> p(nullptr);
move01.fail.cpp
12
//
unique_ptr
14
// Test
unique_ptr
move ctor
34
std::
unique_ptr
<A[]> s(new A[3]);
36
std::
unique_ptr
<A[]> s2 = s;
move02.fail.cpp
12
//
unique_ptr
14
// Test
unique_ptr
move ctor
34
const std::
unique_ptr
<A[]> s(new A[3]);
36
std::
unique_ptr
<A[]> s2 = s;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.observers/
get_deleter.pass.cpp
12
//
unique_ptr
30
std::
unique_ptr
<int[], Deleter> p;
34
const std::
unique_ptr
<int[], Deleter> p;
op_arrow.fail.cpp
12
//
unique_ptr
28
std::
unique_ptr
<A[]> p(new A);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/
pointer_type.pass.cpp
12
//
unique_ptr
14
// Test
unique_ptr
::pointer type
27
typedef std::
unique_ptr
<int> P;
31
typedef std::
unique_ptr
<int, Deleter> P;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.asgn/
move01.fail.cpp
12
//
unique_ptr
14
// Test
unique_ptr
move assignment
34
std::
unique_ptr
<A> s(new A);
35
std::
unique_ptr
<A> s2;
move02.fail.cpp
12
//
unique_ptr
14
// Test
unique_ptr
move assignment
34
const std::
unique_ptr
<A> s(new A);
35
std::
unique_ptr
<A> s2;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
default01.pass.cpp
12
//
unique_ptr
14
// Test
unique_ptr
default ctor
19
// default
unique_ptr
ctor should only require default Deleter ctor
38
std::
unique_ptr
<int> p;
42
std::
unique_ptr
<int, Deleter> p;
nullptr.pass.cpp
12
//
unique_ptr
14
//
unique_ptr
(nullptr_t);
19
// default
unique_ptr
ctor should only require default Deleter ctor
38
std::
unique_ptr
<int> p(nullptr);
42
std::
unique_ptr
<int, Deleter> p(nullptr);
move01.fail.cpp
12
//
unique_ptr
14
// Test
unique_ptr
move ctor
34
std::
unique_ptr
<A> s(new A);
36
std::
unique_ptr
<A> s2 = s;
move02.fail.cpp
12
//
unique_ptr
14
// Test
unique_ptr
move ctor
34
const std::
unique_ptr
<A> s(new A);
36
std::
unique_ptr
<A> s2 = s;
move_convert05.fail.cpp
12
//
unique_ptr
14
// Test
unique_ptr
converting move ctor
48
std::
unique_ptr
<B, Deleter<B> > s(new B);
49
std::
unique_ptr
<A, Deleter<A> > s2 = s;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.observers/
get_deleter.pass.cpp
12
//
unique_ptr
30
std::
unique_ptr
<int, Deleter> p;
34
const std::
unique_ptr
<int, Deleter> p;
op_arrow.pass.cpp
12
//
unique_ptr
28
std::
unique_ptr
<A> p(new A);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.hash/
hash_unique_ptr.pass.cpp
13
// struct hash<
unique_ptr
<T, D>>
15
// typedef
unique_ptr
<T, D> argument_type;
17
// size_t operator()(const
unique_ptr
<T, D>& p) const;
26
std::
unique_ptr
<int> p(ptr);
27
std::hash<std::
unique_ptr
<int> > f;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/pairs/pairs.pair/
U_V.pass.cpp
24
typedef std::pair<std::
unique_ptr
<int>, short*> P;
25
P p(std::
unique_ptr
<int>(new int(3)), nullptr);
assign_rv_pair.pass.cpp
24
typedef std::pair<std::
unique_ptr
<int>, short> P;
25
P p1(std::
unique_ptr
<int>(new int(3)), 4);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.special/
rel.pass.cpp
12
//
unique_ptr
16
// operator< (const
unique_ptr
<T1, D1>& x, const
unique_ptr
<T2, D2>& y);
20
// operator> (const
unique_ptr
<T1, D1>& x, const
unique_ptr
<T2, D2>& y);
24
// operator<=(const
unique_ptr
<T1, D1>& x, const
unique_ptr
<T2, D2>& y);
28
// operator>=(const
unique_ptr
<T1, D1>& x, const
unique_ptr
<T2, D2>& y);
59
const std::
unique_ptr
<A, Deleter<A> > p1(new A)
[
all
...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.assign/
move_pair.pass.cpp
40
typedef std::pair<double, std::
unique_ptr
<D>> T0;
41
typedef std::tuple<int, std::
unique_ptr
<B>> T1;
42
T0 t0(2.5, std::
unique_ptr
<D>(new D(3)));
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.cnstr/
move_pair.pass.cpp
39
typedef std::pair<double, std::
unique_ptr
<D>> T0;
40
typedef std::tuple<int, std::
unique_ptr
<B>> T1;
41
T0 t0(2.5, std::
unique_ptr
<D>(new D(3)));
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/pairs/pairs.spec/
make_pair.pass.cpp
28
typedef std::pair<std::
unique_ptr
<int>, short> P1;
29
P1 p1 = std::make_pair(std::
unique_ptr
<int>(new int(3)), 4);
34
typedef std::pair<std::
unique_ptr
<int>, short> P1;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.modifiers/
release.pass.cpp
12
//
unique_ptr
21
std::
unique_ptr
<int[]> p(new int[3]);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.modifiers/
release.pass.cpp
12
//
unique_ptr
21
std::
unique_ptr
<int> p(new int(3));
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/utility.swap/
swap.pass.cpp
38
std::
unique_ptr
<int> i(new int(1));
39
std::
unique_ptr
<int> j(new int(2));
Completed in 213 milliseconds
1
2
3
4
5
6
7
8
9
10