Home | History | Annotate | Download | only in i18n

Lines Matching refs:intStatus

177     UErrorCode intStatus = U_ZERO_ERROR;
196 intStatus = U_ZERO_ERROR;
198 UResourceBundle *defaultColl = ures_getByKeyWithFallback(collations, "default", NULL, &intStatus);
199 if(U_SUCCESS(intStatus)) {
201 const UChar *defaultKey = ures_getString(defaultColl, &defaultKeyLen, &intStatus);
232 intStatus = U_ZERO_ERROR;
234 binary = ures_getByKey(collElem, "%%CollationBin", NULL, &intStatus);
236 if(intStatus == U_MISSING_RESOURCE_ERROR) { /* we didn't find the binary image, we should use the rules */
242 } else if(U_SUCCESS(intStatus)) { /* otherwise, we'll pick a collation data that exists */
275 reorderRes = ures_getByKey(collElem, "%%ReorderCodes", NULL, &intStatus);
276 if (U_SUCCESS(intStatus)) {
295 *status = intStatus; // propagate underlying error
299 intStatus = U_ZERO_ERROR;
300 result->rules = ures_getStringByKey(collElem, "Sequence", &result->rulesLength, &intStatus);
306 intStatus = U_ZERO_ERROR;
307 result->ucaRules = ures_getStringByKey(b,"UCARules",NULL,&intStatus);