Lines Matching refs:TId
64 typedef TUInt TId; typedef
69 IdSet(TId id) : bitset(0) { in IdSet()
73 void add(TId id) { in add()
77 void subtract(TId id) { in subtract()
89 bool operator==(const IdSet<TId> &rhs) const {
93 bool operator<(const IdSet<TId> &rhs) const {
97 IdSet<TId> operator|(const IdSet<TId> &rhs) const {
103 IdSet<TId> operator|(TId id) const {
104 IdSet<TId> ret;
110 static const int max_elements = sizeof(TId) * 8;
116 template <typename TId, typename TNum>
118 IdSet<TId> id_set;
121 RectSet(const IdSet<TId> &i, const Rect<TNum> &r) : id_set(i), rect(r) { in RectSet()
124 bool operator==(const RectSet<TId, TNum> &rhs) const {