Home | History | Annotate | Download | only in cintltst

Lines Matching refs:uloc_getDisplayName

683     length=uloc_getDisplayName("qq_US_POSIX", "en_US", buffer, LENGTHOF(buffer), &errorCode);
703 uloc_getDisplayName(aLocale, testL[i], buffer, LENGTHOF(buffer), &errorCode);
705 log_err("FAIL in uloc_getDisplayName(%s,%s,..) -> %s\n", aLocale, testL[i], u_errorName(errorCode));
709 log_data_err("FAIL in uloc_getDisplayName(%s,%s,..) expected '%s' got '%s' (Are you missing data?)\n", aLocale, testL[i], expect[i], austrdup(buffer));
711 log_verbose("pass in uloc_getDisplayName(%s,%s,..) got '%s'\n", aLocale, testL[i], expect[i]);
730 int32_t preflightLen=uloc_getDisplayName(locale, displayLocale, NULL, 0, &ec);
735 len=uloc_getDisplayName(locale, displayLocale, result, LENGTHOF(result), &ec);
737 log_err("uloc_getDisplayName(%s, %s...) returned error: %s",
744 log_data_err("uloc_getDisplayName(%s, %s...) returned string of length %d, expected length %d",
747 log_err("uloc_getDisplayName(%s, %s...) returned preflight length %d, expected length %d",
754 log_err("uloc_getDisplayName(%s, %s...) mismatch", locale, displayLocale);
756 log_err("uloc_getDisplayName(%s, %s...) returned '%s' but expected '%s'",
764 len=uloc_getDisplayName(locale, displayLocale, result, i, &ec);
953 maxresultsize=uloc_getDisplayName(testLocale, displayLocale, NULL, maxresultsize, &status);
958 uloc_getDisplayName(testLocale, displayLocale, testName, maxresultsize + 1, &status);
1071 ulen = uloc_getDisplayName(itemPtr->namedLocale, itemPtr->displayLocale, getName, kDisplayNameBracketsMax, &status);
1073 log_data_err("uloc_getDisplayName for displayLocale %s and namedLocale %s returns unexpected name or status %s\n", itemPtr->displayLocale, itemPtr->namedLocale, myErrorName(status));
1399 size=uloc_getDisplayName(en_US_custom, "en_US", NULL, size, &status);
1403 uloc_getDisplayName(en_US_custom, "en_US", got, size + 1, &status);
2367 len = uloc_getDisplayName(localeId, localeId, buffer, 128, &status);
2995 uloc_getDisplayName(oldLoc, ULOC_US, name1, capacity, &status);
2997 log_err("uloc_getDisplayName(%s) failed %s\n", oldLoc, u_errorName(status));
3000 uloc_getDisplayName(newLoc, ULOC_US, name2, capacity, &status);
3002 log_err("uloc_getDisplayName(%s) failed %s\n", newLoc, u_errorName(status));
3010 log_verbose("uloc_getDisplayName old:%s new:%s\n", names1, names2);