Home | History | Annotate | Download | only in i18n

Lines Matching refs:errorCode

49 CollationRoot::load(UErrorCode &errorCode) {
50 if(U_FAILURE(errorCode)) { return; }
53 errorCode = U_MEMORY_ALLOCATION_ERROR;
58 CollationDataReader::isAcceptable, t->version, &errorCode);
59 if(U_FAILURE(errorCode)) { return; }
61 CollationDataReader::read(NULL, inBytes, udata_getLength(t->memory), *t, errorCode);
62 if(U_FAILURE(errorCode)) { return; }
73 CollationRoot::getRootCacheEntry(UErrorCode &errorCode) {
74 umtx_initOnce(initOnce, CollationRoot::load, errorCode);
75 if(U_FAILURE(errorCode)) { return NULL; }
80 CollationRoot::getRoot(UErrorCode &errorCode) {
81 umtx_initOnce(initOnce, CollationRoot::load, errorCode);
82 if(U_FAILURE(errorCode)) { return NULL; }
87 CollationRoot::getData(UErrorCode &errorCode) {
88 const CollationTailoring *root = getRoot(errorCode);
89 if(U_FAILURE(errorCode)) { return NULL; }
94 CollationRoot::getSettings(UErrorCode &errorCode) {
95 const CollationTailoring *root = getRoot(errorCode);
96 if(U_FAILURE(errorCode)) { return NULL; }