Lines Matching refs:AndConstraint
511 if ( (curAndConstraint->op==AndConstraint::MOD)&&
554 curAndConstraint->op=AndConstraint::MOD;
722 AndConstraint::AndConstraint() {
723 op = AndConstraint::NONE;
734 AndConstraint::AndConstraint(const AndConstraint& other) {
751 this->next = new AndConstraint(*other.next);
755 AndConstraint::~AndConstraint() {
764 AndConstraint::isFulfilled(const FixedDecimal &number) {
767 // An empty AndConstraint, created by a rule with a keyword but no following expression.
803 AndConstraint*
804 AndConstraint::add()
806 this->next = new AndConstraint();
820 this->childNode = new AndConstraint(*(other.childNode));
839 AndConstraint*
848 curOrConstraint->childNode = new AndConstraint();
860 AndConstraint* andRule = orRule->childNode;
935 AndConstraint* andRule=orRule->childNode;
937 if ((andRule->op==AndConstraint::NONE) && (andRule->rangeList==NULL) && (andRule->value == -1)) {
939 } else if ( (andRule->op==AndConstraint::NONE) && (andRule->rangeList==NULL) ) {
951 if (andRule->op==AndConstraint::MOD) {