Home | History | Annotate | Download | only in i18n

Lines Matching full:next

376             while (lastChain->next !=NULL) {
377 lastChain = lastChain->next;
380 while (orNode->next != NULL) {
381 orNode = orNode->next;
383 orNode->next= new OrConstraint();
384 orNode=orNode->next;
385 orNode->next=NULL;
429 while (ruleChain->next!=NULL){
430 ruleChain=ruleChain->next;
432 ruleChain=ruleChain->next=new RuleChain();
505 rc = rc->next;
548 rc = rc->next;
568 rc = rc->next;
598 rc = rc->next;
765 next=NULL;
776 if (other.next==NULL) {
777 this->next=NULL;
780 this->next = new AndConstraint(*other.next);
785 if (next!=NULL) {
786 delete next;
868 this->next = new AndConstraint();
869 return this->next;
874 next=NULL;
884 if (other.next == NULL ) {
885 this->next = NULL;
888 this->next = new OrConstraint(*(other.next));
896 if (next!=NULL) {
897 delete next;
906 while (curOrConstraint->next!=NULL) {
907 curOrConstraint = curOrConstraint->next;
909 curOrConstraint->next = NULL;
925 andRule=andRule->next;
927 orRule = orRule->next;
935 for (OrConstraint *orc = this; orc != NULL; orc = orc->next) {
937 for (AndConstraint *andc = orc->childNode; andc != NULL; andc = andc->next) {
952 next = NULL;
965 if (other.next != NULL ) {
966 this->next = new RuleChain(*other.next);
970 this->next = NULL;
975 if (next != NULL) {
976 delete next;
991 if ( next != NULL ) {
992 return next->select(number);
1067 if ( (andRule=andRule->next) != NULL) {
1071 if ( (orRule = orRule->next) != NULL ) {
1076 if ( next != NULL ) {
1077 next->dumpRules(result);
1090 if ( next != NULL ) {
1091 next->setRepeatLimit();
1092 limit = next->repeatLimit;
1101 andRule = andRule->next;
1103 orRule = orRule->next;
1118 if ( next != NULL ) {
1119 return next->getKeywords(capacityOfKeywords, keywords, arraySize);
1132 if ( next != NULL ) {
1133 return next->isKeyword(keywordParam);
1407 node=node->next;