Home | History | Annotate | Download | only in text

Lines Matching defs:decompress

22 * straightforward manner to decompress simple strings:</P>
26 * String result = UnicodeDecompressor.decompress(compressed);
35 * // Decompress an array "bytes" of length "len" using a buffer of 512 chars
48 * charsWritten = myDecompressor.decompress(bytes, totalBytesDecompressed,
110 * Decompress a byte array into a String.
111 * @param buffer The byte array to decompress.
113 * @see #decompress(byte [], int, int)
115 public static String decompress(byte [] buffer){
116 char [] buf = decompress(buffer, 0, buffer.length);
121 * Decompress a byte array into a Unicode character array.
122 * @param buffer The byte array to decompress.
123 * @param start The start of the byte run to decompress.
124 * @param limit The limit of the byte run to decompress.
126 * @see #decompress(byte [])
128 public static char [] decompress(byte [] buffer, int start, int limit) {
132 // in the worst case, each byte will decompress
137 int charCount = comp.decompress(buffer, start, limit, null,
146 * Decompress a byte array into a Unicode character array.
151 * @param byteBuffer The byte buffer to decompress.
152 * @param byteBufferStart The start of the byte run to decompress.
153 * @param byteBufferLimit The limit of the byte run to decompress.
164 public int decompress(byte [] byteBuffer,
207 // call self recursively to decompress the buffer
208 int count = decompress(fBuffer, 0, fBuffer.length, null,