Home | History | Annotate | Download | only in intltest

Lines Matching refs:sortkey

38 #include "unicode/sortkey.h"
627 logln("testing sortkey ends...");
644 logln("testing sortkey begins...");
1135 // Clone the key2 sortkey for later.
1200 "Binary format for 'abcda' sortkey different for secondary strength!");
1244 logln("testing sortkey ends...");
1644 uint8_t sortkey[512], lower[512], upper[512];
1749 skSize = coll->getSortKey(buffer, buffSize, sortkey, 512);
1750 lowerSize = ucol_getBound(sortkey, skSize, UCOL_BOUND_LOWER, 1, lower, 512, &status);
1751 upperSize = ucol_getBound(sortkey, skSize, UCOL_BOUND_UPPER_LONG, 1, upper, 512, &status);
1754 skSize = coll->getSortKey(buffer, buffSize, sortkey, 512);
1755 if(strcmp((const char *)lower, (const char *)sortkey) > 0) {
1758 if(strcmp((const char *)upper, (const char *)sortkey) <= 0) {