Searched refs:fcd (Results 1 - 15 of 15) sorted by relevance

/external/chromium_org/third_party/icu/source/test/intltest/
H A Dnormconf.cpp303 UnicodeString out, fcd; local
397 Normalizer::normalize(field[0], UNORM_FCD, options, fcd, status);
398 if(UNORM_NO == Normalizer::quickCheck(fcd, UNORM_FCD, options, status)) {
411 Normalizer::normalize(fcd, UNORM_NFD, options, out, status);
/external/icu/icu4c/source/test/intltest/
H A Dnormconf.cpp303 UnicodeString out, fcd; local
397 Normalizer::normalize(field[0], UNORM_FCD, options, fcd, status);
398 if(UNORM_NO == Normalizer::quickCheck(fcd, UNORM_FCD, options, status)) {
411 Normalizer::normalize(fcd, UNORM_NFD, options, out, status);
H A Dcollationtest.cpp63 : fcd(NULL), nfd(NULL),
125 const Normalizer2 *fcd, *nfd; member in class:CollationTest
1267 if(U_FAILURE(errorCode) || !fcd->isNormalized(s, errorCode)) { return TRUE; }
1715 fcd = Normalizer2Factory::getFCDInstance(errorCode);
/external/chromium_org/third_party/icu/source/common/
H A Dnormalizer2.cpp425 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;
/external/icu/icu4c/source/common/
H A Dnormalizer2.cpp425 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;
/external/icu/icu4c/source/i18n/
H A Dcollationbuilder.h293 const Normalizer2 &nfd, &fcd; member in class:CollationBuilder
H A Dcollationbuilder.cpp194 fcd(*Normalizer2Factory::getFCDInstance(errorCode)),
1263 U_ASSERT(fcd.isNormalized(newString, errorCode));
1283 return U_SUCCESS(errorCode) && fcd.isNormalized(s, errorCode);
1641 // add chars that fail the fcd check
H A Dusearch.cpp103 * 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
1297 if ((fcd >> SECOND_LAST_BYTE_SHIFT_) == 0) {
1298 if (fcd
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Ducol_elm.cpp746 uint16_t fcd; // Hi byte is lead combining class. lo byte is trailing combing class. local
768 fcd = 0;
773 fcd |= nfcImpl->getFCD16FromNormData(supp++);
777 fcd = nfcImpl->getFCD16(c);
779 if (fcd >= 0x100 || // if the leading combining class(c) > 0 ||
780 (U16_IS_LEAD(c) && fcd != 0)) {// c is a leading surrogate with some FCD data
782 uint32_t cClass = fcd & 0xff;
2045 int16_t fcd = context.nfcImpl->getFCD16(el.cPoints[j]); local
2046 if ( (fcd & 0xff) == 0 ) {
H A Ducol.cpp1369 uint16_t fcd; local
1381 fcd = g_nfcImpl->nextFCD16(srcP, endP);
1382 if (fcd != 0) {
1383 prevTrailingCC = (uint8_t)(fcd & LAST_BYTE_MASK_);
1392 fcd = g_nfcImpl->nextFCD16(srcP, endP);
1393 leadingCC = (uint8_t)(fcd >> SECOND_LAST_BYTE_SHIFT_);
1404 prevTrailingCC = (uint8_t)(fcd & LAST_BYTE_MASK_);
1518 // We've got a character. See if there's any fcd and/or normalization stuff to do.
1531 // Fast fcd safe path. Trailing combining class == 0. This char is OK.
1746 uint16_t fcd; local
[all...]
H A Ducol_bld.cpp949 uint16_t fcd = nfcImpl->previousFCD16(el.cPoints, s); local
950 if ((fcd & 0xff) != 0) {
H A Dusearch.cpp111 * 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
1310 if ((fcd >> SECOND_LAST_BYTE_SHIFT_) == 0) {
1311 if (fcd
[all...]
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcnormtst.c1159 fcd[]={ local
1201 _testIter(src, sizeof(src)/U_SIZEOF_UCHAR, &iter, UNORM_FCD, TRUE, fcd, sizeof(fcd)/U_SIZEOF_UCHAR, fcdIndexes, sizeof(fcdIndexes)/4);
1212 _testIter(src, sizeof(src)/U_SIZEOF_UCHAR, &iter, UNORM_FCD, FALSE, fcd, sizeof(fcd)/U_SIZEOF_UCHAR, fcdIndexes, sizeof(fcdIndexes)/4);
/external/icu/icu4c/source/test/cintltst/
H A Dcnormtst.c1159 fcd[]={ local
1201 _testIter(src, sizeof(src)/U_SIZEOF_UCHAR, &iter, UNORM_FCD, TRUE, fcd, sizeof(fcd)/U_SIZEOF_UCHAR, fcdIndexes, sizeof(fcdIndexes)/4);
1212 _testIter(src, sizeof(src)/U_SIZEOF_UCHAR, &iter, UNORM_FCD, FALSE, fcd, sizeof(fcd)/U_SIZEOF_UCHAR, fcdIndexes, sizeof(fcdIndexes)/4);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 294 milliseconds