Home | History | Annotate | Download | only in i18n

Lines Matching refs:AndConstraint

348     AndConstraint *curAndConstraint=NULL;
397 if ( (curAndConstraint->op==AndConstraint::MOD)&&
411 curAndConstraint->op=AndConstraint::MOD;
748 AndConstraint::AndConstraint() {
749 op = AndConstraint::NONE;
759 AndConstraint::AndConstraint(const AndConstraint& other) {
770 this->next = new AndConstraint(*other.next);
774 AndConstraint::~AndConstraint() {
782 AndConstraint::isFulfilled(double number) {
834 AndConstraint::isLimited() {
839 AndConstraint::updateRepeatLimit(int32_t maxLimit) {
855 AndConstraint*
856 AndConstraint::add()
858 this->next = new AndConstraint();
872 this->childNode = new AndConstraint(*(other.childNode));
891 AndConstraint*
900 curOrConstraint->childNode = new AndConstraint();
912 AndConstraint* andRule = orRule->childNode;
927 for (AndConstraint *andc = orc->childNode; andc != NULL; andc = andc->next) {
998 AndConstraint* andRule=orRule->childNode;
1000 if ( (andRule->op==AndConstraint::NONE) && (andRule->rangeHigh==-1) ) {
1009 if (andRule->op==AndConstraint::MOD) {
1088 AndConstraint* andRule=orRule->childNode;