Lines Matching refs:col
960 Collator *col = NULL;
962 col = Collator::createInstance(l, status);
964 if (col == NULL || U_FAILURE(status))
967 delete col;
974 col->getCollationKey("Nombre De Objeto", key, status);
981 delete col;
1252 RuleBasedCollator *col = (RuleBasedCollator *) en_us->clone();
1256 caseFirstCompressionSub(col, "default");
1259 col->setAttribute(UCOL_CASE_FIRST, UCOL_UPPER_FIRST, status);
1264 caseFirstCompressionSub(col, "upper first");
1267 col->setAttribute(UCOL_CASE_FIRST, UCOL_LOWER_FIRST, status);
1272 caseFirstCompressionSub(col, "lower first");
1274 delete col;
1277 void CollationRegressionTest::caseFirstCompressionSub(Collator *col, UnicodeString opt) {
1294 col->getCollationKey(str1, len, key1, status);
1295 col->getCollationKey(str2, len, key2, status);
1298 UCollationResult cmpCol = col->compare(str1, len, str2, len, status);