Lines Matching defs:in
29 // No need to use BufferedInputStream with System.in which
31 InputStream in = new LZMAInputStream(System.in);
34 while ((size = in.read(buf)) != -1)
41 InputStream in = new FileInputStream(name);
44 // In contrast to other classes in org.tukaani.xz,
50 in = new BufferedInputStream(in);
51 in = new LZMAInputStream(in);
54 while ((size = in.read(buf)) != -1)
60 in.close();