Lines Matching refs:errorCode_
126 errorCode_(src.errorCode_), in Builder()
148 errorCode_ = src.errorCode_; in operator =()
169 if (U_FAILURE(errorCode_)) { return false; } in ensureSupportedLocaleVector()
171 supportedLocales_ = new UVector(uprv_deleteUObject, nullptr, errorCode_); in ensureSupportedLocaleVector()
172 if (U_FAILURE(errorCode_)) { return false; } in ensureSupportedLocaleVector()
174 errorCode_ = U_MEMORY_ALLOCATION_ERROR; in ensureSupportedLocaleVector()
182 LocalePriorityList list(locales, errorCode_); in setSupportedLocalesFromListString()
183 if (U_FAILURE(errorCode_)) { return *this; } in setSupportedLocalesFromListString()
190 supportedLocales_->addElement(locale, errorCode_); in setSupportedLocalesFromListString()
191 if (U_FAILURE(errorCode_)) { in setSupportedLocalesFromListString()
200 if (U_FAILURE(errorCode_)) { return *this; } in setSupportedLocales()
207 errorCode_ = U_MEMORY_ALLOCATION_ERROR; in setSupportedLocales()
210 supportedLocales_->addElement(clone, errorCode_); in setSupportedLocales()
211 if (U_FAILURE(errorCode_)) { in setSupportedLocales()
223 errorCode_ = U_MEMORY_ALLOCATION_ERROR; in addSupportedLocale()
226 supportedLocales_->addElement(clone, errorCode_); in addSupportedLocale()
227 if (U_FAILURE(errorCode_)) { in addSupportedLocale()
234 if (U_FAILURE(errorCode_)) { return *this; } in setNoDefaultLocale()
242 if (U_FAILURE(errorCode_)) { return *this; } in setDefaultLocale()
247 errorCode_ = U_MEMORY_ALLOCATION_ERROR; in setDefaultLocale()
258 if (U_FAILURE(errorCode_)) { return *this; } in setFavorSubtag()
264 if (U_FAILURE(errorCode_)) { return *this; } in setDemotionPerDesiredLocale()
271 if (U_FAILURE(errorCode_)) { return *this; } in setMaxDistance()
277 errorCode_ = U_MEMORY_ALLOCATION_ERROR; in setMaxDistance()
298 if (U_FAILURE(errorCode_)) { return *this; }
309 if (U_SUCCESS(errorCode_)) { return FALSE; } in copyErrorTo()
310 outErrorCode = errorCode_; in copyErrorTo()
315 if (U_SUCCESS(errorCode) && U_FAILURE(errorCode_)) { in build()
316 errorCode = errorCode_; in build()