Lines Matching defs:is
58 * is not a non-MIME MS message, or if an
92 public MSMessage(Session session, InputStream is)
95 parse(is);
99 protected void parse(InputStream is) throws MessagingException {
101 if (!(is instanceof ByteArrayInputStream) &&
102 !(is instanceof BufferedInputStream))
103 is = new BufferedInputStream(is);
106 headers.load(is);
110 * This byte[] is shared among the bodyparts.
116 while ((b = is.read()) != -1)
124 * Check whether this is multipart.
136 * If found, we claim that this is a multipart message.
195 // Check whether the MIME header is present