HomeSort by relevance Sort by last modified time
    Searched full:shared_ptr (Results 151 - 175 of 502) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/clang/test/CodeGenCXX/
linetable-eh.cpp 20 template<class _Tp> class shared_ptr { class
24 ~shared_ptr();
34 virtual shared_ptr<Context> GetContext () = 0;
  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/
nullptr_t_deleter.pass.cpp 12 // shared_ptr
14 // template<class D> shared_ptr(nullptr_t, D d);
34 std::shared_ptr<A> p(nullptr, test_deleter<A>(3));
nullptr_t_deleter_throw.pass.cpp 12 // shared_ptr
14 // template<class D> shared_ptr(nullptr_t, D d);
52 std::shared_ptr<A> p(nullptr, test_deleter<A>(3));
pointer.pass.cpp 12 // template<class Y> explicit shared_ptr(Y* p);
32 std::shared_ptr<A> p(ptr);
40 std::shared_ptr<void> p(ptr);
pointer_deleter.pass.cpp 12 // shared_ptr
14 // template<class Y, class D> shared_ptr(Y* p, D d);
35 std::shared_ptr<A> p(ptr, test_deleter<A>(3));
pointer_deleter_throw.pass.cpp 12 // shared_ptr
14 // template<class Y, class D> shared_ptr(Y* p, D d);
53 std::shared_ptr<A> p(ptr, test_deleter<A>(3));
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);
  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.obs/
owner_before_weak_ptr.pass.cpp 21 const std::shared_ptr<int> p1(new int);
22 const std::shared_ptr<int> p2 = p1;
23 const std::shared_ptr<int> p3(new int);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/
nullptr_t_deleter.pass.cpp 12 // shared_ptr
14 // template<class D> shared_ptr(nullptr_t, D d);
34 std::shared_ptr<A> p(nullptr, test_deleter<A>(3));
nullptr_t_deleter_throw.pass.cpp 12 // shared_ptr
14 // template<class D> shared_ptr(nullptr_t, D d);
52 std::shared_ptr<A> p(nullptr, test_deleter<A>(3));
pointer.pass.cpp 12 // template<class Y> explicit shared_ptr(Y* p);
32 std::shared_ptr<A> p(ptr);
40 std::shared_ptr<void> p(ptr);
pointer_deleter.pass.cpp 12 // shared_ptr
14 // template<class Y, class D> shared_ptr(Y* p, D d);
35 std::shared_ptr<A> p(ptr, test_deleter<A>(3));
pointer_deleter_throw.pass.cpp 12 // shared_ptr
14 // template<class Y, class D> shared_ptr(Y* p, D d);
53 std::shared_ptr<A> p(ptr, test_deleter<A>(3));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.obs/
owner_before_weak_ptr.pass.cpp 21 const std::shared_ptr<int> p1(new int);
22 const std::shared_ptr<int> p2 = p1;
23 const std::shared_ptr<int> p3(new int);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.general/
tuple.smartptr.pass.cpp 19 std::tuple<std::shared_ptr<char>> sp;
25 std::tuple<std::shared_ptr<char[]>> sp;
31 std::tuple<std::shared_ptr<char[5]>> sp;
  /prebuilts/misc/common/swig/include/2.0.11/
intrusive_ptr.i 1 // Allow for different namespaces for shared_ptr / intrusive_ptr - they could be boost or std or std::tr1
51 %feature("smartptr", noblock=1) TYPE { SWIG_SHARED_PTR_QNAMESPACE::shared_ptr< TYPE > }
57 %feature("smartptr", noblock=1) TYPE { SWIG_SHARED_PTR_QNAMESPACE::shared_ptr< TYPE > }
  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
make_shared.pass.cpp 12 // shared_ptr
14 // template<class T, class... Args> shared_ptr<T> make_shared(Args&&... args);
59 std::shared_ptr<A> p = std::make_shared<A>(i, c);
69 std::shared_ptr<A> p = std::make_shared<A>(67, c);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
make_shared.pass.cpp 12 // shared_ptr
14 // template<class T, class... Args> shared_ptr<T> make_shared(Args&&... args);
59 std::shared_ptr<A> p = std::make_shared<A>(i, c);
69 std::shared_ptr<A> p = std::make_shared<A>(67, c);
  /ndk/sources/host-tools/gdb-pretty-printers/stlport/gppfs-0.2/
ChangeLog 4 std::tr1::shared_ptr and std::tr1::weak_ptr.
  /prebuilts/python/darwin-x86/2.7.5/share/pretty-printers/stlport/
ChangeLog 4 std::tr1::shared_ptr and std::tr1::weak_ptr.
  /prebuilts/python/linux-x86/2.7.5/share/pretty-printers/stlport/
ChangeLog 4 std::tr1::shared_ptr and std::tr1::weak_ptr.
  /external/clang/test/PCH/
cxx-variadic-templates.cpp 13 shared_ptr<int> spi = shared_ptr<int>::allocate_shared(1, 2);
  /external/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), "");
  /external/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));

Completed in 562 milliseconds

1 2 3 4 5 67 8 91011>>