Lines Matching refs:iState
63 void CSelectionCriterion::setCriterionState(int iState)
66 if (_iState != iState) {
68 _iState = iState;
106 bool CSelectionCriterion::is(int iState) const
108 return _iState == iState;
111 bool CSelectionCriterion::isNot(int iState) const
113 return _iState != iState;
116 bool CSelectionCriterion::includes(int iState) const
118 // For inclusive criterion, Includes checks if ALL the bit sets in iState are set in the
120 return (_iState & iState) == iState;
123 bool CSelectionCriterion::excludes(int iState) const
125 return (_iState & iState) == 0;