Home | History | Annotate | Download | only in cintltst

Lines Matching defs:LCID

72     /* LCID */
174 LCID = 7,
555 if (strcmp(temp2, rawData2[LCID][i]) != 0) {
556 log_err("LCID mismatch: %s versus %s\n", temp2 , rawData2[LCID][i]);
1517 log_err("he,iw LCID mismatch: %X versus %X\n", uloc_getLCID("iw_IL"), uloc_getLCID("he_IL"));
1521 log_err("he,iw LCID mismatch: %X versus %X\n", uloc_getLCID("iw"), uloc_getLCID("he"));
2994 uint32_t lcid;
2996 lcid = uloc_getLCID("en_US");
2997 if (lcid != 0x0409) {
2998 log_err(" uloc_getLCID(\"en_US\") = %d, expected 0x0409\n", lcid);
3001 lengthPre = uloc_getLocaleForLCID(lcid, temp2, 4, &status);
3009 length = uloc_getLocaleForLCID(lcid, temp2, sizeof(temp2)/sizeof(char), &status);
3032 sscanf(rawData2[LCID][i], "%x", &lcid);
3033 length = uloc_getLocaleForLCID(lcid, temp2, sizeof(temp2)/sizeof(char), &status);
3035 log_err(" unexpected failure of uloc_getLocaleForLCID(%#04x), status %s\n", lcid, u_errorName(status));
3041 log_err(" returned length %d not correct for uloc_getLocaleForLCID(%#04x), expected %d\n", length, lcid, uprv_strlen(temp2));
3047 log_err(" couldn't get language in uloc_getLocaleForLCID(%#04x) = %s, status %s\n", lcid, temp2, u_errorName(status));
3051 log_err(" language doesn't match expected %s in in uloc_getLocaleForLCID(%#04x) = %s\n", rawData2[LANG][i], lcid, temp2);
3056 log_err(" couldn't get script in uloc_getLocaleForLCID(%#04x) = %s, status %s\n", lcid, temp2, u_errorName(status));
3060 log_err(" script doesn't match expected %s in in uloc_getLocaleForLCID(%#04x) = %s\n", rawData2[SCRIPT][i], lcid, temp2);
3065 log_err(" couldn't get country in uloc_getLocaleForLCID(%#04x) = %s, status %s\n", lcid, temp2, u_errorName(status));
3069 log_err(" country doesn't match expected %s in in uloc_getLocaleForLCID(%#04x) = %s\n", rawData2[CTRY][i], lcid, temp2);