HomeSort by relevance Sort by last modified time
    Searched full:unorm_normalize (Results 1 - 25 of 31) sorted by null

1 2

  /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/icu4c/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...]
custrtst.c     [all...]
  /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/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...]
normlzr.h 200 * This is a wrapper for unorm_normalize(), using UnicodeString's.
220 * This is a wrapper for unorm_normalize(), using UnicodeString's.
242 * This is a wrapper for unorm_normalize(), using UnicodeString's.
urename.h 1108 #define unorm_normalize macro
    [all...]
  /external/webkit/Source/JavaScriptCore/icu/unicode/
unorm.h 30 * <code>unorm_normalize</code> transforms Unicode text into an equivalent composed or
32 * <code>unorm_normalize</code> supports the standard normalization forms described in
81 * <code>unorm_normalize</code> helps solve these problems by transforming text into the
85 * Finally, <code>unorm_normalize</code> rearranges accents into the proper canonical
106 * unorm_normalize(UNORM_FCD) may be implemented with UNORM_NFD.
200 unorm_normalize(const UChar *source, int32_t sourceLength,
389 * @see unorm_normalize
422 * @see unorm_normalize
464 * @see unorm_normalize
560 * @see unorm_normalize
    [all...]
urename.h 851 #define unorm_normalize macro
    [all...]
  /external/webkit/Source/WebCore/icu/unicode/
unorm.h 30 * <code>unorm_normalize</code> transforms Unicode text into an equivalent composed or
32 * <code>unorm_normalize</code> supports the standard normalization forms described in
81 * <code>unorm_normalize</code> helps solve these problems by transforming text into the
85 * Finally, <code>unorm_normalize</code> rearranges accents into the proper canonical
106 * unorm_normalize(UNORM_FCD) may be implemented with UNORM_NFD.
200 unorm_normalize(const UChar *source, int32_t sourceLength,
389 * @see unorm_normalize
422 * @see unorm_normalize
464 * @see unorm_normalize
560 * @see unorm_normalize
    [all...]
  /external/webkit/Source/WebKit/mac/icu/unicode/
unorm.h 30 * <code>unorm_normalize</code> transforms Unicode text into an equivalent composed or
32 * <code>unorm_normalize</code> supports the standard normalization forms described in
81 * <code>unorm_normalize</code> helps solve these problems by transforming text into the
85 * Finally, <code>unorm_normalize</code> rearranges accents into the proper canonical
106 * unorm_normalize(UNORM_FCD) may be implemented with UNORM_NFD.
200 unorm_normalize(const UChar *source, int32_t sourceLength,
389 * @see unorm_normalize
422 * @see unorm_normalize
464 * @see unorm_normalize
560 * @see unorm_normalize
    [all...]
  /external/icu4c/tools/ctestfw/unicode/
utimer.h 43 * unorm_normalize(parameters->source, parameters->sourceLen, parameters->mode, 0, parameters->target, parameters->targetLen, &error);
129 * unorm_normalize(source,sourceLen,target, targetLen,mode,error);
  /external/webkit/Source/WebCore/platform/text/
TextEncoding.cpp 96 int32_t normalizedLength = unorm_normalize(source, length, UNORM_NFC, 0, normalizedCharacters.data(), length, &err);
100 normalizedLength = unorm_normalize(source, length, UNORM_NFC, 0, normalizedCharacters.data(), normalizedLength, &err);
  /external/icu4c/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,
usearch.cpp 860 int32_t size = unorm_normalize(text, safeoffset, UNORM_NFD, 0,
870 // U_MEMORY_ALLOCATION_ERROR and unorm_normalize internally
872 size = unorm_normalize(text, safeoffset, UNORM_NFD, 0, norm,
    [all...]
  /external/icu4c/common/
unorm.cpp 97 unorm_normalize(const UChar *src, int32_t srcLength, function
usprep.cpp 615 return unorm_normalize(
  /external/webkit/Source/WebCore/platform/graphics/
WidthIterator.cpp 243 int32_t resultLength = unorm_normalize(m_run.data(currentCharacter), 2,
  /external/chromium/base/i18n/
icu_string_conversions.cc 282 int actual_length = unorm_normalize(
  /external/icu4c/tools/dumpce/
dumpce.cpp 844 int32_t length = unorm_normalize(element.ch, element.count, UNORM_NFC, 0, nfc,
    [all...]
  /external/webkit/Source/JavaScriptGlue/icu/unicode/
urename.h 851 #define unorm_normalize macro
    [all...]

Completed in 2016 milliseconds

1 2