Lines Matching refs:TId
91 typedef TUInt TId; typedef
96 IdSet(TId id) : bitset(0) { in IdSet()
100 void add(TId id) { in add()
104 void subtract(TId id) { in subtract()
116 bool operator==(const IdSet<TId> &rhs) const {
120 bool operator<(const IdSet<TId> &rhs) const {
124 IdSet<TId> operator|(const IdSet<TId> &rhs) const {
130 IdSet<TId> operator|(TId id) const {
131 IdSet<TId> ret;
137 static const int max_elements = sizeof(TId) * 8;
143 template <typename TId, typename TNum>
145 IdSet<TId> id_set;
148 RectSet(const IdSet<TId> &i, const Rect<TNum> &r) : id_set(i), rect(r) { in RectSet()
151 bool operator==(const RectSet<TId, TNum> &rhs) const {