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

  /external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
move_convert.pass.cpp 89 typedef std::unique_ptr<A> APtr;
94 APtr a(std::move(b));
101 APtr a = std::move(b);
107 typedef std::unique_ptr<A, Deleter<A> > APtr;
113 APtr a(std::move(b));
122 APtr a = std::move(b);
130 typedef std::unique_ptr<A, NCDeleter<A>& > APtr;
136 APtr a(std::move(b));
144 APtr a = std::move(b);
151 typedef std::unique_ptr<A, CDeleter<A> > APtr;
    [all...]
move.pass.cpp 90 typedef std::unique_ptr<A> APtr;
91 APtr s(new A);
93 APtr s2 = std::move(s);
101 typedef std::unique_ptr<A, MoveDel> APtr;
103 APtr s(new A, std::move(d));
107 APtr s2 = std::move(s);
117 typedef std::unique_ptr<A, NonCopyDel&> APtr;
120 APtr s(new A, d);
122 APtr s2 = std::move(s);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
move_convert.pass.cpp 89 typedef std::unique_ptr<A> APtr;
94 APtr a(std::move(b));
101 APtr a = std::move(b);
107 typedef std::unique_ptr<A, Deleter<A> > APtr;
113 APtr a(std::move(b));
122 APtr a = std::move(b);
130 typedef std::unique_ptr<A, NCDeleter<A>& > APtr;
136 APtr a(std::move(b));
144 APtr a = std::move(b);
151 typedef std::unique_ptr<A, CDeleter<A> > APtr;
    [all...]
move.pass.cpp 90 typedef std::unique_ptr<A> APtr;
91 APtr s(new A);
93 APtr s2 = std::move(s);
101 typedef std::unique_ptr<A, MoveDel> APtr;
103 APtr s(new A, std::move(d));
107 APtr s2 = std::move(s);
117 typedef std::unique_ptr<A, NonCopyDel&> APtr;
120 APtr s(new A, d);
122 APtr s2 = std::move(s);

Completed in 339 milliseconds