Lines Matching refs:AndConstraint
352 AndConstraint *curAndConstraint=NULL;
407 if ( (curAndConstraint->op==AndConstraint::MOD)&&
422 curAndConstraint->op=AndConstraint::MOD;
758 AndConstraint::AndConstraint() {
759 op = AndConstraint::NONE;
769 AndConstraint::AndConstraint(const AndConstraint& other) {
780 this->next = new AndConstraint(*other.next);
784 AndConstraint::~AndConstraint() {
792 AndConstraint::isFulfilled(double number) {
844 AndConstraint::isLimited() {
849 AndConstraint::updateRepeatLimit(int32_t maxLimit) {
865 AndConstraint*
866 AndConstraint::add()
868 this->next = new AndConstraint();
882 this->childNode = new AndConstraint(*(other.childNode));
901 AndConstraint*
910 curOrConstraint->childNode = new AndConstraint();
922 AndConstraint* andRule = orRule->childNode;
937 for (AndConstraint *andc = orc->childNode; andc != NULL; andc = andc->next) {
1008 AndConstraint* andRule=orRule->childNode;
1010 if ( (andRule->op==AndConstraint::NONE) && (andRule->rangeHigh==-1) ) {
1019 if (andRule->op==AndConstraint::MOD) {
1098 AndConstraint* andRule=orRule->childNode;