Home | History | Annotate | Download | only in intltest

Lines Matching defs:coll

11 #include "unicode/coll.h"
809 Collator *coll = NULL;
811 coll = Collator::createInstance(Locale::getJapan(), status);
813 if (coll == NULL || U_FAILURE(status))
816 delete coll;
823 coll->getCollationKey(test, key, status);
830 delete coll;
1084 static int32_t calcKeyIncremental(UCollator *coll, const UChar* text, int32_t len, uint8_t *keyBuf, int32_t /*keyBufLen*/, UErrorCode& status) {
1093 int32_t keyPartLen = ucol_nextSortKeyPart(coll, &uiter, state, &keyBuf[keyLen], count, &status);
1107 UCollator *coll;
1129 coll = ucol_openFromShortString("EO_S1", FALSE, NULL, &status);
1139 len1 = calcKeyIncremental(coll, text1[i], -1, key1, sizeof(key1), status);
1144 len2 = calcKeyIncremental(coll, text2[i], -1, key2, sizeof(key2), status);
1157 ucol_close(coll);