/external/icu4c/test/perf/normperf/ |
D | normperf.h | 258 return unorm_normalize(src,srcLen,UNORM_NFD, options,dest,dstLen,status); in ICUNormNFD() 262 return unorm_normalize(src,srcLen,UNORM_NFC, options,dest,dstLen,status); in ICUNormNFC() 266 return unorm_normalize(src,srcLen,UNORM_NFKD, options,dest,dstLen,status); in ICUNormNFKD() 269 return unorm_normalize(src,srcLen,UNORM_NFKC, options,dest,dstLen,status); in ICUNormNFKC() 273 return unorm_normalize(src,srcLen,UNORM_FCD, options,dest,dstLen,status); in ICUNormFCD() 291 return unorm_normalize(src,srcLen,UCOL_DECOMP_CAN, options,dest,dstLen,status); in ICUNormNFD() 295 return unorm_normalize(src,srcLen,UCOL_COMPOSE_CAN, options,dest,dstLen,status); in ICUNormNFC() 299 return unorm_normalize(src,srcLen,UCOL_DECOMP_COMPAT, options,dest,dstLen,status); in ICUNormNFKD() 302 return unorm_normalize(src,srcLen,UCOL_COMPOSE_COMPAT, options,dest,dstLen,status); in ICUNormNFKC() 306 return unorm_normalize(src,srcLen,UNORM_FCD, options,dest,dstLen,status); in ICUNormFCD()
|
D | normperf.cpp | 79 reqLen=unorm_normalize(src,srcLen,mode, options,NULL,0,&status); in normalizeInput() 83 reqLen= unorm_normalize(src,srcLen,mode, options,dest->name,reqLen+1,&status); in normalizeInput() 97 reqLen=unorm_normalize(src,srcLen,mode, options,NULL,0,&status); in normalizeInput() 101 reqLen= unorm_normalize(src,srcLen,mode, options,dest,reqLen+1,&status); in normalizeInput()
|
/external/icu4c/test/cintltst/ |
D | cnormtst.c | 180 neededLen= unorm_normalize(source, u_strlen(source), mode, 0, NULL, 0, &status); in TestNormCases() 181 length2= unorm_normalize(source, -1, mode, 0, NULL, 0, &status2); in TestNormCases() 191 … length2=unorm_normalize(source, u_strlen(source), mode, 0, result, LENGTHOF(result), &status); in TestNormCases() 198 length2=unorm_normalize(source, -1, mode, 0, result, LENGTHOF(result), &status); in TestNormCases() 257 len = unorm_normalize(src, srcLen, mode, 0, result, 50, &status); in TestNull_check() 671 normsize += unorm_normalize(data + size, 1, UNORM_NFD, 0, in TestCheckFCD() 681 nfdsize = unorm_normalize(data, size, UNORM_NFD, 0, in TestCheckFCD() 712 length=unorm_normalize(in, 2, UNORM_NFD, 0, NULL, 0, &errorCode); in TestAPI() 719 length=unorm_normalize(in, 2, UNORM_NFD, 0, out, 3, &errorCode); in TestAPI() 728 length=unorm_normalize(NULL, 0, UNORM_NFC, 0, NULL, 0, &errorCode); in TestAPI() [all …]
|
D | callcoll.c | 923 unorm_normalize(X, -1, UNORM_NFD, 0, Y, 20, &status); in TestJB1401() 924 unorm_normalize(Y, -1, UNORM_NFC, 0, Z, 20, &status); in TestJB1401()
|
/external/webkit/Source/WebCore/platform/text/ |
D | TextEncoding.cpp | 96 …int32_t normalizedLength = unorm_normalize(source, length, UNORM_NFC, 0, normalizedCharacters.data… in encode() 100 …normalizedLength = unorm_normalize(source, length, UNORM_NFC, 0, normalizedCharacters.data(), norm… in encode()
|
/external/icu4c/test/perf/utrie2perf/ |
D | utrie2perf.cpp | 177 destCapacity=unorm_normalize(testcase.getBuffer(), testcase.getBufferLen(), in ToNFC() 192 int32_t destLength=unorm_normalize(testcase.getBuffer(), testcase.getBufferLen(), in call()
|
/external/icu4c/common/unicode/ |
D | unorm.h | 207 unorm_normalize(const UChar *source, int32_t sourceLength,
|
/external/icu4c/i18n/ |
D | uspoof.cpp | 640 int32_t normalizedLen = unorm_normalize( in uspoof_getSkeleton() 649 normalizedLen = unorm_normalize(s, length, UNORM_NFD, 0, in uspoof_getSkeleton() 684 normalizedLen = unorm_normalize(result, resultLen, UNORM_NFD, 0, NULL, 0, status); in uspoof_getSkeleton() 691 unorm_normalize(result, resultLen, UNORM_NFD, 0, normedResult, normalizedLen+1, status); in uspoof_getSkeleton()
|
D | ucol_elm.cpp | 805 NFCbufLen = unorm_normalize(element->cPoints, element->cSize, UNORM_NFC, 0, in uprv_uca_unsafeCPAddCCNZ() 1259 …composed->prefixSize = unorm_normalize(element->prefix, element->prefixSize, UNORM_NFC, 0, compose… in uprv_uca_addAnElement() 1750 decLen = unorm_normalize(data, len, UNORM_NFD, 0, decomp, 256, status); in uprv_uca_addFCD4AccentedContractions() 1751 compLen = unorm_normalize(data, len, UNORM_NFC, 0, comp, 256, status); in uprv_uca_addFCD4AccentedContractions() 1803 newDecLen = unorm_normalize(temp, 1, UNORM_NFD, 0, in uprv_uca_addMultiCMContractions() 1813 compLen = unorm_normalize(newDecomp, newDecLen, UNORM_NFC, 0, in uprv_uca_addMultiCMContractions() 1892 len = unorm_normalize(decomp, decompLen, UNORM_NFC, 0, comp, 256, status); in uprv_uca_addTailCanonicalClosures() 1911 len = unorm_normalize(decomp, decompLen, UNORM_NFC, 0, comp, 256, status); in uprv_uca_addTailCanonicalClosures()
|
D | uspoof_impl.cpp | 784 fNormalizedTextLength = unorm_normalize( in NFDBuffer() 792 fNormalizedTextLength = unorm_normalize(text, length, UNORM_NFD, 0, in NFDBuffer()
|
D | usearch.cpp | 860 int32_t size = unorm_normalize(text, safeoffset, UNORM_NFD, 0, in checkExtraMatchAccents() 872 size = unorm_normalize(text, safeoffset, UNORM_NFD, 0, norm, in checkExtraMatchAccents() 1474 unorm_normalize(text + start, offset - start, UNORM_NFD, 0, accents, in doNextCanonicalPrefixMatch() 1748 unorm_normalize(text + baseoffset, textoffset - baseoffset, UNORM_NFD, in doNextCanonicalMatch() 2179 unorm_normalize(text + offset, end - offset, UNORM_NFD, 0, accents, in doPreviousCanonicalSuffixMatch() 2411 unorm_normalize(text + textoffset, baseoffset - textoffset, UNORM_NFD, in doPreviousCanonicalMatch()
|
D | ucol_tok.cpp | 2324 nSize = unorm_normalize(rules, rulesLength, UNORM_NFD, 0, src->source, estimatedSize, status); in ucol_tok_initTokenList() 2333 …nSize = unorm_normalize(rules, rulesLength, UNORM_NFD, 0, src->source, nSize+UCOL_TOK_EXTRA_RULE_S… in ucol_tok_initTokenList()
|
D | ucol_bld.cpp | 633 nLen = unorm_normalize(src, len, UNORM_NFKD, 0, n, 128, status); in ucol_uprv_getCaseBits()
|
/external/webkit/Source/JavaScriptCore/icu/unicode/ |
D | unorm.h | 200 unorm_normalize(const UChar *source, int32_t sourceLength,
|
D | urename.h | 851 #define unorm_normalize unorm_normalize_3_2 macro
|
/external/webkit/Source/WebCore/icu/unicode/ |
D | unorm.h | 200 unorm_normalize(const UChar *source, int32_t sourceLength,
|
/external/webkit/Source/WebKit/mac/icu/unicode/ |
D | unorm.h | 200 unorm_normalize(const UChar *source, int32_t sourceLength,
|
D | urename.h | 851 #define unorm_normalize unorm_normalize_3_2 macro
|
/external/webkit/Source/WebCore/platform/graphics/ |
D | WidthIterator.cpp | 243 int32_t resultLength = unorm_normalize(m_run.data(currentCharacter), 2, in normalizeVoicingMarks()
|
/external/chromium/base/i18n/ |
D | icu_string_conversions.cc | 282 int actual_length = unorm_normalize( in ConvertToUtf8AndNormalize()
|
/external/icu4c/common/ |
D | unorm.cpp | 97 unorm_normalize(const UChar *src, int32_t srcLength, in unorm_normalize() function
|
D | usprep.cpp | 615 return unorm_normalize( in usprep_normalize()
|
/external/icu4c/tools/dumpce/ |
D | dumpce.cpp | 844 int32_t length = unorm_normalize(element.ch, element.count, UNORM_NFC, 0, nfc, in outputScriptElem() 1136 int size = unorm_normalize(ch1, se.count, UNORM_NFD, 0, norm, 32, in hasSubNFD()
|
/external/webkit/Source/WebCore/editing/ |
D | TextIterator.cpp | 1875 …size_t bufferSize = unorm_normalize(characters, length, UNORM_NFC, 0, buffer.data(), length, &stat… in normalizeCharacters() 1885 unorm_normalize(characters, length, UNORM_NFC, 0, buffer.data(), bufferSize, &status); in normalizeCharacters()
|
/external/webkit/Source/JavaScriptGlue/icu/unicode/ |
D | urename.h | 851 #define unorm_normalize unorm_normalize_3_2 macro
|