Lines Matching refs:U
45 template<typename U> \
46 inline bool operator _op_ (const sp<U>& o) const { \
49 template<typename U> \
50 inline bool operator _op_ (const U* o) const { \
56 template<typename U> \
57 inline bool operator _op_ (const wp<U>& o) const { \
71 template<typename U> sp(U* other); // NOLINT, implicit
72 template<typename U> sp(const sp<U>& other); // NOLINT, implicit
81 template<typename U> sp& operator = (const sp<U>& other);
82 template<typename U> sp& operator = (U* other);
135 template<typename T> template<typename U>
136 sp<T>::sp(U* other) : m_ptr(other) in sp()
141 template<typename T> template<typename U>
142 sp<T>::sp(const sp<U>& other) in sp()
172 template<typename T> template<typename U>
173 sp<T>& sp<T>::operator = (const sp<U>& other)
182 template<typename T> template<typename U>
183 sp<T>& sp<T>::operator = (U* other)