Lines Matching refs:errorCode
83 UErrorCode errorCode=U_ZERO_ERROR;
84 const Normalizer2Impl *impl=Normalizer2Factory::getNFCImpl(errorCode);
85 return U_SUCCESS(errorCode) && impl->isCompNo(impl->getNorm16(c));
96 UErrorCode errorCode=U_ZERO_ERROR;
98 (UNormalizationMode)(which-UCHAR_NFD_INERT+UNORM_NFD), errorCode);
99 return U_SUCCESS(errorCode) && norm2->isInert(c);
110 UErrorCode errorCode=U_ZERO_ERROR;
111 const Normalizer2 *nfcNorm2=Normalizer2::getNFCInstance(errorCode);
112 if(U_FAILURE(errorCode)) {
140 U_FOLD_CASE_DEFAULT, &errorCode);
141 return (UBool)(U_SUCCESS(errorCode) &&
154 UErrorCode errorCode=U_ZERO_ERROR;
155 const Normalizer2Impl *kcf=Normalizer2Factory::getNFKC_CFImpl(errorCode);
156 if(U_FAILURE(errorCode)) {
166 if(buffer.init(5, errorCode)) {
169 TRUE, buffer, errorCode);
172 return U_SUCCESS(errorCode) && dest!=src;
182 UErrorCode errorCode=U_ZERO_ERROR;
183 const Normalizer2Impl *impl=Normalizer2Factory::getNFCImpl(errorCode);
185 U_SUCCESS(errorCode) && impl->ensureCanonIterData(errorCode) &&
360 UErrorCode errorCode=U_ZERO_ERROR;
361 return (int32_t)uscript_getScript(c, &errorCode);