Lines Matching defs:status
35 SimpleDateFormatStaticSets::SimpleDateFormatStaticSets(UErrorCode &status)
40 fDateIgnorables = new UnicodeSet(UNICODE_STRING("[-,./[:whitespace:]]", 20), status);
41 fTimeIgnorables = new UnicodeSet(UNICODE_STRING("[-.:[:whitespace:]]", 19), status);
42 fOtherIgnorables = new UnicodeSet(UNICODE_STRING("[:whitespace:]", 14), status);
61 status = U_MEMORY_ALLOCATION_ERROR;
94 static void U_CALLCONV smpdtfmt_initSets(UErrorCode &status) {
97 gStaticSets = new SimpleDateFormatStaticSets(status);
99 status = U_MEMORY_ALLOCATION_ERROR;
108 UErrorCode status = U_ZERO_ERROR;
109 umtx_initOnce(gSimpleDateFormatStaticSetsInitOnce, &smpdtfmt_initSets, status);
110 if (U_FAILURE(status)) {