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

  /external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/
move_convert.single.pass.cpp 140 typedef std::unique_ptr<A> APtr;
142 static_assert(std::is_nothrow_constructible<APtr, BPtr>::value, "");
145 typedef std::unique_ptr<A, Deleter<A> > APtr;
147 static_assert(std::is_nothrow_constructible<APtr, BPtr>::value, "");
150 typedef std::unique_ptr<A, NCDeleter<A>&> APtr;
152 static_assert(std::is_nothrow_constructible<APtr, BPtr>::value, "");
155 typedef std::unique_ptr<A, const NCConstDeleter<A>&> APtr;
157 static_assert(std::is_nothrow_constructible<APtr, BPtr>::value, "");
167 typedef std::unique_ptr<A> APtr;
172 APtr a(std::move(b))
    [all...]
move.pass.cpp 89 typedef std::unique_ptr<VT> APtr;
90 APtr s(newValue<VT>(expect_alive));
92 APtr s2 = std::move(s);
100 typedef std::unique_ptr<VT, MoveDel> APtr;
102 APtr s(newValue<VT>(expect_alive), std::move(d));
106 APtr s2 = std::move(s);
116 typedef std::unique_ptr<VT, NonCopyDel&> APtr;
119 APtr s(newValue<VT>(expect_alive), d);
121 APtr s2 = std::move(s);
move_convert.pass.cpp 153 typedef std::unique_ptr<const VT> APtr;
155 static_assert(std::is_nothrow_constructible<APtr, BPtr>::value, "");
158 typedef std::unique_ptr<const VT, CDeleter<const VT> > APtr;
160 static_assert(std::is_nothrow_constructible<APtr, BPtr>::value, "");
163 typedef std::unique_ptr<const VT, NCDeleter<const VT>&> APtr;
165 static_assert(std::is_nothrow_constructible<APtr, BPtr>::value, "");
168 typedef std::unique_ptr<const VT, const NCConstDeleter<const VT>&> APtr;
170 static_assert(std::is_nothrow_constructible<APtr, BPtr>::value, "");
  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.enab/
enable_shared_from_this.pass.cpp 82 typedef std::shared_ptr<PrivateBase> APtr;
83 APtr a1 = std::make_shared<PrivateBase>();
  /external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/
move_convert.pass.cpp 290 typedef std::unique_ptr<const VT> APtr;
292 static_assert(std::is_nothrow_assignable<APtr, BPtr>::value, "");
295 typedef std::unique_ptr<const VT, CDeleter<const VT> > APtr;
297 static_assert(std::is_nothrow_assignable<APtr, BPtr>::value, "");
300 typedef std::unique_ptr<const VT, NCDeleter<const VT>&> APtr;
302 static_assert(std::is_nothrow_assignable<APtr, BPtr>::value, "");
305 typedef std::unique_ptr<const VT, const NCConstDeleter<const VT>&> APtr;
307 static_assert(std::is_nothrow_assignable<APtr, BPtr>::value, "");

Completed in 475 milliseconds