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

/packages/apps/TV/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DUnicodeDecompressor.java21 * straightforward manner to decompress simple strings:</P>
25 * String result = UnicodeDecompressor.decompress(compressed);
47 * charsWritten = myDecompressor.decompress(bytes, totalBytesDecompressed,
111 * @param buffer The byte array to decompress.
113 * @see #decompress(byte [], int, int)
116 public static String decompress(byte [] buffer){ method in class:UnicodeDecompressor
117 char [] buf = decompress(buffer, 0, buffer.length);
123 * @param buffer The byte array to decompress.
124 * @param start The start of the byte run to decompress.
125 * @param limit The limit of the byte run to decompress
130 public static char [] decompress(byte [] buffer, int start, int limit) { method in class:UnicodeDecompressor
167 public int decompress(byte [] byteBuffer, method in class:UnicodeDecompressor
[all...]

Completed in 1309 milliseconds