Home | History | Annotate | Download | only in i18n

Lines Matching refs:AndConstraint

543             if ( (curAndConstraint->op==AndConstraint::MOD)&&
586 curAndConstraint->op=AndConstraint::MOD;
757 AndConstraint::AndConstraint(const AndConstraint& other) {
777 this->next = new AndConstraint(*other.next);
784 AndConstraint::~AndConstraint() {
792 AndConstraint::isFulfilled(const IFixedDecimal &number) {
795 // An empty AndConstraint, created by a rule with a keyword but no following expression.
832 AndConstraint*
833 AndConstraint::add(UErrorCode& status) {
838 this->next = new AndConstraint();
852 this->childNode = new AndConstraint(*(other.childNode));
877 AndConstraint*
889 curOrConstraint->childNode = new AndConstraint();
904 AndConstraint* andRule = orRule->childNode;
992 AndConstraint* andRule=orRule->childNode;
994 if ((andRule->op==AndConstraint::NONE) && (andRule->rangeList==nullptr) && (andRule->value == -1)) {
996 } else if ( (andRule->op==AndConstraint::NONE) && (andRule->rangeList==nullptr) ) {
1008 if (andRule->op==AndConstraint::MOD) {