Home | History | Annotate | Download | only in intltest

Lines Matching refs:col2

237     RuleBasedCollator *col1, *col2, *col3, *col4;
253 col2 = new RuleBasedCollator(ruleset2, status);
285 UnicodeString rule2 = col2->getRules();
312 delete col2;
435 Collator *col2 = 0;
437 col2 = Collator::createInstance(dk, success);
454 doAssert(col1->hashCode() != col2->hashCode(), "Hash test1 result incorrect" );
455 doAssert(!(col1->hashCode() == col2->hashCode()), "Hash test2 result incorrect" );
460 delete col2;
822 RuleBasedCollator *col2 = new RuleBasedCollator(ruleset2, success);
829 doAssert((*col1 != *col2), "The two different table collations compared equal");
830 *col1 = *col2;
831 doAssert((*col1 == *col2), "Collator objects not equal after assignment (operator=)");
879 delete col2;
899 Collator *col2 = col1->clone();
900 doAssert((*col1 == *col2), "Cloned object is not equal to the orginal");
919 res = col2->compare(first, second, status);
923 if (((RuleBasedCollator*)col2)->getRules() != copiedEnglishRules) {
925 + copiedEnglishRules + UnicodeString("\ngetRules=") + ((RuleBasedCollator*)col2)->getRules());
936 delete col2;
2221 TestCollator col2;
2222 doAssert(col1 != col2, "2 instances of TestCollator should be different");
2223 if (col1.hashCode() != col2.hashCode()) {