Searched defs:shared_ptr (Results 1 - 5 of 5) sorted by relevance

/external/clang/test/PCH/
H A Dcxx-variadic-templates.h3 class shared_ptr{ class
7 shared_ptr<_Tp>
13 shared_ptr<_Tp>
14 shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _Args&& ...__args)
16 shared_ptr<_Tp> __r;
/external/clang/test/CodeGenCXX/
H A Dlinetable-eh.cpp20 template<class _Tp> class shared_ptr { class
24 ~shared_ptr();
34 virtual shared_ptr<Context> GetContext () = 0;
/external/clang/test/Analysis/Inputs/
H A Dsystem-header-simulator-cxx-std-suppression.h119 class shared_ptr class in namespace:std
122 constexpr shared_ptr(nullptr_t);
123 explicit shared_ptr(_Tp* __p);
125 shared_ptr(shared_ptr&& __r) { } function in class:std::shared_ptr
127 ~shared_ptr();
129 shared_ptr& operator=(shared_ptr&& __r) {
132 // out of std::shared_ptr.
141 shared_ptr<_T function in class:std::shared_ptr
[all...]
/external/clang/test/SemaTemplate/
H A Ddestructor-template.cpp66 template <class T> class shared_ptr {}; class in namespace:rdar13140795
74 shared_ptr<T> *x;
75 x->template shared_ptr<T>::~shared_ptr();
/external/clang/test/Analysis/
H A DNewDelete-checker-test.cpp272 class shared_ptr { class in namespace:reference_count
277 shared_ptr() : p(0), control(0) {} function in class:reference_count::shared_ptr
278 explicit shared_ptr(T *p) : p(p), control(new control_block) { function in class:reference_count::shared_ptr
281 shared_ptr(shared_ptr &other) : p(other.p), control(other.control) { function in class:reference_count::shared_ptr
285 ~shared_ptr() {
296 void swap(shared_ptr &other) {
308 shared_ptr<int> a(new int);
313 shared_ptr<int> a(new int);
314 shared_ptr<in
[all...]

Completed in 1140 milliseconds