Home | History | Annotate | Download | only in i18n

Lines Matching full: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; }
69 CollationRoot::getRoot(UErrorCode &errorCode) {
70 umtx_initOnce(initOnce, CollationRoot::load, errorCode);
71 if(U_FAILURE(errorCode)) { return NULL; }
76 CollationRoot::getData(UErrorCode &errorCode) {
77 const CollationTailoring *root = getRoot(errorCode);
78 if(U_FAILURE(errorCode)) { return NULL; }
83 CollationRoot::getSettings(UErrorCode &errorCode) {
84 const CollationTailoring *root = getRoot(errorCode);
85 if(U_FAILURE(errorCode)) { return NULL; }