Home
last modified time | relevance | path

Searched refs:icu_err (Results 1 – 2 of 2) sorted by relevance

/external/harfbuzz_ng/src/
Dhb-icu.cc193 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/
Dcloctst.c1619 i = uloc_getLanguage("kok",NULL,0,&icu_err); in TestObsoleteNames()
1620 if(U_FAILURE(icu_err)) in TestObsoleteNames()
1622 log_err("FAIL: Got %s trying to do uloc_getLanguage(kok)\n", u_errorName(icu_err)); in TestObsoleteNames()
1625 icu_err = U_ZERO_ERROR; in TestObsoleteNames()
1626 uloc_getLanguage("kok",r1_buff,12,&icu_err); in TestObsoleteNames()
1627 if(U_FAILURE(icu_err)) in TestObsoleteNames()
1629 log_err("FAIL: Got %s trying to do uloc_getLanguage(kok, buff)\n", u_errorName(icu_err)); in TestObsoleteNames()
1634 icu_err = U_ZERO_ERROR; in TestObsoleteNames()
1641 i = uloc_getLanguage(r1_addr,r1_buff,12,&icu_err); in TestObsoleteNames()
1648 i = uloc_getLanguage(r1_addr,r1_buff,12,&icu_err); in TestObsoleteNames()
[all …]