Lines Matching refs:toInsert
586 //Line *toInsert = (Line *)gElements.get(key);
587 Line *toInsert = (Line *)gExpansions.get(key);
588 if(toInsert != NULL) {
589 toInsert->isExpansion = true;
590 u_strcpy(toInsert->expansionString, line->expansionString);
591 toInsert->expLen = line->expLen;
592 toInsert->previous->next = toInsert->next;
593 toInsert->next->previous = toInsert->previous;
596 toInsert = new Line(*line);
597 toInsert->isExpansion = true;
598 gElements.put(UnicodeString(toInsert->name, toInsert->len), toInsert, status);
609 toInsert->previous = *(gLines+i-1);
610 toInsert->next = *(gLines+i);
611 toInsert->previous->next = toInsert;
612 toInsert->next->previous = toInsert;
748 Line *toInsert = new Line(*line);
749 toInsert->isExpansion = true;
750 gElements.put(UnicodeString(line->name, line->len), toInsert, status);
768 Line *toInsert = new Line(*line);
769 toInsert->isContraction = true;
770 gElements.put(UnicodeString(line->name, line->len), toInsert, status);
781 Line *toInsert = new Line(*line);
782 gElements.put(UnicodeString(line->name, line->len), toInsert, status);