Home
last modified time | relevance | path

Searched defs:shared_ptr (Results 1 – 4 of 4) sorted by relevance

/minix3/external/bsd/llvm/dist/clang/test/SemaObjCXX/
H A Dwarn-missing-super.mm10 template<typename T> struct shared_ptr { struct
17 constexpr shared_ptr<int> dummy; argument
/minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/
H A Dlinetable-eh.cpp20 template<class _Tp> class shared_ptr { class
/minix3/external/bsd/llvm/dist/clang/test/Analysis/
H A DNewDelete-checker-test.cpp253 class shared_ptr { class
258 shared_ptr() : p(0), control(0) {} in shared_ptr() function in reference_count::shared_ptr
259 explicit shared_ptr(T *p) : p(p), control(new control_block) { in shared_ptr() function in reference_count::shared_ptr
262 shared_ptr(shared_ptr &other) : p(other.p), control(other.control) { in shared_ptr() function in reference_count::shared_ptr
/minix3/external/bsd/llvm/dist/clang/test/SemaTemplate/
H A Ddestructor-template.cpp62 template <class T> class shared_ptr {}; class