Lines Matching refs:operator
39 inline bool operator _op_ (const sp<T>& o) const { \
42 inline bool operator _op_ (const T* o) const { \
46 inline bool operator _op_ (const sp<U>& o) const { \
50 inline bool operator _op_ (const U* o) const { \
53 inline bool operator _op_ (const wp<T>& o) const { \
57 inline bool operator _op_ (const wp<U>& o) const { \
78 sp& operator = (T* other); variable
79 sp& operator = (const sp<T>& other); variable
81 template<typename U> sp& operator = (const sp<U>& other); variable
82 template<typename U> sp& operator = (U* other); variable
93 inline T& operator* () const { return *m_ptr; }
94 inline T* operator-> () const { return m_ptr; }
116 TextOutput& operator<<(TextOutput& to, const sp<T>& val);
155 sp<T>& sp<T>::operator = (const sp<T>& other) {
164 sp<T>& sp<T>::operator = (T* other)
173 sp<T>& sp<T>::operator = (const sp<U>& other)
183 sp<T>& sp<T>::operator = (U* other)
213 inline TextOutput& operator<<(TextOutput& to, const sp<T>& val)