Home
last modified time | relevance | path

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

/external/clang/test/Sema/
Dast-print.c51 struct pair_t { struct
57 struct pair_t p = {a: 3, .b = 4};
/external/harfbuzz_ng/src/
Dhb-algs.hh305 typedef hb_pair_t<T1, T2> pair_t; typedef
317 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 <=()