Home | History | Annotate | Download | only in intltest

Lines Matching refs:col2

248     RuleBasedCollator *col1, *col2, *col3, *col4;
264 col2 = new RuleBasedCollator(ruleset2, status);
296 UnicodeString rule2 = col2->getRules();
323 delete col2;
446 Collator *col2 = 0;
448 col2 = Collator::createInstance(dk, success);
465 doAssert(col1->hashCode() != col2->hashCode(), "Hash test1 result incorrect" );
466 doAssert(!(col1->hashCode() == col2->hashCode()), "Hash test2 result incorrect" );
471 delete col2;
833 RuleBasedCollator *col2 = new RuleBasedCollator(ruleset2, success);
840 doAssert((*col1 != *col2), "The two different table collations compared equal");
841 *col1 = *col2;
842 doAssert((*col1 == *col2), "Collator objects not equal after assignment (operator=)");
890 delete col2;
910 Collator *col2 = col1->clone();
911 doAssert((*col1 == *col2), "Cloned object is not equal to the orginal");
930 res = col2->compare(first, second, status);
934 if (((RuleBasedCollator*)col2)->getRules() != copiedEnglishRules) {
936 + copiedEnglishRules + UnicodeString("\ngetRules=") + ((RuleBasedCollator*)col2)->getRules());
947 delete col2;
2234 TestCollator col2;
2235 doAssert(col1 != col2, "2 instances of TestCollator should be different");
2236 if (col1.hashCode() != col2.hashCode()) {