Home | History | Annotate | Download | only in unicode

Lines Matching refs:fBools

32     inline EnumSet() : fBools(0) {}
33 inline EnumSet(const EnumSet<T,minValue,limitValue>& other) : fBools(other.fBools) {}
35 inline void clear() { fBools=0; }
39 inline void set(T toSet, int32_t v) { fBools=(fBools&(~flag(toSet)))|(v?(flag(toSet)):0); }
40 inline int32_t get(T toCheck) const { return (fBools & flag(toCheck))?1:0; }
44 fBools = other.fBools;
49 return fBools;
55 uint32_t fBools;