Home | History | Annotate | Download | only in common

Lines Matching refs:errorCode

63     UErrorCode errorCode=U_ZERO_ERROR;
65 bdp=ubidi_getSingleton(&errorCode);
67 if(U_FAILURE(errorCode)) {
68 errorCode=U_ZERO_ERROR;
69 bdp=ubidi_getDummy(&errorCode);
70 if(U_FAILURE(errorCode)) {
188 UErrorCode errorCode=U_ZERO_ERROR;
192 const Normalizer2Impl *impl=Normalizer2Factory::getNFCImpl(errorCode);
193 return U_SUCCESS(errorCode) && impl->isCompNo(impl->getNorm16(c));
199 (UNormalizationMode)(which-UCHAR_NFD_INERT+UNORM_NFD), errorCode);
200 return U_SUCCESS(errorCode) && norm2->isInert(c);
207 UErrorCode errorCode=U_ZERO_ERROR;
209 (UNormalizationMode)(which-UCHAR_NFD_INERT+UNORM_NFD), errorCode);
210 return U_SUCCESS(errorCode) && norm2->isInert(c);
215 UErrorCode errorCode=U_ZERO_ERROR;
216 const Normalizer2Impl *kcf=Normalizer2Factory::getNFKC_CFImpl(errorCode);
217 if(U_SUCCESS(errorCode)) {
225 if(buffer.init(5, errorCode)) {
228 TRUE, buffer, errorCode);
231 return U_SUCCESS(errorCode) && dest!=src;
275 UErrorCode errorCode=U_ZERO_ERROR;
276 const Normalizer2Impl *nfcImpl=Normalizer2Factory::getNFCImpl(errorCode);
277 if(U_FAILURE(errorCode)) {
301 errorCode=U_ZERO_ERROR;
304 const UCaseProps *csp=ucase_getSingleton(&errorCode);
311 destLength=u_strFoldCase(dest, LENGTHOF(dest), nfd, nfdLength, U_FOLD_CASE_DEFAULT, &errorCode);
312 return (UBool)(U_SUCCESS(errorCode) && 0!=u_strCompare(nfd, nfdLength, dest, destLength, FALSE));
328 UErrorCode errorCode=U_ZERO_ERROR;
329 const Normalizer2Impl *impl=Normalizer2Factory::getNFCImpl(errorCode);
330 if(U_SUCCESS(errorCode)) {
339 UErrorCode errorCode=U_ZERO_ERROR;
340 const UTrie2 *trie=Normalizer2Factory::getFCDTrie(errorCode);
341 if(U_SUCCESS(errorCode)) {
373 UErrorCode errorCode;
408 errorCode=U_ZERO_ERROR;
409 return (int32_t)uscript_getScript(c, &errorCode);