Lines Matching refs:IdSet
89 struct IdSet { struct
93 IdSet() : bitset(0) { in IdSet() function
96 IdSet(TId id) : bitset(0) { in IdSet() function
116 bool operator==(const IdSet<TId> &rhs) const { argument
120 bool operator<(const IdSet<TId> &rhs) const {
124 IdSet<TId> operator|(const IdSet<TId> &rhs) const {
125 IdSet ret; argument
130 IdSet<TId> operator|(TId id) const {
131 IdSet<TId> ret; argument
145 IdSet<TId> id_set; argument
148 RectSet(const IdSet<TId> &i, const Rect<TNum> &r) : id_set(i), rect(r) { in RectSet()