/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/ |
SurrogatePairAwareTextIterator.cpp | 87 int32_t resultLength = unorm_normalize(m_characters, 2, UNORM_NFC, UNORM_UNICODE_3_2, &normalizedCharacters[0], 2, &uStatus);
|
/external/chromium_org/third_party/harfbuzz-ng/src/ |
hb-icu.cc | 202 len = unorm_normalize (utf16, len, UNORM_NFC, 0, normalized, ARRAY_LENGTH (normalized), &icu_err); 263 len = unorm_normalize (utf16, len, UNORM_NFD, 0, normalized, ARRAY_LENGTH (normalized), &icu_err); 283 unorm_normalize (normalized, len, UNORM_NFC, 0, recomposed, ARRAY_LENGTH (recomposed), &icu_err); 299 len = unorm_normalize (normalized, len, UNORM_NFC, 0, recomposed, ARRAY_LENGTH (recomposed), &icu_err); 333 len = unorm_normalize (utf16, len, UNORM_NFKD, 0, normalized, ARRAY_LENGTH (normalized), &icu_err);
|
/external/harfbuzz_ng/src/ |
hb-icu.cc | 202 len = unorm_normalize (utf16, len, UNORM_NFC, 0, normalized, ARRAY_LENGTH (normalized), &icu_err); 263 len = unorm_normalize (utf16, len, UNORM_NFD, 0, normalized, ARRAY_LENGTH (normalized), &icu_err); 283 unorm_normalize (normalized, len, UNORM_NFC, 0, recomposed, ARRAY_LENGTH (recomposed), &icu_err); 299 len = unorm_normalize (normalized, len, UNORM_NFC, 0, recomposed, ARRAY_LENGTH (recomposed), &icu_err); 333 len = unorm_normalize (utf16, len, UNORM_NFKD, 0, normalized, ARRAY_LENGTH (normalized), &icu_err);
|
/external/chromium_org/third_party/icu/source/test/perf/normperf/ |
normperf.h | 258 return unorm_normalize(src,srcLen,UNORM_NFD, options,dest,dstLen,status); 262 return unorm_normalize(src,srcLen,UNORM_NFC, options,dest,dstLen,status); 266 return unorm_normalize(src,srcLen,UNORM_NFKD, options,dest,dstLen,status); 269 return unorm_normalize(src,srcLen,UNORM_NFKC, options,dest,dstLen,status); 273 return unorm_normalize(src,srcLen,UNORM_FCD, options,dest,dstLen,status); 291 return unorm_normalize(src,srcLen,UCOL_DECOMP_CAN, options,dest,dstLen,status); 295 return unorm_normalize(src,srcLen,UCOL_COMPOSE_CAN, options,dest,dstLen,status); 299 return unorm_normalize(src,srcLen,UCOL_DECOMP_COMPAT, options,dest,dstLen,status); 302 return unorm_normalize(src,srcLen,UCOL_COMPOSE_COMPAT, options,dest,dstLen,status); 306 return unorm_normalize(src,srcLen,UNORM_FCD, options,dest,dstLen,status) [all...] |
normperf.cpp | 79 reqLen=unorm_normalize(src,srcLen,mode, options,NULL,0,&status); 83 reqLen= unorm_normalize(src,srcLen,mode, options,dest->name,reqLen+1,&status); 97 reqLen=unorm_normalize(src,srcLen,mode, options,NULL,0,&status); 101 reqLen= unorm_normalize(src,srcLen,mode, options,dest,reqLen+1,&status);
|
/external/icu4c/test/perf/normperf/ |
normperf.h | 258 return unorm_normalize(src,srcLen,UNORM_NFD, options,dest,dstLen,status); 262 return unorm_normalize(src,srcLen,UNORM_NFC, options,dest,dstLen,status); 266 return unorm_normalize(src,srcLen,UNORM_NFKD, options,dest,dstLen,status); 269 return unorm_normalize(src,srcLen,UNORM_NFKC, options,dest,dstLen,status); 273 return unorm_normalize(src,srcLen,UNORM_FCD, options,dest,dstLen,status); 291 return unorm_normalize(src,srcLen,UCOL_DECOMP_CAN, options,dest,dstLen,status); 295 return unorm_normalize(src,srcLen,UCOL_COMPOSE_CAN, options,dest,dstLen,status); 299 return unorm_normalize(src,srcLen,UCOL_DECOMP_COMPAT, options,dest,dstLen,status); 302 return unorm_normalize(src,srcLen,UCOL_COMPOSE_COMPAT, options,dest,dstLen,status); 306 return unorm_normalize(src,srcLen,UNORM_FCD, options,dest,dstLen,status) [all...] |
normperf.cpp | 79 reqLen=unorm_normalize(src,srcLen,mode, options,NULL,0,&status); 83 reqLen= unorm_normalize(src,srcLen,mode, options,dest->name,reqLen+1,&status); 97 reqLen=unorm_normalize(src,srcLen,mode, options,NULL,0,&status); 101 reqLen= unorm_normalize(src,srcLen,mode, options,dest,reqLen+1,&status);
|
/external/chromium_org/third_party/WebKit/Source/wtf/text/ |
TextEncoding.cpp | 108 int32_t normalizedLength = unorm_normalize(source, length, UNORM_NFC, 0, normalizedCharacters.data(), length, &err); 112 normalizedLength = unorm_normalize(source, length, UNORM_NFC, 0, normalizedCharacters.data(), normalizedLength, &err);
|
/external/chromium_org/third_party/icu/source/common/unicode/ |
unorm.h | 36 * <code>unorm_normalize</code> transforms Unicode text into an equivalent composed or 38 * <code>unorm_normalize</code> supports the standard normalization forms described in 87 * <code>unorm_normalize</code> helps solve these problems by transforming text into the 91 * Finally, <code>unorm_normalize</code> rearranges accents into the proper canonical 112 * unorm_normalize(UNORM_FCD) may be implemented with UNORM_NFD. 207 unorm_normalize(const UChar *source, int32_t sourceLength, 375 * @see unorm_normalize 408 * @see unorm_normalize 450 * @see unorm_normalize 546 * @see unorm_normalize [all...] |
/external/chromium_org/third_party/icu/source/test/cintltst/ |
cnormtst.c | 172 log_verbose("Testing unorm_normalize(%s)\n", modeStrings[mode]); 177 neededLen= unorm_normalize(source, u_strlen(source), mode, 0, NULL, 0, &status); 178 length2= unorm_normalize(source, -1, mode, 0, NULL, 0, &status2); 180 log_err("ERROR in unorm_normalize(%s)[%d]: " 188 length2=unorm_normalize(source, u_strlen(source), mode, 0, result, LENGTHOF(result), &status); 190 log_data_err("ERROR in unorm_normalize(%s/NUL) at %s: %s - (Are you missing data?)\n", 195 length2=unorm_normalize(source, -1, mode, 0, result, LENGTHOF(result), &status); 197 log_data_err("ERROR in unorm_normalize(%s/srcLength) at %s: %s - (Are you missing data?)\n", 254 len = unorm_normalize(src, srcLen, mode, 0, result, 50, &status); 257 log_data_err("unorm_normalize(%s) with 0x0000 failed: %s - (Are you missing data?)\n", name, u_errorName(status)) [all...] |
callcoll.c | 923 unorm_normalize(X, -1, UNORM_NFD, 0, Y, 20, &status); 924 unorm_normalize(Y, -1, UNORM_NFC, 0, Z, 20, &status); [all...] |
/external/icu4c/common/unicode/ |
unorm.h | 36 * <code>unorm_normalize</code> transforms Unicode text into an equivalent composed or 38 * <code>unorm_normalize</code> supports the standard normalization forms described in 87 * <code>unorm_normalize</code> helps solve these problems by transforming text into the 91 * Finally, <code>unorm_normalize</code> rearranges accents into the proper canonical 112 * unorm_normalize(UNORM_FCD) may be implemented with UNORM_NFD. 207 unorm_normalize(const UChar *source, int32_t sourceLength, 375 * @see unorm_normalize 408 * @see unorm_normalize 450 * @see unorm_normalize 546 * @see unorm_normalize [all...] |
/external/icu4c/test/cintltst/ |
cnormtst.c | 176 log_verbose("Testing unorm_normalize(%s)\n", modeStrings[mode]); 181 neededLen= unorm_normalize(source, u_strlen(source), mode, 0, NULL, 0, &status); 182 length2= unorm_normalize(source, -1, mode, 0, NULL, 0, &status2); 184 log_err("ERROR in unorm_normalize(%s)[%d]: " 192 length2=unorm_normalize(source, u_strlen(source), mode, 0, result, LENGTHOF(result), &status); 194 log_data_err("ERROR in unorm_normalize(%s/NUL) at %s: %s - (Are you missing data?)\n", 199 length2=unorm_normalize(source, -1, mode, 0, result, LENGTHOF(result), &status); 201 log_data_err("ERROR in unorm_normalize(%s/srcLength) at %s: %s - (Are you missing data?)\n", 258 len = unorm_normalize(src, srcLen, mode, 0, result, 50, &status); 261 log_data_err("unorm_normalize(%s) with 0x0000 failed: %s - (Are you missing data?)\n", name, u_errorName(status)) [all...] |
/external/chromium_org/third_party/icu/source/test/perf/utrie2perf/ |
utrie2perf.cpp | 177 destCapacity=unorm_normalize(testcase.getBuffer(), testcase.getBufferLen(), 192 int32_t destLength=unorm_normalize(testcase.getBuffer(), testcase.getBufferLen(), 197 fprintf(stderr, "error: unorm_normalize(UNORM_NFC) failed: %s\n",
|
/external/icu4c/test/perf/utrie2perf/ |
utrie2perf.cpp | 177 destCapacity=unorm_normalize(testcase.getBuffer(), testcase.getBufferLen(), 192 int32_t destLength=unorm_normalize(testcase.getBuffer(), testcase.getBufferLen(), 197 fprintf(stderr, "error: unorm_normalize(UNORM_NFC) failed: %s\n",
|
/external/chromium/base/i18n/ |
icu_string_conversions.cc | 282 int actual_length = unorm_normalize(
|
/external/chromium_org/base/i18n/ |
icu_string_conversions.cc | 281 int actual_length = unorm_normalize(
|
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/skia/ |
SimpleFontDataSkia.cpp | 269 int32_t normalizedLength = unorm_normalize(characters, length, UNORM_NFC, UNORM_UNICODE_3_2, &normalizedCharacters[0], length, &error);
|
/external/chromium_org/third_party/icu/source/common/ |
unorm.cpp | 97 unorm_normalize(const UChar *src, int32_t srcLength, function
|
/external/chromium_org/third_party/icu/source/i18n/ |
uspoof.cpp | 638 int32_t normalizedLen = unorm_normalize( 647 normalizedLen = unorm_normalize(s, length, UNORM_NFKD, 0, 682 normalizedLen = unorm_normalize(result, resultLen, UNORM_NFKD, 0, NULL, 0, status); 689 unorm_normalize(result, resultLen, UNORM_NFKD, 0, normedResult, normalizedLen+1, status);
|
ucol_elm.cpp | 805 NFCbufLen = unorm_normalize(element->cPoints, element->cSize, UNORM_NFC, 0, [all...] |
uspoof_impl.cpp | 775 fNormalizedTextLength = unorm_normalize( 783 fNormalizedTextLength = unorm_normalize(text, length, UNORM_NFKD, 0,
|
/external/icu4c/i18n/ |
ucol_elm.cpp | 814 unorm_normalize(element->cPoints, element->cSize, UNORM_NFC, 0, [all...] |
/external/icu4c/common/ |
unorm.cpp | 97 unorm_normalize(const UChar *src, int32_t srcLength, function
|
/external/chromium_org/third_party/icu/source/tools/dumpce/ |
dumpce.cpp | 844 int32_t length = unorm_normalize(element.ch, element.count, UNORM_NFC, 0, nfc, [all...] |