• Home
  • Raw
  • Download

Lines Matching refs:other1

81    friend bool operator< (const BPtr_Value &other1, const BPtr_Value &other2)  in operator <()  argument
82 { return other1.value_ < other2.value_; } in operator <()
84 friend bool operator< (int other1, const BPtr_Value &other2) in operator <() argument
85 { return other1 < other2.value_; } in operator <()
87 friend bool operator< (const BPtr_Value &other1, int other2) in operator <() argument
88 { return other1.value_ < other2; } in operator <()
90 friend bool operator> (const BPtr_Value &other1, const BPtr_Value &other2) in operator >() argument
91 { return other1.value_ > other2.value_; } in operator >()
93 friend bool operator> (int other1, const BPtr_Value &other2) in operator >() argument
94 { return other1 > other2.value_; } in operator >()
96 friend bool operator> (const BPtr_Value &other1, int other2) in operator >() argument
97 { return other1.value_ > other2; } in operator >()
99 friend bool operator== (const BPtr_Value &other1, const BPtr_Value &other2) in operator ==() argument
100 { return other1.value_ == other2.value_; } in operator ==()
102 friend bool operator== (int other1, const BPtr_Value &other2) in operator ==() argument
103 { return other1 == other2.value_; } in operator ==()
105 friend bool operator== (const BPtr_Value &other1, int other2) in operator ==() argument
106 { return other1.value_ == other2; } in operator ==()
108 friend bool operator!= (const BPtr_Value &other1, const BPtr_Value &other2) in operator !=() argument
109 { return !(other1 == other2); } in operator !=()
111 friend bool operator!= (int other1, const BPtr_Value &other2) in operator !=() argument
112 { return !(other1 == other2.value_); } in operator !=()
114 friend bool operator!= (const BPtr_Value &other1, int other2) in operator !=() argument
115 { return !(other1.value_ == other2); } in operator !=()