Home | History | Annotate | Download | only in intltest

Lines Matching refs:sortk2

509     CollationKey sortk1, sortk2, sortk3;
513 col3->getCollationKey(test2, sortk2, status);
516 doAssert(sortk1.hashCode() != sortk2.hashCode(), "Hash test1 result incorrect");
517 doAssert(sortk2.hashCode() == sortk3.hashCode(), "Hash result not equal" );
539 CollationKey sortk1, sortk2;
560 doAssert((sortk1.compareTo(col->getCollationKey(test2, sortk2, key2Status)))
564 CollationKey sortk3(sortk2), sortkNew, sortkEmpty;
568 doAssert((sortk1 != sortk2), "The sort keys should be different");
569 doAssert((sortk1.hashCode() != sortk2.hashCode()), "sort key hashCode() failed");
570 doAssert((sortk2 == sortk3), "The sort keys should be the same");
575 doAssert(sortk2.compareTo(sortk3) == Collator::EQUAL, "Result should be \"abcda\" == \"abcda\"");
580 doAssert(sortk2.compareTo(sortk3, success) == UCOL_EQUAL, "Result should be \"abcda\" == \"abcda\"");
588 const uint8_t* byteArray2 = sortk2.getByteArray(cnt2);
604 byteArray4 = sortk2.getByteArray(cnt4);
614 doAssert(sortk2.compareTo(sortk5) == Collator::EQUAL, "CollationKey::toByteArray(sortk2) Failed.");
617 doAssert(sortk2.compareTo(sortk7) == Collator::EQUAL, "CollationKey::getByteArray(sortk2) Failed.");
622 doAssert(sortk2 == sortk5, "sortk2 == sortk5 Failed.");
625 doAssert(sortk2 == sortk7, "sortk2 == sortk7 Failed.");
633 doAssert(sortk2 != sortk3, "sortk2 != sortk3 Failed.");
638 col->getCollationKey(test2, sortk2, key2Status))