Home | History | Annotate | Download | only in browser

Lines Matching refs:other

26   bool operator<(const GlobalRequestID& other) const {
27 if (child_id == other.child_id)
28 return request_id < other.request_id;
29 return child_id < other.child_id;
31 bool operator==(const GlobalRequestID& other) const {
32 return child_id == other.child_id &&
33 request_id == other.request_id;
35 bool operator!=(const GlobalRequestID& other) const {
36 return child_id != other.child_id ||
37 request_id != other.request_id;