Home
last modified time | relevance | path

Searched refs:_op_ (Results 1 – 3 of 3) sorted by relevance

/system/core/libpixelflinger/codeflinger/tinyutils/
Dsmartpointer.h30 #define COMPARE(_op_) \ argument
31 inline bool operator _op_ (const sp<T>& o) const { \
32 return m_ptr _op_ o.m_ptr; \
34 inline bool operator _op_ (const T* o) const { \
35 return m_ptr _op_ o; \
38 inline bool operator _op_ (const sp<U>& o) const { \
39 return m_ptr _op_ o.m_ptr; \
42 inline bool operator _op_ (const U* o) const { \
43 return m_ptr _op_ o; \
/system/core/libutils/include/utils/
DStrongPointer.h35 #define COMPARE_STRONG(_op_) \ argument
37 inline bool operator _op_ (const sp<U>& o) const { \
38 return m_ptr _op_ o.m_ptr; \
41 inline bool operator _op_ (const U* o) const { \
42 return m_ptr _op_ o; \
45 inline bool operator _op_ (const T* o) const { \
46 return m_ptr _op_ o; \
56 #define COMPARE_STRONG_FUNCTIONAL(_op_, _compare_) \ argument
58 inline bool operator _op_ (const sp<U>& o) const { \
62 inline bool operator _op_ (const U* o) const { \
DRefBase.h196 #define COMPARE_WEAK(_op_) \ argument
198 inline bool operator _op_ (const U* o) const { \
199 return m_ptr _op_ o; \
202 inline bool operator _op_ (const T* o) const { \
203 return m_ptr _op_ o; \
213 #define COMPARE_WEAK_FUNCTIONAL(_op_, _compare_) \ argument
215 inline bool operator _op_ (const U* o) const { \