Lines Matching refs:other1
108 friend bool operator< (int other1, const testvalue &other2) in operator <() argument
109 { return other1 < other2.value_.int_; } in operator <()
111 friend bool operator> (int other1, const testvalue &other2) in operator >() argument
112 { return other1 > other2.value_.int_; } in operator >()
114 friend bool operator< (const testvalue &other1, int other2) in operator <() argument
115 { return other1.value_.int_ < other2; } in operator <()
117 friend bool operator> (const testvalue &other1, int other2) in operator >() argument
118 { return other1.value_.int_ > other2; } in operator >()
120 friend bool operator== (int other1, const testvalue &other2) in operator ==() argument
121 { return other1 == other2.value_.int_; } in operator ==()
123 friend bool operator== (const testvalue &other1, int other2) in operator ==() argument
124 { return other1.value_.int_ == other2; } in operator ==()
126 friend bool operator!= (int other1, const testvalue &other2) in operator !=() argument
127 { return other1 != other2.value_.int_; } in operator !=()
129 friend bool operator!= (const testvalue &other1, int other2) in operator !=() argument
130 { return other1.value_.int_ != other2; } in operator !=()