Lines Matching refs:nBit
49 BitSet& operator=( sal_uInt16 nBit );
51 BitSet operator|( sal_uInt16 nBit ) const;
53 BitSet& operator|=( sal_uInt16 nBit );
57 BitSet& operator-=( sal_uInt16 nBit );
61 BitSet operator^( sal_uInt16 nBit ) const;
63 BitSet& operator^=( sal_uInt16 nBit );
67 sal_Bool Contains( sal_uInt16 nBit ) const;
70 sal_Bool operator==( sal_uInt16 nBit ) const;
72 sal_Bool operator!=( sal_uInt16 nBit ) const;
105 inline BitSet BitSet::operator|( sal_uInt16 nBit ) const in operator |()
107 return BitSet(*this) |= nBit; in operator |()
238 inline sal_Bool BitSet::operator!=( sal_uInt16 nBit ) const in operator !=()
240 return !( *this == nBit ); in operator !=()