Searched refs:pair_t (Results 1 – 2 of 2) sorted by relevance
51 struct pair_t { struct57 struct pair_t p = {a: 3, .b = 4};
305 typedef hb_pair_t<T1, T2> pair_t; typedef317 bool operator == (const pair_t& o) const { return first == o.first && second == o.second; } in operator ==()318 bool operator != (const pair_t& o) const { return !(*this == o); } in operator !=()319 …bool operator < (const pair_t& o) const { return first < o.first || (first == o.first && second < … in operator <()320 bool operator >= (const pair_t& o) const { return !(*this < o); } in operator >=()321 …bool operator > (const pair_t& o) const { return first > o.first || (first == o.first && second > … in operator >()322 bool operator <= (const pair_t& o) const { return !(*this > o); } in operator <=()