Lines Matching refs:operator
23 * and related global overloaded operator functions are provided.
61 bool operator==(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs);
63 bool operator!=(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs);
65 bool operator>=(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs);
67 bool operator>(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs);
69 bool operator<=(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs);
71 bool operator<(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs);
87 friend bool operator==<Deleter>(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs);
89 friend bool operator!=<Deleter>(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs);
91 friend bool operator>=<Deleter>(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs);
93 friend bool operator><Deleter>(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs);
95 friend bool operator<=<Deleter>(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs);
97 friend bool operator< <Deleter>(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs);
141 // do not operator on the ret
143 * @brief An overloaded cast operator function.
150 operator int() const { return Get(); } // NOLINT
152 // this is dangerous, when you use it , you should know it, do not operator
178 * @brief Overloaded move assignment operator function used to deliver the
187 UniqueFdAddDeletor& operator=(UniqueFdAddDeletor&& rhs)
203 bool operator==(const int& rhs) const
217 bool operator!=(const int& rhs) const
231 bool operator>=(const int& rhs) const
245 bool operator>(const int& rhs) const
259 bool operator<=(const int& rhs) const
273 bool operator<(const int& rhs) const
291 UniqueFdAddDeletor& operator=(const UniqueFdAddDeletor& rhs) = delete;
306 bool operator==(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs)
324 bool operator!=(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs)
342 bool operator>=(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs)
360 bool operator>(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs)
378 bool operator<=(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs)
396 bool operator<(const int& lhs, const UniqueFdAddDeletor<Deleter>& rhs)