Home | History | Annotate | Download | only in intltest

Lines Matching defs:copy

755     StringSearch *copy = new StringSearch(*result);
756 if (*(copy->getCollator()) != *(result->getCollator()) ||
757 copy->getBreakIterator() != result->getBreakIterator() ||
758 copy->getMatchedLength() != result->getMatchedLength() ||
759 copy->getMatchedStart() != result->getMatchedStart() ||
760 copy->getOffset() != result->getOffset() ||
761 copy->getPattern() != result->getPattern() ||
762 copy->getText() != result->getText() ||
763 *(copy) != *(result))
767 delete copy;
769 copy = (StringSearch *)result->safeClone();
770 if (*(copy->getCollator()) != *(result->getCollator()) ||
771 copy->getBreakIterator() != result->getBreakIterator() ||
772 copy->getMatchedLength() != result->getMatchedLength() ||
773 copy->getMatchedStart() != result->getMatchedStart() ||
774 copy->getOffset() != result->getOffset() ||
775 copy->getPattern() != result->getPattern() ||
776 copy->getText() != result->getText() ||
777 *(copy) != *(result)) {
790 if (*result == *copy) {
793 *copy = *result;
794 if (*(copy->getCollator()) != *(result->getCollator()) ||
795 copy->getBreakIterator() != result->getBreakIterator() ||
796 copy->getMatchedLength() != result->getMatchedLength() ||
797 copy->getMatchedStart() != result->getMatchedStart() ||
798 copy->getOffset() != result->getOffset() ||
799 copy->getPattern() != result->getPattern() ||
800 copy->getText() != result->getText() ||
801 *(copy) != *(result)) {
808 delete copy;