Lines Matching refs:childNode
978 if ( other.childNode != nullptr ) { in OrConstraint()
979 this->childNode = new AndConstraint(*(other.childNode)); in OrConstraint()
980 if (this->childNode == nullptr) { in OrConstraint()
998 delete childNode; in ~OrConstraint()
999 childNode = nullptr; in ~OrConstraint()
1015 U_ASSERT(curOrConstraint->childNode == nullptr); in add()
1016 curOrConstraint->childNode = new AndConstraint(); in add()
1017 if (curOrConstraint->childNode == nullptr) { in add()
1021 return curOrConstraint->childNode; in add()
1031 AndConstraint* andRule = orRule->childNode; in isFulfilled()
1123 AndConstraint* andRule=orRule->childNode; in dumpRules()