Home | History | Annotate | Download | only in utils

Lines Matching full:operator

37 inline bool operator _op_ (const sp<T>& o) const {              \
40 inline bool operator _op_ (const T* o) const { \
44 inline bool operator _op_ (const sp<U>& o) const { \
48 inline bool operator _op_ (const U* o) const { \
51 inline bool operator _op_ (const wp<T>& o) const { \
55 inline bool operator _op_ (const wp<U>& o) const { \
76 sp& operator = (T* other);
77 sp& operator = (const sp<T>& other);
79 template<typename U> sp& operator = (const sp<U>& other);
80 template<typename U> sp& operator = (U* other);
91 inline T& operator* () const { return *m_ptr; }
92 inline T* operator-> () const { return m_ptr; }
114 TextOutput& operator<<(TextOutput& to, const sp<T>& val);
153 sp<T>& sp<T>::operator = (const sp<T>& other) {
162 sp<T>& sp<T>::operator = (T* other)
171 sp<T>& sp<T>::operator = (const sp<U>& other)
181 sp<T>& sp<T>::operator = (U* other)
211 inline TextOutput& operator<<(TextOutput& to, const sp<T>& val)