Home | History | Annotate | Download | only in util

Lines Matching defs:operator

38 inline bool operator _op_ (const sp<T>& o) const {              \
41 inline bool operator _op_ (const T* o) const { \
45 inline bool operator _op_ (const sp<U>& o) const { \
49 inline bool operator _op_ (const U* o) const { \
52 inline bool operator _op_ (const wp<T>& o) const { \
56 inline bool operator _op_ (const wp<U>& o) const { \
77 sp& operator = (T* other);
78 sp& operator = (const sp<T>& other);
80 template<typename U> sp& operator = (const sp<U>& other);
81 template<typename U> sp& operator = (U* other);
92 inline T& operator* () const { return *m_ptr; }
93 inline T* operator-> () const { return m_ptr; }
115 TextOutput& operator<<(TextOutput& to, const sp<T>& val);
154 sp<T>& sp<T>::operator = (const sp<T>& other) {
163 sp<T>& sp<T>::operator = (T* other)
172 sp<T>& sp<T>::operator = (const sp<U>& other)
182 sp<T>& sp<T>::operator = (U* other)
212 inline TextOutput& operator<<(TextOutput& to, const sp<T>& val)