HomeSort by relevance Sort by last modified time
    Searched refs:UnsupportedOptionsException (Results 1 - 19 of 19) sorted by null

  /external/xz-java/src/org/tukaani/xz/
UnsupportedOptionsException.java 2 * UnsupportedOptionsException
16 public class UnsupportedOptionsException extends XZIOException {
20 * Creates a new UnsupportedOptionsException with null
23 public UnsupportedOptionsException() {}
26 * Creates a new UnsupportedOptionsException with the given
31 public UnsupportedOptionsException(String s) {
RawCoder.java 14 throws UnsupportedOptionsException {
17 throw new UnsupportedOptionsException(
21 throw new UnsupportedOptionsException(
30 throw new UnsupportedOptionsException(
LZMA2Options.java 149 } catch (UnsupportedOptionsException e) {
158 * @throws UnsupportedOptionsException
161 public LZMA2Options(int preset) throws UnsupportedOptionsException {
168 * @throws UnsupportedOptionsException
173 throws UnsupportedOptionsException {
196 * @throws UnsupportedOptionsException
199 public void setPreset(int preset) throws UnsupportedOptionsException {
201 throw new UnsupportedOptionsException(
234 * @throws UnsupportedOptionsException
237 public void setDictSize(int dictSize) throws UnsupportedOptionsException {
    [all...]
DeltaDecoder.java 17 DeltaDecoder(byte[] props) throws UnsupportedOptionsException {
19 throw new UnsupportedOptionsException(
BCJOptions.java 26 throws UnsupportedOptionsException {
28 throw new UnsupportedOptionsException(
LZMA2Decoder.java 17 LZMA2Decoder(byte[] props) throws UnsupportedOptionsException {
21 throw new UnsupportedOptionsException(
DeltaOptions.java 50 public DeltaOptions(int distance) throws UnsupportedOptionsException {
58 public void setDistance(int distance) throws UnsupportedOptionsException {
60 throw new UnsupportedOptionsException(
BCJDecoder.java 20 throws UnsupportedOptionsException {
33 throw new UnsupportedOptionsException(
LZMAInputStream.java 80 * @throws UnsupportedOptionsException
89 throws UnsupportedOptionsException, CorruptedInputException {
91 throw new UnsupportedOptionsException(
172 * @throws UnsupportedOptionsException
205 * @throws UnsupportedOptionsException
239 * @throws UnsupportedOptionsException
279 * @throws UnsupportedOptionsException
362 * @throws UnsupportedOptionsException
398 * @throws UnsupportedOptionsException
443 * @throws UnsupportedOptionsException
    [all...]
BlockInputStream.java 66 throw new UnsupportedOptionsException(
121 throw new UnsupportedOptionsException(
177 throw new UnsupportedOptionsException(
BlockOutputStream.java 73 throw new UnsupportedOptionsException();
SimpleOutputStream.java 108 throw new UnsupportedOptionsException("Flushing is not supported");
XZOutputStream.java 89 * @throws UnsupportedOptionsException
113 * @throws UnsupportedOptionsException
141 * @throws UnsupportedOptionsException
169 * @throws UnsupportedOptionsException
194 * @throws UnsupportedOptionsException
218 * @throws UnsupportedOptionsException
244 * @throws UnsupportedOptionsException
269 * @throws UnsupportedOptionsException
297 * @throws UnsupportedOptionsException
319 * @throws UnsupportedOptionsException
    [all...]
LZMAOutputStream.java 77 throw new UnsupportedOptionsException(
SeekableXZInputStream.java 201 * @throws UnsupportedOptionsException
236 * @throws UnsupportedOptionsException
272 * @throws UnsupportedOptionsException
316 * @throws UnsupportedOptionsException
377 * @throws UnsupportedOptionsException
429 * @throws UnsupportedOptionsException
561 throw new UnsupportedOptionsException("XZ file is too big");
566 throw new UnsupportedOptionsException(
755 * @throws UnsupportedOptionsException
790 * @throws UnsupportedOptionsException
    [all...]
  /external/xz-java/src/org/tukaani/xz/check/
Check.java 13 import org.tukaani.xz.UnsupportedOptionsException;
35 throws UnsupportedOptionsException {
54 throw new UnsupportedOptionsException(
  /external/xz-java/src/org/tukaani/xz/common/
DecoderUtil.java 19 import org.tukaani.xz.UnsupportedOptionsException;
47 } catch (UnsupportedOptionsException e) {
48 throw new UnsupportedOptionsException(
67 } catch (UnsupportedOptionsException e) {
68 throw new UnsupportedOptionsException(
82 throws UnsupportedOptionsException {
84 throw new UnsupportedOptionsException();
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/sevenz/
DeltaDecoder.java 25 import org.tukaani.xz.UnsupportedOptionsException;
44 } catch (final UnsupportedOptionsException ex) {
  /external/xz-java/src/org/tukaani/xz/index/
IndexDecoder.java 20 import org.tukaani.xz.UnsupportedOptionsException;
73 throw new UnsupportedOptionsException("XZ Index has over "

Completed in 626 milliseconds