Home
last modified time | relevance | path

Searched refs:unorm_normalize (Results 1 – 12 of 12) sorted by relevance

/external/icu/icu4c/source/test/perf/normperf/
Dnormperf.h262 return unorm_normalize(src,srcLen,UNORM_NFD, options,dest,dstLen,status); in ICUNormNFD()
266 return unorm_normalize(src,srcLen,UNORM_NFC, options,dest,dstLen,status); in ICUNormNFC()
270 return unorm_normalize(src,srcLen,UNORM_NFKD, options,dest,dstLen,status); in ICUNormNFKD()
273 return unorm_normalize(src,srcLen,UNORM_NFKC, options,dest,dstLen,status); in ICUNormNFKC()
277 return unorm_normalize(src,srcLen,UNORM_FCD, options,dest,dstLen,status); in ICUNormFCD()
295 return unorm_normalize(src,srcLen,UCOL_DECOMP_CAN, options,dest,dstLen,status); in ICUNormNFD()
299 return unorm_normalize(src,srcLen,UCOL_COMPOSE_CAN, options,dest,dstLen,status); in ICUNormNFC()
303 return unorm_normalize(src,srcLen,UCOL_DECOMP_COMPAT, options,dest,dstLen,status); in ICUNormNFKD()
306 return unorm_normalize(src,srcLen,UCOL_COMPOSE_COMPAT, options,dest,dstLen,status); in ICUNormNFKC()
310 return unorm_normalize(src,srcLen,UNORM_FCD, options,dest,dstLen,status); in ICUNormFCD()
Dnormperf.cpp82 reqLen=unorm_normalize(src,srcLen,mode, options,NULL,0,&status); in normalizeInput()
86 reqLen= unorm_normalize(src,srcLen,mode, options,dest->name,reqLen+1,&status); in normalizeInput()
100 reqLen=unorm_normalize(src,srcLen,mode, options,NULL,0,&status); in normalizeInput()
104 reqLen= unorm_normalize(src,srcLen,mode, options,dest,reqLen+1,&status); in normalizeInput()
/external/icu/icu4c/source/test/cintltst/
Dcnormtst.c183 neededLen= unorm_normalize(source, u_strlen(source), mode, 0, NULL, 0, &status); in TestNormCases()
184 length2= unorm_normalize(source, -1, mode, 0, NULL, 0, &status2); in TestNormCases()
194 …length2=unorm_normalize(source, u_strlen(source), mode, 0, result, UPRV_LENGTHOF(result), &status)… in TestNormCases()
201 length2=unorm_normalize(source, -1, mode, 0, result, UPRV_LENGTHOF(result), &status); in TestNormCases()
260 len = unorm_normalize(src, srcLen, mode, 0, result, 50, &status); in TestNull_check()
674 normsize += unorm_normalize(data + size, 1, UNORM_NFD, 0, in TestCheckFCD()
684 nfdsize = unorm_normalize(data, size, UNORM_NFD, 0, in TestCheckFCD()
715 length=unorm_normalize(in, 2, UNORM_NFD, 0, NULL, 0, &errorCode); in TestAPI()
722 length=unorm_normalize(in, 2, UNORM_NFD, 0, out, 3, &errorCode); in TestAPI()
731 length=unorm_normalize(NULL, 0, UNORM_NFC, 0, NULL, 0, &errorCode); in TestAPI()
[all …]
Dcallcoll.c958 unorm_normalize(X, -1, UNORM_NFD, 0, Y, 20, &status); in TestJB1401()
959 unorm_normalize(Y, -1, UNORM_NFC, 0, Z, 20, &status); in TestJB1401()
Dcmsccoll.c606 …nfcSize = unorm_normalize(comp, len, UNORM_NFC, 0, t[noCases]->NFC, NORM_BUFFER_TEST_LEN, &status); in TestComposeDecompose()
607 …nfdSize = unorm_normalize(comp, len, UNORM_NFD, 0, t[noCases]->NFD, NORM_BUFFER_TEST_LEN, &status); in TestComposeDecompose()
/external/icu/icu4c/source/test/perf/utrie2perf/
Dutrie2perf.cpp179 destCapacity=unorm_normalize(testcase.getBuffer(), testcase.getBufferLen(), in ToNFC()
194 int32_t destLength=unorm_normalize(testcase.getBuffer(), testcase.getBufferLen(), in call()
/external/icu/icu4c/source/common/unicode/
Dunorm.h214 unorm_normalize(const UChar *source, int32_t sourceLength,
Durename.h1169 #define unorm_normalize U_ICU_ENTRY_POINT_RENAME(unorm_normalize) macro
/external/icu/libandroidicu/include/unicode/
Dunorm.h214 unorm_normalize(const UChar *source, int32_t sourceLength,
Durename.h1169 #define unorm_normalize U_ICU_ENTRY_POINT_RENAME(unorm_normalize) macro
/external/icu/icu4c/source/common/
Dunorm.cpp97 unorm_normalize(const UChar *src, int32_t srcLength, in unorm_normalize() function
/external/icu/icu4c/source/i18n/
Dusearch.cpp851 int32_t size = unorm_normalize(text, safeoffset, UNORM_NFD, 0, in checkExtraMatchAccents()
863 size = unorm_normalize(text, safeoffset, UNORM_NFD, 0, norm, in checkExtraMatchAccents()
1465 unorm_normalize(text + start, offset - start, UNORM_NFD, 0, accents, in doNextCanonicalPrefixMatch()
1739 unorm_normalize(text + baseoffset, textoffset - baseoffset, UNORM_NFD, in doNextCanonicalMatch()
2170 unorm_normalize(text + offset, end - offset, UNORM_NFD, 0, accents, in doPreviousCanonicalSuffixMatch()
2402 unorm_normalize(text + textoffset, baseoffset - textoffset, UNORM_NFD, in doPreviousCanonicalMatch()