Searched refs:icu_err (Results 1 – 2 of 2) sorted by relevance
/external/harfbuzz_ng/src/ |
D | hb-icu.cc | 193 UErrorCode icu_err; in hb_icu_unicode_compose() local 202 icu_err = U_ZERO_ERROR; in hb_icu_unicode_compose() 203 len = unorm_normalize (utf16, len, UNORM_NFC, 0, normalized, ARRAY_LENGTH (normalized), &icu_err); in hb_icu_unicode_compose() 204 if (U_FAILURE (icu_err)) in hb_icu_unicode_compose() 227 UErrorCode icu_err = U_ZERO_ERROR; in hb_icu_unicode_decompose() local 229 ARRAY_LENGTH (decomposed), &icu_err); in hb_icu_unicode_decompose() 230 if (U_FAILURE (icu_err) || len < 0) return false; in hb_icu_unicode_decompose() 252 UErrorCode icu_err; in hb_icu_unicode_decompose() local 263 icu_err = U_ZERO_ERROR; in hb_icu_unicode_decompose() 264 len = unorm_normalize (utf16, len, UNORM_NFD, 0, normalized, ARRAY_LENGTH (normalized), &icu_err); in hb_icu_unicode_decompose() [all …]
|
/external/icu/icu4c/source/test/cintltst/ |
D | cloctst.c | 1614 i = uloc_getLanguage("kok",NULL,0,&icu_err); in TestObsoleteNames() 1615 if(U_FAILURE(icu_err)) in TestObsoleteNames() 1617 log_err("FAIL: Got %s trying to do uloc_getLanguage(kok)\n", u_errorName(icu_err)); in TestObsoleteNames() 1620 icu_err = U_ZERO_ERROR; in TestObsoleteNames() 1621 uloc_getLanguage("kok",r1_buff,12,&icu_err); in TestObsoleteNames() 1622 if(U_FAILURE(icu_err)) in TestObsoleteNames() 1624 log_err("FAIL: Got %s trying to do uloc_getLanguage(kok, buff)\n", u_errorName(icu_err)); in TestObsoleteNames() 1629 icu_err = U_ZERO_ERROR; in TestObsoleteNames() 1636 i = uloc_getLanguage(r1_addr,r1_buff,12,&icu_err); in TestObsoleteNames() 1643 i = uloc_getLanguage(r1_addr,r1_buff,12,&icu_err); in TestObsoleteNames() [all …]
|