Home
last modified time | relevance | path

Searched refs:other1 (Results 1 – 2 of 2) sorted by relevance

/third_party/boost/libs/intrusive/test/
Dbptr_value.hpp81 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 >()
[all …]
Ditestvalue.hpp108 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 ==()
[all …]