Home | History | Annotate | Download | only in common

Lines Matching refs:errorCode

81     UErrorCode errorCode=U_ZERO_ERROR;
82 const Normalizer2Impl *impl=Normalizer2Factory::getNFCImpl(errorCode);
83 return U_SUCCESS(errorCode) && impl->isCompNo(impl->getNorm16(c));
94 UErrorCode errorCode=U_ZERO_ERROR;
96 (UNormalizationMode)(which-UCHAR_NFD_INERT+UNORM_NFD), errorCode);
97 return U_SUCCESS(errorCode) && norm2->isInert(c);
108 UErrorCode errorCode=U_ZERO_ERROR;
109 const Normalizer2 *nfcNorm2=Normalizer2::getNFCInstance(errorCode);
110 if(U_FAILURE(errorCode)) {
138 U_FOLD_CASE_DEFAULT, &errorCode);
139 return (UBool)(U_SUCCESS(errorCode) &&
152 UErrorCode errorCode=U_ZERO_ERROR;
153 const Normalizer2Impl *kcf=Normalizer2Factory::getNFKC_CFImpl(errorCode);
154 if(U_FAILURE(errorCode)) {
164 if(buffer.init(5, errorCode)) {
167 TRUE, buffer, errorCode);
170 return U_SUCCESS(errorCode) && dest!=src;
180 UErrorCode errorCode=U_ZERO_ERROR;
181 const Normalizer2Impl *impl=Normalizer2Factory::getNFCImpl(errorCode);
183 U_SUCCESS(errorCode) && impl->ensureCanonIterData(errorCode) &&
354 UErrorCode errorCode=U_ZERO_ERROR;
355 return (int32_t)uscript_getScript(c, &errorCode);