Lines Matching full:error
62 log_err("ucol_getAttribute returned error: %s\n", u_errorName(error_code));
77 log_err("ucol_getAttribute returned error: %s\n", u_errorName(error_code));
95 log_err("ucol_getAttribute returned error: %s\n", u_errorName(error_code));
168 log_err_status(status, "ucol_setAttribute with the default value returned error: %s\n", u_errorName(status));
173 log_err("ucol_getAttribute returned error: %s\n", u_errorName(status));
179 log_err("ucol_setAttribute with the value %i returned error: %s\n", attrs[i].val[j], u_errorName(status));
186 log_err("ucol_setAttribute with the bad value didn't return an error\n");
193 log_err("ucol_setAttribute with the default valuereturned error: %s\n", u_errorName(status));
200 log_err("ucol_getAttribute for UCOL_ATTRIBUTE_COUNT didn't return an error\n");
205 log_err("ucol_setAttribute for UCOL_ATTRIBUTE_COUNT didn't return an error\n");
215 log_err("ERROR : %s\n", message);
246 log_err("ERROR: Failed to get resource for \"root Locale\" with %s", myErrorName(status));
253 log_err("ERROR: ures_getBinary() failed\n");
256 log_err("ERROR: ures_getByKey(locale(default), %%Collation) failed");
261 log_err("Error: ucol_getDefaultRulesArray() failed to return the correct length.\n");
264 log_err("Error: ucol_getDefaultRulesArray() failed\n");
385 log_err("ERROR: in getDisplayName: %s\n", myErrorName(status));
416 log_err("ERROR: Creating French collation failed.: %s\n", myErrorName(status));
441 log_err("ERROR: in getDisplayName: %s\n", myErrorName(status));
530 log_err("ERROR: CollationElement iterator creation failed.: %s\n", myErrorName(status));
538 log_err("ERROR: CollationElement iterator creation failed.: %s\n", myErrorName(status));
625 log_err_status(status, "ERROR: collation creation failed.: %s\n", myErrorName(status));
632 log_err("ERROR: vi_VN collation did not have cannonical decomposition for normalization!\n");
639 log_err("ERROR: el_GR collation did not have cannonical decomposition for normalization!\n");
646 log_err("ERROR: en_US collation had cannonical decomposition for normalization!\n");
693 /* Check the various error & informational states: */
700 /* error status - should return 0 & keep error the same */
704 log_err("FAIL: Cloned Collator failed to deal correctly with incoming error status\n");
708 /* Null buffer size pointer - just returns NULL & set error to U_ILLEGAL_ARGUMENT_ERROR*/
743 /* Null buffer pointer - return Collator & set error to U_SAFECLONE_ALLOCATED_ERROR */
825 log_data_err("Couldn't open collator. Error: %s\n", u_errorName(err));
831 log_err("ucol_cloneBinary - couldn't check size. Error: %s\n", u_errorName(err));
839 log_err("ucol_cloneBinary - couldn't clone.. Error: %s\n", u_errorName(err));
848 log_err("ucol_openBinary failed. Error: %s\n", u_errorName(err));
917 log_err("ERROR: Normal collation creation failed with locale: %s : %s\n", curLoc, myErrorName(err));
927 log_err("ERROR: Creating collator from rules failed with locale: %s : %s\n", curLoc, myErrorName(err));
1058 log_err_status(status, "ERROR: Default collation creation failed.: %s\n", myErrorName(status));
1065 log_err("ERROR: default collation did not have UCOL_DEFAULT_STRENGTH !\n");
1185 log_err_status(status, "ERROR: Default collation creation failed.: %s\n", myErrorName(status));
1241 log_err_status(status, "ERROR: Default collation creation failed.: %s\n", myErrorName(status));
1254 log_err("ERROR: Default collationElement iterator creation failed.: %s\n", myErrorName(status));
1262 log_err("ERROR: Default collationElement iterator creation failed.: %s\n", myErrorName(status));
1270 log_err("ERROR: Default collationElement iterator creation failed.: %s\n", myErrorName(status));
1279 log_err("Error in setOffset for UCollatorElements iterator.: %s\n", myErrorName(status));
1285 log_err("error in set and get Offset got %d instead of 6\n", ucol_getOffset(iterator1));
1392 log_err("[Coll %s]: Error in requested locale, expected %s, got %s\n", testStruct[i].requestedLocale, testStruct[i].requestedLocale, locale);
1396 log_err("[Coll %s]: Error in valid locale, expected %s, got %s\n", testStruct[i].requestedLocale, testStruct[i].validLocale, locale);
1400 log_err("[Coll %s]: Error in actual locale, expected %s, got %s\n", testStruct[i].requestedLocale, testStruct[i].actualLocale, locale);
1457 log_err("Error in countAvailable(), it returned %d\n", count);
1693 UErrorCode error = U_ZERO_ERROR;
1694 UCollator *coll = ucol_open(NULL, &error);
1696 if (U_FAILURE(error)) {
1697 log_err_status(error, "Creation of default collator failed\n");
1701 ucol_setAttribute(coll, UCOL_FRENCH_COLLATION, UCOL_OFF, &error);
1702 if (ucol_getAttribute(coll, UCOL_FRENCH_COLLATION, &error) != UCOL_OFF ||
1703 U_FAILURE(error)) {
1704 log_err_status(error, "Setting and retrieving of the french collation failed\n");
1707 ucol_setAttribute(coll, UCOL_FRENCH_COLLATION, UCOL_ON, &error);
1708 if (ucol_getAttribute(coll, UCOL_FRENCH_COLLATION, &error) != UCOL_ON ||
1709 U_FAILURE(error)) {
1710 log_err_status(error, "Setting and retrieving of the french collation failed\n");
1713 ucol_setAttribute(coll, UCOL_ALTERNATE_HANDLING, UCOL_SHIFTED, &error);
1714 if (ucol_getAttribute(coll, UCOL_ALTERNATE_HANDLING, &error) != UCOL_SHIFTED ||
1715 U_FAILURE(error)) {
1716 log_err_status(error, "Setting and retrieving of the alternate handling failed\n");
1719 ucol_setAttribute(coll, UCOL_ALTERNATE_HANDLING, UCOL_NON_IGNORABLE, &error);
1720 if (ucol_getAttribute(coll, UCOL_ALTERNATE_HANDLING, &error) != UCOL_NON_IGNORABLE ||
1721 U_FAILURE(error)) {
1722 log_err_status(error, "Setting and retrieving of the alternate handling failed\n");
1725 ucol_setAttribute(coll, UCOL_CASE_FIRST, UCOL_LOWER_FIRST, &error);
1726 if (ucol_getAttribute(coll, UCOL_CASE_FIRST, &error) != UCOL_LOWER_FIRST ||
1727 U_FAILURE(error)) {
1728 log_err_status(error, "Setting and retrieving of the case first attribute failed\n");
1731 ucol_setAttribute(coll, UCOL_CASE_FIRST, UCOL_UPPER_FIRST, &error);
1732 if (ucol_getAttribute(coll, UCOL_CASE_FIRST, &error) != UCOL_UPPER_FIRST ||
1733 U_FAILURE(error)) {
1734 log_err_status(error, "Setting and retrieving of the case first attribute failed\n");
1737 ucol_setAttribute(coll, UCOL_CASE_LEVEL, UCOL_ON, &error);
1738 if (ucol_getAttribute(coll, UCOL_CASE_LEVEL, &error) != UCOL_ON ||
1739 U_FAILURE(error)) {
1740 log_err_status(error, "Setting and retrieving of the case level attribute failed\n");
1743 ucol_setAttribute(coll, UCOL_CASE_LEVEL, UCOL_OFF, &error);
1744 if (ucol_getAttribute(coll, UCOL_CASE_LEVEL, &error) != UCOL_OFF ||
1745 U_FAILURE(error)) {
1746 log_err_status(error, "Setting and retrieving of the case level attribute failed\n");
1749 ucol_setAttribute(coll, UCOL_NORMALIZATION_MODE, UCOL_ON, &error);
1750 if (ucol_getAttribute(coll, UCOL_NORMALIZATION_MODE, &error) != UCOL_ON ||
1751 U_FAILURE(error)) {
1752 log_err_status(error, "Setting and retrieving of the normalization on/off attribute failed\n");
1755 ucol_setAttribute(coll, UCOL_NORMALIZATION_MODE, UCOL_OFF, &error);
1756 if (ucol_getAttribute(coll, UCOL_NORMALIZATION_MODE, &error) != UCOL_OFF ||
1757 U_FAILURE(error)) {
1758 log_err_status(error, "Setting and retrieving of the normalization on/off attribute failed\n");
1761 ucol_setAttribute(coll, UCOL_STRENGTH, UCOL_PRIMARY, &error);
1762 if (ucol_getAttribute(coll, UCOL_STRENGTH, &error) != UCOL_PRIMARY ||
1763 U_FAILURE(error)) {
1764 log_err_status(error, "Setting and retrieving of the collation strength failed\n");
1767 ucol_setAttribute(coll, UCOL_STRENGTH, UCOL_SECONDARY, &error);
1768 if (ucol_getAttribute(coll, UCOL_STRENGTH, &error) != UCOL_SECONDARY ||
1769 U_FAILURE(error)) {
1770 log_err_status(error, "Setting and retrieving of the collation strength failed\n");
1773 ucol_setAttribute(coll, UCOL_STRENGTH, UCOL_TERTIARY, &error);
1774 if (ucol_getAttribute(coll, UCOL_STRENGTH, &error) != UCOL_TERTIARY ||
1775 U_FAILURE(error)) {
1776 log_err_status(error, "Setting and retrieving of the collation strength failed\n");
1779 ucol_setAttribute(coll, UCOL_STRENGTH, UCOL_QUATERNARY, &error);
1780 if (ucol_getAttribute(coll, UCOL_STRENGTH, &error) != UCOL_QUATERNARY ||
1781 U_FAILURE(error)) {
1782 log_err_status(error, "Setting and retrieving of the collation strength failed\n");
1785 ucol_setAttribute(coll, UCOL_STRENGTH, UCOL_IDENTICAL, &error);
1786 if (ucol_getAttribute(coll, UCOL_STRENGTH, &error) != UCOL_IDENTICAL ||
1787 U_FAILURE(error)) {
1788 log_err_status(error, "Setting and retrieving of the collation strength failed\n");
1901 log_err("Error while comparing prefixed keys @ strength %s:\n", strengthsC[strength<=UCOL_QUATERNARY?strength:4]);
1907 log_err("Error while comparing suffixed keys @ strength %s:\n", strengthsC[strength<=UCOL_QUATERNARY?strength:4]);
2042 log_err("Got parse error offset %i, but expected %i instead for '%s'\n",
2155 log_err("error %s. %i\n", u_errorName(status), setLen);
2163 log_err("error %s. %i\n", u_errorName(status), setLen);
2173 log_err("error %s. %i\n", u_errorName(status), setLen);
2214 log_data_err("could not load collators or error occured: %s\n",
2220 log_data_err("could not load UCA collator or error occured: %s\n",
2281 log_err("ucol_open(%s, ...) should return an error or some sort of U_USING_FALLBACK_WARNING, but returned %s\n", loc, u_errorName(status));
2323 log_err_status(status, "Error getting keyword values: %s\n", u_errorName(status));
2338 log_err("While getting keyword value from locale: %s got this error: %s\n", locale, u_errorName(status));