Lines Matching refs:other
11 // and/or other materials provided with the distribution.
48 bool operator==(const Obj& other) const {
49 return (key_ == other.key_) && (val_ == other.val_);
51 bool operator<(const Obj& other) const {
52 return (key_ < other.key_) ||
53 ((key_ == other.key_) && (val_ < other.val_));
55 bool operator<=(const Obj& other) const {
56 return (key_ <= other.key_) ||
57 ((key_ == other.key_) && (val_ <= other.val_));
59 bool operator>(const Obj& other) const {
60 return (key_ > other.key_) ||
61 ((key_ == other.key_) && (val_ > other.val_));