Home | History | Annotate | Download | only in i18n

Lines Matching full:errorcode

51 CollationRoot::load(UErrorCode &errorCode) {
52 if(U_FAILURE(errorCode)) { return; }
55 errorCode = U_MEMORY_ALLOCATION_ERROR;
60 CollationDataReader::isAcceptable, t->version, &errorCode);
61 if(U_FAILURE(errorCode)) { return; }
63 CollationDataReader::read(NULL, inBytes, udata_getLength(t->memory), *t, errorCode);
64 if(U_FAILURE(errorCode)) { return; }
75 CollationRoot::getRootCacheEntry(UErrorCode &errorCode) {
76 umtx_initOnce(initOnce, CollationRoot::load, errorCode);
77 if(U_FAILURE(errorCode)) { return NULL; }
82 CollationRoot::getRoot(UErrorCode &errorCode) {
83 umtx_initOnce(initOnce, CollationRoot::load, errorCode);
84 if(U_FAILURE(errorCode)) { return NULL; }
89 CollationRoot::getData(UErrorCode &errorCode) {
90 const CollationTailoring *root = getRoot(errorCode);
91 if(U_FAILURE(errorCode)) { return NULL; }
96 CollationRoot::getSettings(UErrorCode &errorCode) {
97 const CollationTailoring *root = getRoot(errorCode);
98 if(U_FAILURE(errorCode)) { return NULL; }