Lines Matching refs:status

185     UErrorCode status = U_ZERO_ERROR;
188 fResource = ures_copyResb(0, other.fResource, &status);
226 UErrorCode status = U_ZERO_ERROR;
228 fResource = ures_copyResb(0, other.fResource, &status);
251 UnicodeString ResourceBundle::getString(UErrorCode& status) const {
253 const UChar *r = ures_getString(fResource, &len, &status);
257 const uint8_t *ResourceBundle::getBinary(int32_t& len, UErrorCode& status) const {
258 return ures_getBinary(fResource, &len, &status);
261 const int32_t *ResourceBundle::getIntVector(int32_t& len, UErrorCode& status) const {
262 return ures_getIntVector(fResource, &len, &status);
265 uint32_t ResourceBundle::getUInt(UErrorCode& status) const {
266 return ures_getUInt(fResource, &status);
269 int32_t ResourceBundle::getInt(UErrorCode& status) const {
270 return ures_getInt(fResource, &status);
297 ResourceBundle ResourceBundle::getNext(UErrorCode& status) {
301 ures_getNextResource(fResource, &r, &status);
302 ResourceBundle res(&r, status);
303 if (U_SUCCESS(status)) {
309 UnicodeString ResourceBundle::getNextString(UErrorCode& status) {
311 const UChar* r = ures_getNextString(fResource, &len, 0, &status);
315 UnicodeString ResourceBundle::getNextString(const char ** key, UErrorCode& status) {
317 const UChar* r = ures_getNextString(fResource, &len, key, &status);
321 ResourceBundle ResourceBundle::get(int32_t indexR, UErrorCode& status) const {
325 ures_getByIndex(fResource, indexR, &r, &status);
326 ResourceBundle res(&r, status);
327 if (U_SUCCESS(status)) {
333 UnicodeString ResourceBundle::getStringEx(int32_t indexS, UErrorCode& status) const {
335 const UChar* r = ures_getStringByIndex(fResource, indexS, &len, &status);
339 ResourceBundle ResourceBundle::get(const char* key, UErrorCode& status) const {
343 ures_getByKey(fResource, key, &r, &status);
344 ResourceBundle res(&r, status);
345 if (U_SUCCESS(status)) {
351 ResourceBundle ResourceBundle::getWithFallback(const char* key, UErrorCode& status){
354 ures_getByKeyWithFallback(fResource, key, &r, &status);
355 ResourceBundle res(&r, status);
356 if(U_SUCCESS(status)){
361 UnicodeString ResourceBundle::getStringEx(const char* key, UErrorCode& status) const {
363 const UChar* r = ures_getStringByKey(fResource, key, &len, &status);
383 UErrorCode status = U_ZERO_ERROR;
384 const char *localeName = ures_getLocaleInternal(fResource, &status);
390 const Locale ResourceBundle::getLocale(ULocDataLocaleType type, UErrorCode &status) const
392 return ures_getLocaleByType(fResource, type, &status);