Lines Matching refs:other
94 bool operator == (const Callback& other) const {
95 return (mAvailable == other.mAvailable &&
96 mUnavailable == other.mUnavailable &&
97 mContext == other.mContext);
99 bool operator != (const Callback& other) const {
100 return !(*this == other);
102 bool operator < (const Callback& other) const {
103 if (*this == other) return false;
104 if (mContext != other.mContext) return mContext < other.mContext;
105 if (mAvailable != other.mAvailable) return mAvailable < other.mAvailable;
106 return mUnavailable < other.mUnavailable;
108 bool operator > (const Callback& other) const {
109 return (*this != other && !(*this < other));