Searched defs:decomp (Results 1 - 25 of 34) sorted by last modified time

12

/external/zlib/src/contrib/blast/
H A Dblast.c278 local int decomp(struct state *s) function
399 err = 2; /* then skip decomp(), return error */
401 err = decomp(&s); /* decompress */
/external/icu/icu4c/source/i18n/
H A Dcollationbuilder.cpp1139 UnicodeString decomp; local
1146 nfd.getDecomposition(composite, decomp);
1147 if(!mergeCompositeIntoString(nfdString, indexAfterLastStarter, composite, decomp,
1183 UChar32 composite, const UnicodeString &decomp,
1187 U_ASSERT(nfdString.char32At(indexAfterLastStarter - 1) == decomp.char32At(0));
1188 int32_t lastStarterLength = decomp.moveIndex32(0, 1);
1189 if(lastStarterLength == decomp.length()) {
1195 decomp, lastStarterLength, 0x7fffffff) == 0) {
1226 if(decompIndex >= decomp.length()) { break; }
1227 UChar32 decompChar = decomp
1181 mergeCompositeIntoString(const UnicodeString &nfdString, int32_t indexAfterLastStarter, UChar32 composite, const UnicodeString &decomp, UnicodeString &newNFDString, UnicodeString &newString, UErrorCode &errorCode) const argument
[all...]
H A Drulebasedcollator.cpp791 U16_NEXT_UNSAFE(decomp, index, c);
805 decomp = nfcImpl.getDecomposition(c, buffer, length);
806 if(decomp == NULL) { return c; }
808 U16_NEXT_UNSAFE(decomp, index, c);
818 const UChar *decomp; member in class:__anon21909::NFDIterator
/external/icu/icu4c/source/test/cintltst/
H A Dcnormtst.c1477 UChar decomp[32]; local
1487 length=unorm2_getDecomposition(n2, 0x20, decomp, LENGTHOF(decomp), &errorCode);
1492 length=unorm2_getDecomposition(n2, 0xe4, decomp, LENGTHOF(decomp), &errorCode);
1493 if(U_FAILURE(errorCode) || length!=2 || decomp[0]!=0x61 || decomp[1]!=0x308 || decomp[2]!=0) {
1497 length=unorm2_getDecomposition(n2, 0xac01, decomp, LENGTHOF(decomp),
1520 UChar decomp[32]; local
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dcanittst.cpp178 UnicodeString decomp, comp; local
183 Normalizer::decompose(s, FALSE, 0, decomp, status);
186 // skip characters that don't have either decomp.
188 if (s == decomp && s == comp) {
198 if (item == decomp) gotDecomp = TRUE;
H A Dregcoll.cpp161 String[] decomp = {
173 static const UChar decomp[][CollationRegressionTest::MAX_TOKEN_LEN] = local
188 compareArray(*c, decomp, ARRAY_LENGTH(decomp));
H A Dtransrt.cpp134 UnicodeString decomp; local
136 Normalizer::decompose(sourceString, FALSE, 0, decomp, ec);
140 for (int i = 0; i < decomp.length(); ++i) { // don't worry about surrogates
141 switch (getType(decomp.charAt(i))) {
142 case 0: t = getType(decomp.charAt(i+1));
145 case 1: t = getType(decomp.charAt(i-1));
148 case 2: t = getType(decomp.charAt(i-1));
180 UnicodeString decomp; local
182 Normalizer::decompose(sourceString, FALSE, 0, decomp, ec);
191 for (int32_t i = 0; i < decomp
[all...]
H A Dtstnorm.cpp168 logln("testing decomp...");
272 UnicodeString decomp[1][3]; local
273 decomp[0][0] = str("\\u0f77");
274 decomp[0][1] = str("\\u0f77");
275 decomp[0][2] = str("\\u0fb2\\u0f71\\u0f80");
282 staticTest(UNORM_NFD, 0, decomp, ARRAY_LENGTH(decomp), 1);
283 staticTest(UNORM_NFKD, 0, decomp, ARRAY_LENGTH(decomp), 2);
H A Ducdtest.cpp359 UnicodeString decomp=nfd->normalize(UnicodeString(start), errorCode); local
360 if(decomp.length()>1 && decomp[0]==0x49) {
366 errln("[canon start set of 0049] != [all c with canon decomp with 0049]");
371 // "[canon start set of 0049]", "[all c with canon decomp with 0049]",
/external/icu/icu4c/source/common/
H A Dcaniter.cpp511 const UChar *decomp=decompString.getBuffer(); local
519 U16_NEXT(decomp, decompPos, decompLen, decompCp);
525 if (cp == decompCp) { // if equal, eat another cp from decomp
529 if (decompPos == decompLen) { // done, have all decomp characters!
534 U16_NEXT(decomp, decompPos, decompLen, decompCp);
547 // if the decomp class < the segment class, we fail
H A Dnormalizer2.cpp425 Norm2AllModes() : comp(impl, FALSE), decomp(impl), fcd(impl), fcc(impl, TRUE) {}
429 DecomposeNormalizer2 decomp; member in struct:Norm2AllModes
515 return nfcSingleton!=NULL ? &nfcSingleton->decomp : NULL;
535 return nfkcSingleton!=NULL ? &nfkcSingleton->decomp : NULL;
684 return &allModes->decomp;
H A Dnormalizer2impl.cpp667 const UChar *decomp=NULL; local
672 return decomp;
679 decomp=buffer;
790 // decomp after-boundary: same as hasFCDBoundaryAfter(),
/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 ...
/external/chromium_org/third_party/icu/source/i18n/
H A Ducol_elm.cpp1633 const UChar *decomp; local
1641 decomp = ((enumStruct *)context)->nfcImpl->
1643 //if((noOfDec = unorm_normalize(comp, len, UNORM_NFD, 0, decomp, 256, status)) > 1
1644 //|| (noOfDec == 1 && *decomp != (UChar)u32))
1645 if(decomp != NULL)
1649 if(ucol_strcoll(tempColl, comp, len, decomp, noOfDec) != UCOL_EQUAL) {
1655 U16_NEXT(decomp, i, noOfDec, c);
1667 ucol_setText(iter, decomp, noOfDec, status);
1678 el.cPoints = (UChar *)decomp;
1691 ucol_setText(colEl, decomp, noOfDe
1756 UChar decomp[256], comp[256]; local
1871 UChar decomp[256]; local
[all...]
H A Ducol_elm.h124 UChar *decomp; member in struct:__anon12117
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcnormtst.c1477 UChar decomp[32]; local
1487 length=unorm2_getDecomposition(n2, 0x20, decomp, LENGTHOF(decomp), &errorCode);
1492 length=unorm2_getDecomposition(n2, 0xe4, decomp, LENGTHOF(decomp), &errorCode);
1493 if(U_FAILURE(errorCode) || length!=2 || decomp[0]!=0x61 || decomp[1]!=0x308 || decomp[2]!=0) {
1497 length=unorm2_getDecomposition(n2, 0xac01, decomp, LENGTHOF(decomp),
1520 UChar decomp[32]; local
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dcanittst.cpp178 UnicodeString decomp, comp; local
183 Normalizer::decompose(s, FALSE, 0, decomp, status);
186 // skip characters that don't have either decomp.
188 if (s == decomp && s == comp) {
198 if (item == decomp) gotDecomp = TRUE;
H A Dregcoll.cpp168 String[] decomp = {
180 static const UChar decomp[][CollationRegressionTest::MAX_TOKEN_LEN] = local
195 compareArray(*c, decomp, ARRAY_LENGTH(decomp));
H A Dtransrt.cpp134 UnicodeString decomp; local
136 Normalizer::decompose(sourceString, FALSE, 0, decomp, ec);
140 for (int i = 0; i < decomp.length(); ++i) { // don't worry about surrogates
141 switch (getType(decomp.charAt(i))) {
142 case 0: t = getType(decomp.charAt(i+1));
145 case 1: t = getType(decomp.charAt(i-1));
148 case 2: t = getType(decomp.charAt(i-1));
180 UnicodeString decomp; local
182 Normalizer::decompose(sourceString, FALSE, 0, decomp, ec);
191 for (int32_t i = 0; i < decomp
[all...]
H A Dtstnorm.cpp168 logln("testing decomp...");
272 UnicodeString decomp[1][3]; local
273 decomp[0][0] = str("\\u0f77");
274 decomp[0][1] = str("\\u0f77");
275 decomp[0][2] = str("\\u0fb2\\u0f71\\u0f80");
282 staticTest(UNORM_NFD, 0, decomp, ARRAY_LENGTH(decomp), 1);
283 staticTest(UNORM_NFKD, 0, decomp, ARRAY_LENGTH(decomp), 2);
H A Ducdtest.cpp359 UnicodeString decomp=nfd->normalize(UnicodeString(start), errorCode); local
360 if(decomp.length()>1 && decomp[0]==0x49) {
366 errln("[canon start set of 0049] != [all c with canon decomp with 0049]");
371 // "[canon start set of 0049]", "[all c with canon decomp with 0049]",
/external/chromium_org/third_party/icu/source/common/
H A Dcaniter.cpp511 const UChar *decomp=decompString.getBuffer(); local
519 U16_NEXT(decomp, decompPos, decompLen, decompCp);
525 if (cp == decompCp) { // if equal, eat another cp from decomp
529 if (decompPos == decompLen) { // done, have all decomp characters!
534 U16_NEXT(decomp, decompPos, decompLen, decompCp);
547 // if the decomp class < the segment class, we fail
H A Dnormalizer2.cpp425 Norm2AllModes() : comp(impl, FALSE), decomp(impl), fcd(impl), fcc(impl, TRUE) {}
429 DecomposeNormalizer2 decomp; member in struct:Norm2AllModes
515 return nfcSingleton!=NULL ? &nfcSingleton->decomp : NULL;
535 return nfkcSingleton!=NULL ? &nfkcSingleton->decomp : NULL;
684 return &allModes->decomp;
H A Dnormalizer2impl.cpp565 const UChar *decomp=NULL; local
570 return decomp;
577 decomp=buffer;
688 // decomp after-boundary: same as hasFCDBoundaryAfter(),
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DAffineTransform.cpp311 bool AffineTransform::decompose(DecomposedType& decomp) const
339 decomp.scaleX = sx;
340 decomp.scaleY = sy;
341 decomp.angle = angle;
342 decomp.remainderA = m.a();
343 decomp.remainderB = m.b();
344 decomp.remainderC = m.c();
345 decomp.remainderD = m.d();
346 decomp.translateX = m.e();
347 decomp
352 recompose(const DecomposedType& decomp) argument
[all...]

Completed in 393 milliseconds

12