D | normperf.h | 28 typedef int32_t (*NormFn)(const UChar* src,int32_t srcLen, UChar* dest,int32_t dstLen, int32_t opti… 257 int32_t ICUNormNFD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, U… in ICUNormNFD() argument 258 return unorm_normalize(src,srcLen,UNORM_NFD, options,dest,dstLen,status); in ICUNormNFD() 261 int32_t ICUNormNFC(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, U… in ICUNormNFC() argument 262 return unorm_normalize(src,srcLen,UNORM_NFC, options,dest,dstLen,status); in ICUNormNFC() 265 int32_t ICUNormNFKD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, … in ICUNormNFKD() argument 266 return unorm_normalize(src,srcLen,UNORM_NFKD, options,dest,dstLen,status); in ICUNormNFKD() 268 int32_t ICUNormNFKC(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, … in ICUNormNFKC() argument 269 return unorm_normalize(src,srcLen,UNORM_NFKC, options,dest,dstLen,status); in ICUNormNFKC() 272 int32_t ICUNormFCD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, U… in ICUNormFCD() argument [all …]
|