HomeSort by relevance Sort by last modified time
    Searched defs:decomp (Results 1 - 25 of 48) sorted by null

1 2

  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
NormalizerData.java 63 String decomp = decompose.get(ch); local
64 if (decomp != null && !(canonical && isCompatibility.get(ch))) {
65 for (int i = 0; i < decomp.length(); i+=UTF16Util.codePointLength(ch)) {
66 ch = UTF16Util.nextCodePoint(decomp, i);
69 } else { // if no decomp, append
TestDeprecatedNormalizerAPI.java 124 errln("ERROR: " + hex(ch) + " has identical decomp");
127 errln("ERROR: Normalizer decomp for " + hex(ch) + " (" + hex(normDecomp) + ")"
128 + " != iter decomp (" + hex(iterDecomp) + ")" );
138 String decomp = Normalizer.decompose(xString, compat); local
139 if (!decomp.equals(xString)) {
140 errln("ERROR: " + hex(x) + " has decomposition (" + hex(decomp) + ")"
156 String decomp = iter.decomposition(); local
157 String comp = Normalizer.compose(decomp, compat);
165 if (decomp.length() == 4) continue;
168 errln("ERROR: Round trip invalid: " + hex(chStr) + " --> " + hex(decomp)
    [all...]
NormalizerBuilder.java 164 end = line.indexOf(';',start=end+1); // decomp
166 // decomp requires more processing.
168 // store the decomp in one table, and the reverse mapping (from pairs) in another
174 String decomp = fromHex(segment); local
182 + "\"\\u" + hex(decomp, "\\u") + "\", "
189 int decompLen = UTF16Util.countCodePoint(decomp);
191 System.err.println("Bad decomp at: " + line);
193 decompose.put(value, decomp);
200 int second = UTF16Util.nextCodePoint(decomp, 0);
203 second = UTF16Util.nextCodePoint(decomp,
417 String decomp = decomposeData[i+1]; local
    [all...]
TestCanonicalIterator.java 202 String decomp = Normalizer.decompose(s, false); local
205 // skip characters that don't have either decomp.
207 if (s.equals(decomp) && s.equals(comp)) return;
215 if (item.equals(decomp)) gotDecomp = true;
224 + (item.equals(decomp) ? "\t(*decomp*)" : "")
256 errln("FAIL CanonicalIterator: " + s + " decomp: " +decomp+" comp: "+comp);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
NormalizerData.java 62 String decomp = decompose.get(ch); local
63 if (decomp != null && !(canonical && isCompatibility.get(ch))) {
64 for (int i = 0; i < decomp.length(); i+=UTF16Util.codePointLength(ch)) {
65 ch = UTF16Util.nextCodePoint(decomp, i);
68 } else { // if no decomp, append
TestDeprecatedNormalizerAPI.java 120 errln("ERROR: " + hex(ch) + " has identical decomp");
123 errln("ERROR: Normalizer decomp for " + hex(ch) + " (" + hex(normDecomp) + ")"
124 + " != iter decomp (" + hex(iterDecomp) + ")" );
134 String decomp = Normalizer.decompose(xString, compat); local
135 if (!decomp.equals(xString)) {
136 errln("ERROR: " + hex(x) + " has decomposition (" + hex(decomp) + ")"
152 String decomp = iter.decomposition(); local
153 String comp = Normalizer.compose(decomp, compat);
161 if (decomp.length() == 4) continue;
164 errln("ERROR: Round trip invalid: " + hex(chStr) + " --> " + hex(decomp)
    [all...]
NormalizerBuilder.java 163 end = line.indexOf(';',start=end+1); // decomp
165 // decomp requires more processing.
167 // store the decomp in one table, and the reverse mapping (from pairs) in another
173 String decomp = fromHex(segment); local
181 + "\"\\u" + hex(decomp, "\\u") + "\", "
188 int decompLen = UTF16Util.countCodePoint(decomp);
190 System.err.println("Bad decomp at: " + line);
192 decompose.put(value, decomp);
199 int second = UTF16Util.nextCodePoint(decomp, 0);
202 second = UTF16Util.nextCodePoint(decomp,
416 String decomp = decomposeData[i+1]; local
    [all...]
TestCanonicalIterator.java 198 String decomp = Normalizer.decompose(s, false); local
201 // skip characters that don't have either decomp.
203 if (s.equals(decomp) && s.equals(comp)) return;
211 if (item.equals(decomp)) gotDecomp = true;
220 + (item.equals(decomp) ? "\t(*decomp*)" : "")
252 errln("FAIL CanonicalIterator: " + s + " decomp: " +decomp+" comp: "+comp);
  /external/curl/lib/
content_encoding.c 99 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/icu4c/source/common/
norm2allmodes.h 318 : impl(i), comp(*i, FALSE), decomp(*i), fcd(*i), fcc(*i, TRUE) {}
333 DecomposeNormalizer2 decomp; member in struct:Norm2AllModes
caniter.cpp 518 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
normalizer2impl.cpp 618 const UChar *decomp=NULL; local
623 return decomp;
630 decomp=buffer;
741 // decomp after-boundary: same as hasFCDBoundaryAfter(),
    [all...]
  /external/icu/icu4c/source/test/intltest/
canittst.cpp 178 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;
ucdtest.cpp 340 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]",
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CanonicalIterator.java 52 nfd = allModes.decomp;
262 String attempt = Normalizer.normalize(possible, Normalizer.DECOMP, 0);
366 String decomp = nfcImpl.getDecomposition(comp); local
367 if (decomp == null) {
368 decomp = UTF16.valueOf(comp);
375 int decompCp = UTF16.charAt(decomp,0);
382 if (cp == decompCp) { // if equal, eat another cp from decomp
384 if (decompPos == decomp.length()) { // done, have all decomp characters!
389 decompCp = UTF16.charAt(decomp, decompPos)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CanonicalIterator.java 52 nfd = allModes.decomp;
266 String attempt = Normalizer.normalize(possible, Normalizer.DECOMP, 0);
370 String decomp = nfcImpl.getDecomposition(comp); local
371 if (decomp == null) {
372 decomp = UTF16.valueOf(comp);
379 int decompCp = UTF16.charAt(decomp,0);
386 if (cp == decompCp) { // if equal, eat another cp from decomp
388 if (decompPos == decomp.length()) { // done, have all decomp characters!
393 decompCp = UTF16.charAt(decomp, decompPos)
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
DecompTable.java 25 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];
  /external/zlib/src/contrib/blast/
blast.c 278 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/
Norm2AllModes.java 288 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/icu4j/main/classes/core/src/com/ibm/icu/impl/
Norm2AllModes.java 284 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/
tjbench.c 104 int decomp(unsigned char *srcbuf, unsigned char **jpegbuf, function
205 doyuv? "Decomp to YUV":"Decompress ", (double)iter/elapsed);
440 if(decomp(srcbuf, jpegbuf, jpegsize, tmpbuf, w, h, subsamp, jpegqual,
517 printf("Bitmap JPEG JPEG %s %s Xform Comp Decomp ",
670 if(decomp(NULL, jpegbuf, jpegsize, NULL, _w, _h, _subsamp, 0,
940 printf("Comp Comp Decomp ");
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
CollationRegressionTest.java 150 String[] decomp = { local
154 "\u00C0", "=", "A\u0300", // Decomp should make these equal
160 compareArray(c, decomp);
    [all...]
  /external/icu/icu4c/source/i18n/
collationbuilder.cpp 1172 UnicodeString decomp; local
    [all...]
rulebasedcollator.cpp 794 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:__anon12795::NFDIterator
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cnormtst.c 1476 UChar decomp[32]; local
1519 UChar decomp[32]; local
    [all...]

Completed in 510 milliseconds

1 2