Home | History | Annotate | Download | only in Analysis

Lines Matching full:operator

5 bool operator==(const X0&, const X0&);
17 return operator==(a, b);
25 bool operator==(int x) const {
39 operator int() const {
42 operator bool() const {
57 int operator +() const {
64 int operator +() const {
82 // Force a cache-out when we try to conjure a temporary region for the operator call.
92 A& operator=(A& other) { a = -other.a; return *this; }
93 A& operator=(A&& other) { a = other.a+1; return *this; }
99 B& operator=(B&) = default;
100 B& operator=(B&&) = default;
104 // synthesized assignment operator being undefined.