Lines Matching refs:lcid
3552 uint32_t lcid; in TestGetLocaleForLCID() local
3554 lcid = uloc_getLCID("en_US"); in TestGetLocaleForLCID()
3555 if (lcid != 0x0409) { in TestGetLocaleForLCID()
3556 log_err(" uloc_getLCID(\"en_US\") = %d, expected 0x0409\n", lcid); in TestGetLocaleForLCID()
3559 lengthPre = uloc_getLocaleForLCID(lcid, temp2, 4, &status); in TestGetLocaleForLCID()
3567 length = uloc_getLocaleForLCID(lcid, temp2, UPRV_LENGTHOF(temp2), &status); in TestGetLocaleForLCID()
3590 sscanf(rawData2[LCID][i], "%x", &lcid); in TestGetLocaleForLCID()
3591 length = uloc_getLocaleForLCID(lcid, temp2, UPRV_LENGTHOF(temp2), &status); in TestGetLocaleForLCID()
3593 …log_err(" unexpected failure of uloc_getLocaleForLCID(%#04x), status %s\n", lcid, u_errorName(sta… in TestGetLocaleForLCID()
3599 … %d not correct for uloc_getLocaleForLCID(%#04x), expected %d\n", length, lcid, uprv_strlen(temp2)… in TestGetLocaleForLCID()
3605 …couldn't get language in uloc_getLocaleForLCID(%#04x) = %s, status %s\n", lcid, temp2, u_errorName… in TestGetLocaleForLCID()
3609 …sn't match expected %s in in uloc_getLocaleForLCID(%#04x) = %s\n", rawData2[LANG][i], lcid, temp2); in TestGetLocaleForLCID()
3614 …log_err(" couldn't get script in uloc_getLocaleForLCID(%#04x) = %s, status %s\n", lcid, temp2, u_… in TestGetLocaleForLCID()
3618 …'t match expected %s in in uloc_getLocaleForLCID(%#04x) = %s\n", rawData2[SCRIPT][i], lcid, temp2); in TestGetLocaleForLCID()
3623 … couldn't get country in uloc_getLocaleForLCID(%#04x) = %s, status %s\n", lcid, temp2, u_errorName… in TestGetLocaleForLCID()
3627 …sn't match expected %s in in uloc_getLocaleForLCID(%#04x) = %s\n", rawData2[CTRY][i], lcid, temp2); in TestGetLocaleForLCID()
6892 uint32_t lcid = uloc_getLCID(localeID); in TestBug20370() local
6893 if (lcid != 0) { in TestBug20370()