Lines Matching full:key2
1136 uint8_t key1[100], key2[100];
1144 len2 = calcKeyIncremental(coll, text2[i], -1, key2, sizeof(key2), status);
1150 if (len1 == len2 && uprv_memcmp(key1, key2, len1) == 0) {
1153 logln(UnicodeString("Keys produced -\n") + " text1: " + text1[i] + "\n" + " key1 : " + TestUtility::hex(key1, len1) + "\n" + " text2: " + text2[i] + "\n" + " key2 : "
1154 + TestUtility::hex(key2, len2));
1192 CollationKey key1, key2;
1204 col->getCollationKey(str2, len, key2, status);
1206 UCollationResult cmpKey = key1.compareTo(key2, status);