Home | History | Annotate | Download | only in intltest

Lines Matching refs:sortk3

509     CollationKey sortk1, sortk2, sortk3;
514 col3->getCollationKey(test2, sortk3, status);
517 doAssert(sortk2.hashCode() == sortk3.hashCode(), "Hash result not equal" );
564 CollationKey sortk3(sortk2), sortkNew, sortkEmpty;
570 doAssert((sortk2 == sortk3), "The sort keys should be the same");
573 doAssert((sortkNew != sortk3), "The sort keys should be different");
574 doAssert(sortk1.compareTo(sortk3) == Collator::GREATER, "Result should be \"Abcda\" >>> \"abcda\"");
575 doAssert(sortk2.compareTo(sortk3) == Collator::EQUAL, "Result should be \"abcda\" == \"abcda\"");
579 doAssert(sortk1.compareTo(sortk3, success) == UCOL_GREATER, "Result should be \"Abcda\" >>> \"abcda\"");
580 doAssert(sortk2.compareTo(sortk3, success) == UCOL_EQUAL, "Result should be \"abcda\" == \"abcda\"");
631 sortk3 = sortk1;
632 doAssert(sortk1 == sortk3, "sortk1 = sortk3 assignment Failed.");
633 doAssert(sortk2 != sortk3, "sortk2 != sortk3 Failed.");