Home | History | Annotate | Download | only in intltest

Lines Matching defs:sortkey

38 #include "unicode/sortkey.h"
636 logln("testing sortkey ends...");
653 logln("testing sortkey begins...");
1144 // Clone the key2 sortkey for later.
1209 "Binary format for 'abcda' sortkey different for secondary strength!");
1253 logln("testing sortkey ends...");
1268 uint8_t sortKey[12];
1269 int32_t length = col->getSortKey(i_and_phi, 2, sortKey, LENGTHOF(sortKey));
1274 if (length2 != length || 0 != uprv_memcmp(sortKey, sortKey2, capacity)) {
1702 uint8_t sortkey[512], lower[512], upper[512];
1807 skSize = coll->getSortKey(buffer, buffSize, sortkey, 512);
1808 lowerSize = ucol_getBound(sortkey, skSize, UCOL_BOUND_LOWER, 1, lower, 512, &status);
1809 upperSize = ucol_getBound(sortkey, skSize, UCOL_BOUND_UPPER_LONG, 1, upper, 512, &status);
1812 skSize = coll->getSortKey(buffer, buffSize, sortkey, 512);
1813 if(strcmp((const char *)lower, (const char *)sortkey) > 0) {
1816 if(strcmp((const char *)upper, (const char *)sortkey) <= 0) {