Lines Matching full:collation
241 binColl=ures_getByKey(res, "%%Collation", binColl, &status);
248 log_err("ERROR: ures_getByKey(locale(default), %%Collation) failed");
350 doAssert( (ucol_getStrength(col) == UCOL_TERTIARY), "collation object has the wrong strength");
351 doAssert( (ucol_getStrength(col) != UCOL_PRIMARY), "collation object's strength is primary difference");
355 doAssert( (ucol_getStrength(col) != UCOL_TERTIARY), "collation object's strength is secondary difference");
356 doAssert( (ucol_getStrength(col) != UCOL_PRIMARY), "collation object's strength is primary difference");
357 doAssert( (ucol_getStrength(col) == UCOL_SECONDARY), "collation object has the wrong strength");
360 log_verbose("Get display name for the default collation in German : \n");
367 log_verbose("the display name for default collation in german: %s\n", austrdup(disName) );
374 log_verbose("Default collation getDisplayName ended.\n");
415 log_err("ERROR: Creating French collation failed.: %s\n", myErrorName(status));
420 doAssert( (ucol_getStrength(col) != UCOL_TERTIARY), "collation object has the wrong strength");
421 collation object's strength is not primary difference");
425 doAssert( (ucol_getStrength(col) == UCOL_TERTIARY), "collation object's strength is not tertiary difference");
426 doAssert( (ucol_getStrength(col) != UCOL_PRIMARY), "collation object's strength is primary difference");
427 doAssert( (ucol_getStrength(col) != UCOL_SECONDARY), "collation object's strength is secondary difference");
430 log_verbose("Get display name for the french collation in english : \n");
436 log_verbose("the display name for french collation in english: %s\n", austrdup(disName) );
443 log_verbose("Default collation getDisplayName ended.\n");
572 log_err_status(status, "ucal_open() collation creation failed.: %s\n", myErrorName(status));
619 log_err_status(status, "ERROR: collation creation failed.: %s\n", myErrorName(status));
626 log_err("ERROR: vi_VN collation did not have canonical decomposition for normalization!\n");
633 log_err("ERROR: el_GR collation did not have canonical decomposition for normalization!\n");
640 log_err("ERROR: en_US collation had canonical decomposition for normalization!\n");
753 col=ucol_open("de@collation=phonebook", &err);
756 doAssert( (ucol_greater(col, umlautUStr, u_strlen(umlautUStr), oeStr, u_strlen(oeStr))), "Original German phonebook collation sorts differently than expected");
757 doAssert( (ucol_greater(someClonedCollators[0], umlautUStr, u_strlen(umlautUStr), oeStr, u_strlen(oeStr))), "Cloned German phonebook collation sorts differently than expected");
975 log_err("ERROR: Normal collation creation failed with locale: %s : %s\n", curLoc, myErrorName(err));
1100 log_err_status(status, "ERROR: Default collation creation failed.: %s\n", myErrorName(status));
1107 log_err("ERROR: default collation did not have UCOL_DEFAULT_STRENGTH !\n");
1225 log_err_status(status, "ERROR: Default collation creation failed.: %s\n", myErrorName(status));
1281 log_err_status(status, "ERROR: Default collation creation failed.: %s\n", myErrorName(status));
1755 log_err_status(error, "Setting and retrieving of the french collation failed\n");
1761 log_err_status(error, "Setting and retrieving of the french collation failed\n");
1815 log_err_status(error, "Setting and retrieving of the collation strength failed\n");
1821 log_err_status(error, "Setting and retrieving of the collation strength failed\n");
1827 log_err_status(error, "Setting and retrieving of the collation strength failed\n");
1833 log_err_status(error, "Setting and retrieving of the collation strength failed\n");
1839 log_err_status(error, "Setting and retrieving of the collation strength failed\n");
2035 * related to ticket #10372 "deprecate collation APIs for short definition strings",
2037 * as documented in ticket #10386 "collation short definition strings issues":
2047 {"LDE_RDE_KPHONEBOOK_T0024_ZLATN","KPHONEBOOK_LDE", "de@collation=phonebook", U_USING_FALLBACK_WARNING, 0, 0 },
2050 {"LDE_VPHONEBOOK_EO_SI","EO_KPHONEBOOK_LDE_SI", "de@collation=phonebook", U_ZERO_ERROR, 0, 0 },
2051 {"LDE_Kphonebook","KPHONEBOOK_LDE", "de@collation=phonebook", U_ZERO_ERROR, 0, 0 },
2052 {"Xqde_DE@collation=phonebookq_S3_EX","KPHONEBOOK_LDE", "de@collation=phonebook", U_USING_FALLBACK_WARNING, 0, 0 },
2277 * Ticket #4355 requested "Make collation work with minimal data.
2356 UCollator *coll = ucol_open("es@collation=pinyin", &status);
2358 log_data_err("Unable to open collator es@collation=pinyin\n");
2362 /* What do you mean that you know about using pinyin collation in Spanish!? This should be in the zh locale. */
2363 log_err("es@collation=pinyin should return U_USING_DEFAULT_WARNING, but returned %s\n", u_errorName(status));
2372 if (ucol_getKeywordValues("collation", &status) != NULL) {
2380 const char *loc = "zh_TW@collation=default";
2420 { "und@collation=phonebook", "standard", "eor", "search", NULL, NULL, NULL, NULL, NULL, NULL },
2421 { "de_DE@collation=pinyin", "standard", "phonebook", "search", "eor", NULL, NULL, NULL, NULL, NULL },
2422 { "zzz@collation=xxx", "standard", "eor", "search", NULL, NULL, NULL, NULL, NULL, NULL }
2436 keywordValues = ucol_getKeywordValuesForLocale("collation", locale, TRUE, &status);