HomeSort by relevance Sort by last modified time
    Searched defs:fcd (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/third_party/icu/source/test/intltest/
normconf.cpp 303 UnicodeString out, fcd; local
396 // test FCD quick check and "makeFCD"
397 Normalizer::normalize(field[0], UNORM_FCD, options, fcd, status);
398 if(UNORM_NO == Normalizer::quickCheck(fcd, UNORM_FCD, options, status)) {
399 errln("Normalizer error: quickCheck(FCD(s), UNORM_FCD) is UNORM_NO");
411 Normalizer::normalize(fcd, UNORM_NFD, options, out, status);
413 dataerrln("Normalizer error: NFD(FCD(s))!=NFD(s)");
  /external/icu/icu4c/source/i18n/
collationbuilder.h 293 const Normalizer2 &nfd, &fcd; member in class:CollationBuilder
usearch.cpp 103 * Initializing the fcd tables.
118 * Gets the fcd value for a character at the argument index.
120 * @param str UTF16 string where character for fcd retrieval resides
121 * @param offset position of the character whose fcd is to be retrieved, to be
125 * @return fcd value
807 * The first composite character would have been taken care of by the fcd
809 * This is the slow path after the fcd of the first character and
1296 uint16_t fcd = getFCD(text, &temp, result); local
    [all...]
  /external/icu/icu4c/source/test/intltest/
normconf.cpp 303 UnicodeString out, fcd; local
396 // test FCD quick check and "makeFCD"
397 Normalizer::normalize(field[0], UNORM_FCD, options, fcd, status);
398 if(UNORM_NO == Normalizer::quickCheck(fcd, UNORM_FCD, options, status)) {
399 errln("Normalizer error: quickCheck(FCD(s), UNORM_FCD) is UNORM_NO");
411 Normalizer::normalize(fcd, UNORM_NFD, options, out, status);
413 dataerrln("Normalizer error: NFD(FCD(s))!=NFD(s)");
collationtest.cpp 63 : fcd(NULL), nfd(NULL),
125 const Normalizer2 *fcd, *nfd; member in class:CollationTest
440 // Input string, not FCD, NUL-terminated.
    [all...]
  /external/chromium_org/third_party/icu/source/common/
normalizer2.cpp 354 Norm2AllModes() : comp(impl, FALSE), decomp(impl), fcd(impl), fcc(impl, TRUE) {}
359 FCDNormalizer2 fcd; member in struct:Norm2AllModes
456 return &allModes->fcd;
613 return &allModes->fcd;
normalizer2impl.h 549 * Get access to the internal FCD trie table to be able to perform
550 * incremental, per-code unit, FCD checks in collation.
553 * Code points at fcdHighStart and above have a zero FCD value.
561 * Get the FCD value for a code unit, with
566 * then some of c's associated supplementary code points have a non-zero FCD value.
577 * Get the FCD value of the next code point (post-increment), with
587 uint16_t fcd=fcdTrieIndex[_UTRIE2_INDEX_FROM_U16_SINGLE_LEAD(fcdTrieIndex, c)]; local
588 if(fcd!=0 && U16_IS_LEAD(c)) {
594 fcd=fcdTrieIndex[_UTRIE2_INDEX_FROM_SUPP(fcdTrieIndex, c)];
596 fcd=0
617 uint16_t fcd; local
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
ucol_bld.cpp 944 uint16_t fcd = unorm_prevFCD16(fcdTrieIndex, fcdHighStart, el.cPoints, s); local
    [all...]
ucol_elm.cpp 744 uint16_t fcd; // Hi byte is lead combining class. local
768 fcd = unorm_getFCD16(fcdTrieIndex, c);
769 if (fcd >= 0x100 || // if the leading combining class(c) > 0 ||
770 (UTF_IS_LEAD(c) && fcd != 0)) {// c is a leading surrogate with some FCD data
772 uint32_t cClass = fcd & 0xff;
2039 int16_t fcd = unorm_getFCD16(fcdTrieIndex, el.cPoints[j]); local
    [all...]
usearch.cpp 111 * Initializing the fcd tables.
126 * Gets the fcd value for a character at the argument index.
128 * @param str UTF16 string where character for fcd retrieval resides
129 * @param offset position of the character whose fcd is to be retrieved, to be
133 * @return fcd value
820 * The first composite character would have been taken care of by the fcd
822 * This is the slow path after the fcd of the first character and
1309 uint16_t fcd = getFCD(text, &temp, result); local
    [all...]
ucol.cpp 59 // Code points at fcdHighStart and above have a zero FCD value.
85 // init FCD data
1373 uint16_t fcd; local
1753 uint16_t fcd; local
    [all...]
  /external/icu/icu4c/source/common/
normalizer2.cpp 425 Norm2AllModes() : comp(impl, FALSE), decomp(impl), fcd(impl), fcc(impl, TRUE) {}
430 FCDNormalizer2 fcd; member in struct:Norm2AllModes
520 return nfcSingleton!=NULL ? &nfcSingleton->fcd : NULL;
686 return &allModes->fcd;
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
cnormtst.c 626 log_data_err("unorm_quickCheck(FCD) failed: expected value for fast unorm_quickCheck is UNORM_YES - (Are you missing data?)\n");
628 log_err("unorm_quickCheck(FCD) failed: expected value for error unorm_quickCheck is UNORM_NO\n");
630 log_data_err("unorm_quickCheck(FCD) failed: expected value for correct unorm_quickCheck is UNORM_YES - (Are you missing data?)\n");
633 log_data_err("unorm_quickCheck(FCD) failed: %s - (Are you missing data?)\n", u_errorName(status));
639 log_data_err("unorm_quickCheck(FCD) failed: exception occured at data set %d - (Are you missing data?)\n", count);
644 log_err("unorm_quickCheck(FCD) failed: Data set %d expected value %d\n", count,
671 log_data_err("unorm_quickCheck(FCD) failed: exception occured at data generation - (Are you missing data?)\n");
681 log_data_err("unorm_quickCheck(FCD) failed: exception occured at normalized data generation - (Are you missing data?)\n");
695 log_data_err("unorm_quickCheck(FCD) failed: expected %d for random data - (Are you missing data?)\n", testresult);
1155 fcd[]={ local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cnormtst.c 630 log_data_err("unorm_quickCheck(FCD) failed: expected value for fast unorm_quickCheck is UNORM_YES - (Are you missing data?)\n");
632 log_err("unorm_quickCheck(FCD) failed: expected value for error unorm_quickCheck is UNORM_NO\n");
634 log_data_err("unorm_quickCheck(FCD) failed: expected value for correct unorm_quickCheck is UNORM_YES - (Are you missing data?)\n");
637 log_data_err("unorm_quickCheck(FCD) failed: %s - (Are you missing data?)\n", u_errorName(status));
643 log_data_err("unorm_quickCheck(FCD) failed: exception occured at data set %d - (Are you missing data?)\n", count);
648 log_err("unorm_quickCheck(FCD) failed: Data set %d expected value %d\n", count,
675 log_data_err("unorm_quickCheck(FCD) failed: exception occured at data generation - (Are you missing data?)\n");
685 log_data_err("unorm_quickCheck(FCD) failed: exception occured at normalized data generation - (Are you missing data?)\n");
699 log_data_err("unorm_quickCheck(FCD) failed: expected %d for random data - (Are you missing data?)\n", testresult);
1159 fcd[]={ local
    [all...]
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 

Completed in 606 milliseconds