Lines Matching refs:IdSet
62 struct IdSet { struct
66 IdSet() : bitset(0) { in IdSet() argument
69 IdSet(TId id) : bitset(0) { in IdSet() argument
89 bool operator==(const IdSet<TId> &rhs) const { argument
93 bool operator<(const IdSet<TId> &rhs) const {
97 IdSet<TId> operator|(const IdSet<TId> &rhs) const {
98 IdSet ret; argument
103 IdSet<TId> operator|(TId id) const {
104 IdSet<TId> ret; argument
118 IdSet<TId> id_set; argument
121 RectSet(const IdSet<TId> &i, const Rect<TNum> &r) : id_set(i), rect(r) { in RectSet()