Home | History | Annotate | Download | only in gm

Lines Matching refs:fBitfield

84         ErrorCombination() : fBitfield(0) {}
85 ErrorCombination(const ErrorType type) : fBitfield(1 << type) {}
91 return (0 == this->fBitfield);
98 this->fBitfield |= (1 << type);
105 this->fBitfield |= other.fBitfield;
112 return !(0 == (this->fBitfield & (1 << type)));
141 retval.fBitfield = this->fBitfield | other.fBitfield;
151 retval.fBitfield = this->fBitfield & ~(other.fBitfield);
156 int fBitfield;