Home | History | Annotate | Download | only in cintltst

Lines Matching defs:temp2

527     char            temp2[20];
555 sprintf(temp2, "%x", (int)uloc_getLCID(testLocale));
556 if (strcmp(temp2, rawData2[LCID][i]) != 0) {
557 log_err("LCID mismatch: %s versus %s\n", temp2 , rawData2[LCID][i]);
3025 char temp2[40], temp3[40];
3033 lengthPre = uloc_getLocaleForLCID(lcid, temp2, 4, &status);
3041 length = uloc_getLocaleForLCID(lcid, temp2, sizeof(temp2)/sizeof(char), &status);
3051 length = uloc_getLocaleForLCID(0x12345, temp2, sizeof(temp2)/sizeof(char), &status);
3053 log_err(" unexpected result from uloc_getLocaleForLCID(0x12345): %s, status %s\n", temp2, u_errorName(status));
3065 length = uloc_getLocaleForLCID(lcid, temp2, sizeof(temp2)/sizeof(char), &status);
3072 if (length != uprv_strlen(temp2)) {
3073 log_err(" returned length %d not correct for uloc_getLocaleForLCID(%#04x), expected %d\n", length, lcid, uprv_strlen(temp2));
3077 length = uloc_getLanguage(temp2, temp3, sizeof(temp3)/sizeof(char), &status);
3079 log_err(" couldn't get language in uloc_getLocaleForLCID(%#04x) = %s, status %s\n", lcid, temp2, u_errorName(status));
3083 log_err(" language doesn't match expected %s in in uloc_getLocaleForLCID(%#04x) = %s\n", rawData2[LANG][i], lcid, temp2);
3086 length = uloc_getScript(temp2, temp3, sizeof(temp3)/sizeof(char), &status);
3088 log_err(" couldn't get script in uloc_getLocaleForLCID(%#04x) = %s, status %s\n", lcid, temp2, u_errorName(status));
3092 log_err(" script doesn't match expected %s in in uloc_getLocaleForLCID(%#04x) = %s\n", rawData2[SCRIPT][i], lcid, temp2);
3095 length = uloc_getCountry(temp2, temp3, sizeof(temp3)/sizeof(char), &status);
3097 log_err(" couldn't get country in uloc_getLocaleForLCID(%#04x) = %s, status %s\n", lcid, temp2, u_errorName(status));
3101 log_err(" country doesn't match expected %s in in uloc_getLocaleForLCID(%#04x) = %s\n", rawData2[CTRY][i], lcid, temp2);