Searched defs:decomp (Results 1 - 24 of 24) sorted by relevance

/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
H A DDecompTable.java25 private int[] decomp; field in class:DecompTable.DecompEntry
32 decomp = new int[decompCount];
38 decomp[out++] = cp;
49 return decomp;
54 return decomp.length;
59 if (i >= 0 && i < decomp.length) {
60 return decomp[i];
H A DCanonGSUBBuilder.java36 static public String convertArabicString(int type, int ligature, String decomp, ClassTable isolClassTable) argument
59 return decomp + UCharacter.toString(ligature);
62 char[] chars = decomp.toCharArray();
185 String decomp = record.getDecomposition();
187 if (decomp != null && decomp.length() > 1) {
/external/curl/lib/
H A Dcontent_encoding.c99 char *decomp; /* Put the decompressed data here. */ local
103 decomp = malloc(DSIZ);
104 if(decomp == NULL) {
112 z->next_out = (Bytef *)decomp;
119 result = Curl_client_write(conn, CLIENTWRITE_BODY, decomp,
123 free(decomp);
130 free(decomp);
141 free(decomp);
151 free(decomp);
160 free(decomp);
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DNorm2AllModes.java288 decomp=new DecomposeNormalizer2(ni);
295 public final DecomposeNormalizer2 decomp; field in class:Norm2AllModes
317 case 0: return getNFCInstance().decomp; // NFD
318 case 1: return getNFKCInstance().decomp; // NFKD
/external/icu/icu4c/source/common/
H A Dcaniter.cpp518 const UChar *decomp=decompString.getBuffer(); local
526 U16_NEXT(decomp, decompPos, decompLen, decompCp);
532 if (cp == decompCp) { // if equal, eat another cp from decomp
536 if (decompPos == decompLen) { // done, have all decomp characters!
541 U16_NEXT(decomp, decompPos, decompLen, decompCp);
554 // if the decomp class < the segment class, we fail
H A Dnorm2allmodes.h318 : impl(i), comp(*i, FALSE), decomp(*i), fcd(*i), fcc(*i, TRUE) {}
333 DecomposeNormalizer2 decomp; member in struct:Norm2AllModes
H A Dnormalizer2impl.cpp618 const UChar *decomp=NULL; local
623 return decomp;
630 decomp=buffer;
741 // decomp after-boundary: same as hasFCDBoundaryAfter(),
/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 Ducdtest.cpp340 UnicodeString decomp=nfd->normalize(UnicodeString(start), errorCode); local
341 if(decomp.length()>1 && decomp[0]==0x49) {
347 errln("[canon start set of 0049] != [all c with canon decomp with 0049]");
352 // "[canon start set of 0049]", "[all c with canon decomp with 0049]",
H A Dregcoll.cpp165 String[] decomp = {
177 static const UChar decomp[][CollationRegressionTest::MAX_TOKEN_LEN] = local
192 compareArray(*c, decomp, ARRAY_LENGTH(decomp));
H A Dtstnorm.cpp167 logln("testing decomp...");
271 UnicodeString decomp[1][3]; local
272 decomp[0][0] = str("\\u0f77");
273 decomp[0][1] = str("\\u0f77");
274 decomp[0][2] = str("\\u0fb2\\u0f71\\u0f80");
281 staticTest(UNORM_NFD, 0, decomp, ARRAY_LENGTH(decomp), 1);
282 staticTest(UNORM_NFKD, 0, decomp, ARRAY_LENGTH(decomp), 2);
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...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DNorm2AllModes.java284 decomp=new DecomposeNormalizer2(ni);
291 public final DecomposeNormalizer2 decomp; field in class:Norm2AllModes
313 case 0: return getNFCInstance().decomp; // NFD
314 case 1: return getNFKCInstance().decomp; // NFKD
/external/libjpeg-turbo/java/
H A DTJBench.java133 static void decomp(byte[] srcBuf, byte[][] jpegBuf, int[] jpegSize, method in class:TJBench
409 decomp(srcBuf, jpegBuf, jpegSize, tmpBuf, w, h, subsamp, jpegQual,
592 decomp(null, jpegBuf, jpegSize, null, _w, _h, _subsamp, 0,
/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/android_icu4j/src/main/java/android/icu/impl/coll/
H A DCollationBuilder.java924 String decomp = nfd.getDecomposition(composite);
925 if(!mergeCompositeIntoString(nfdString, indexAfterLastStarter, composite, decomp,
959 int composite, CharSequence decomp,
962 Character.codePointAt(decomp, 0));
963 int lastStarterLength = Character.offsetByCodePoints(decomp, 0, 1);
964 if(lastStarterLength == decomp.length()) {
969 if(equalSubSequences(nfdString, indexAfterLastStarter, decomp, lastStarterLength)) {
1003 if(decompIndex >= decomp.length()) { break; }
1004 int decompChar = Character.codePointAt(decomp, decompIndex);
1029 if(sourceChar >= 0) { // more characters from nfdString but not from decomp
958 mergeCompositeIntoString(CharSequence nfdString, int indexAfterLastStarter, int composite, CharSequence decomp, StringBuilder newNFDString, StringBuilder newString) argument
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DRuleBasedCollator.java1470 if(index == decomp.length()) {
1473 int c = Character.codePointAt(decomp, index);
1488 decomp = nfcImpl.getDecomposition(c);
1489 if(decomp == null) { return c; }
1490 c = Character.codePointAt(decomp, 0);
1501 private String decomp; field in class:RuleBasedCollator.NFDIterator
/external/icu/icu4c/source/test/cintltst/
H A Dcnormtst.c1476 UChar decomp[32]; local
1486 length=unorm2_getDecomposition(n2, 0x20, decomp, UPRV_LENGTHOF(decomp), &errorCode);
1491 length=unorm2_getDecomposition(n2, 0xe4, decomp, UPRV_LENGTHOF(decomp), &errorCode);
1492 if(U_FAILURE(errorCode) || length!=2 || decomp[0]!=0x61 || decomp[1]!=0x308 || decomp[2]!=0) {
1496 length=unorm2_getDecomposition(n2, 0xac01, decomp, UPRV_LENGTHOF(decomp),
1519 UChar decomp[32]; local
[all...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationBuilder.java920 String decomp = nfd.getDecomposition(composite);
921 if(!mergeCompositeIntoString(nfdString, indexAfterLastStarter, composite, decomp,
955 int composite, CharSequence decomp,
958 Character.codePointAt(decomp, 0));
959 int lastStarterLength = Character.offsetByCodePoints(decomp, 0, 1);
960 if(lastStarterLength == decomp.length()) {
965 if(equalSubSequences(nfdString, indexAfterLastStarter, decomp, lastStarterLength)) {
999 if(decompIndex >= decomp.length()) { break; }
1000 int decompChar = Character.codePointAt(decomp, decompIndex);
1025 if(sourceChar >= 0) { // more characters from nfdString but not from decomp
954 mergeCompositeIntoString(CharSequence nfdString, int indexAfterLastStarter, int composite, CharSequence decomp, StringBuilder newNFDString, StringBuilder newString) argument
[all...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
H A DRuleBasedCollator.java1509 if(index == decomp.length()) {
1512 int c = Character.codePointAt(decomp, index);
1527 decomp = nfcImpl.getDecomposition(c);
1528 if(decomp == null) { return c; }
1529 c = Character.codePointAt(decomp, 0);
1540 private String decomp; field in class:RuleBasedCollator.NFDIterator
/external/libjpeg-turbo/
H A Dtjbench.c104 int decomp(unsigned char *srcbuf, unsigned char **jpegbuf, function
440 if(decomp(srcbuf, jpegbuf, jpegsize, tmpbuf, w, h, subsamp, jpegqual,
670 if(decomp(NULL, jpegbuf, jpegsize, NULL, _w, _h, _subsamp, 0,
/external/icu/icu4c/source/i18n/
H A Dcollationbuilder.cpp1172 UnicodeString decomp; local
1179 nfd.getDecomposition(composite, decomp);
1180 if(!mergeCompositeIntoString(nfdString, indexAfterLastStarter, composite, decomp,
1216 UChar32 composite, const UnicodeString &decomp,
1220 U_ASSERT(nfdString.char32At(indexAfterLastStarter - 1) == decomp.char32At(0));
1221 int32_t lastStarterLength = decomp.moveIndex32(0, 1);
1222 if(lastStarterLength == decomp.length()) {
1228 decomp, lastStarterLength, 0x7fffffff) == 0) {
1259 if(decompIndex >= decomp.length()) { break; }
1260 UChar32 decompChar = decomp
1214 mergeCompositeIntoString(const UnicodeString &nfdString, int32_t indexAfterLastStarter, UChar32 composite, const UnicodeString &decomp, UnicodeString &newNFDString, UnicodeString &newString, UErrorCode &errorCode) const argument
[all...]
H A Drulebasedcollator.cpp794 U16_NEXT_UNSAFE(decomp, index, c);
808 decomp = nfcImpl.getDecomposition(c, buffer, length);
809 if(decomp == NULL) { return c; }
811 U16_NEXT_UNSAFE(decomp, index, c);
821 const UChar *decomp; member in class:__anon6672::NFDIterator
/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 549 milliseconds