Lines Matching refs:status
11 UErrorCode status = U_ZERO_ERROR;
14 UConverter *conv = ucnv_open("utf8", &status);
22 uBufLen = uloc_getDisplayLanguage(loc, "en", UBuffer, 256, &status);
23 bufLen = ucnv_fromUChars(conv, buffer, 256, UBuffer, uBufLen, &status);
28 if(hasCountry = uloc_getCountry(loc, buffer, 256, &status)) {
29 uBufLen = uloc_getDisplayCountry(loc, "en", UBuffer, 256, &status);
30 bufLen = ucnv_fromUChars(conv, buffer, 256, UBuffer, uBufLen, &status);
36 if(uloc_getVariant(loc, buffer, 256, &status)) {
37 uBufLen = uloc_getDisplayVariant(loc, "en", UBuffer, 256, &status);
38 bufLen = ucnv_fromUChars(conv, buffer, 256, UBuffer, uBufLen, &status);