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

/javamail/mbox/src/main/java/com/sun/mail/mbox/
H A DSunV3Multipart.java113 protected synchronized void parse() throws MessagingException { method in class:SunV3Multipart
117 * we call addBodyPart, which will call parse again. We really
/javamail/outlook/src/main/java/
H A DMSMessage.java85 //parse(new ByteArrayInputStream(bos.toByteArray()));
86 parse(bos.toByteArrayInputStream());
95 parse(is);
98 // parse input stream
99 protected void parse(InputStream is) throws MessagingException { method in class:MSMessage
/javamail/mail/src/test/java/javax/mail/internet/
H A DFoldTest.java76 parse(new BufferedReader(new InputStreamReader(
89 private static void parse(BufferedReader in) throws IOException { method in class:FoldTest
H A DInternetAddressFoldTest.java74 parse(new BufferedReader(new InputStreamReader(
89 private static void parse(BufferedReader in) throws Exception { method in class:InternetAddressFoldTest
H A DHeaderTokenizerTest.java68 static boolean parse_mail = false; // parse input in mail format
86 parse(new BufferedReader(new InputStreamReader(
139 parse(in);
151 * headers and testing them. The parse is rather crude, but sufficient
154 public static void parse(BufferedReader in) throws IOException { method in class:HeaderTokenizerTest
H A DInternetAddressTest.java71 static boolean parse_mail = false; // parse input in mail format
92 parse(new BufferedReader(new InputStreamReader(
143 parse(in);
155 * headers and testing them. The parse is rather crude, but sufficient
158 public static void parse(BufferedReader in) throws IOException { method in class:InternetAddressTest
265 * Test the header's value to see if we can parse it as expected.
280 al = InternetAddress.parse(value, doStrict);
324 * then parse it again, to see if we get the same thing back.
332 al2 = InternetAddress.parse(ta, doStrict);
H A DParameterListDecode.java66 static boolean parse_mail = false; // parse input in mail format
87 parse(new BufferedReader(new InputStreamReader(
158 parse(in);
176 * headers and testing them. The parse is rather crude, but sufficient
179 public static void parse(BufferedReader in) throws Exception { method in class:ParameterListDecode
262 * Test the header's value to see if we can parse it as expected.
/javamail/mail/src/main/java/javax/mail/internet/
H A DNewsAddress.java209 * @exception AddressException if the parse failed
211 public static NewsAddress[] parse(String newsgroups) method in class:NewsAddress
H A DMimeMultipart.java101 * parts, or when trying to parse a multipart message with no body parts,
126 * parse.
148 * constructors and the parse method.
158 * constructors and the parse method.
168 * constructors and the parse method.
177 * constructors and the parse method.
283 // to parse this ourself.
334 parse();
347 parse();
361 parse();
574 protected synchronized void parse() throws MessagingException { method in class:MimeMultipart
[all...]
H A DInternetAddress.java101 * See the <code>parse</code> method for details of the parsing.
111 * @exception AddressException if the parse failed
114 // use our address parsing utility routine to parse the string
115 InternetAddress a[] = parse(address, true);
138 * @exception AddressException if the parse failed
628 * @exception AddressException if the parse failed
630 public static InternetAddress[] parse(String addresslist) method in class:InternetAddress
632 return parse(addresslist, true);
651 * @exception AddressException if the parse failed
653 public static InternetAddress[] parse(Strin method in class:InternetAddress
692 private static InternetAddress[] parse(String s, boolean strict, method in class:InternetAddress
[all...]
H A DMailDateFormat.java236 * @param pos the current parse position
241 public Date parse(String text, ParsePosition pos) { method in class:MailDateFormat
249 ? new Rfc2822LenientParser(text, pos).parse()
250 : new Rfc2822StrictParser(text, pos).parse();
394 * parse* methods
395 * <li>when parse* throws ParseException OR get* returns INVALID_CHAR OR
414 final Date parse() { method in class:MailDateFormat.AbstractDateParser
423 // to prevent DateFormat::parse from throwing ParseException:
H A DMimeMessage.java67 * MimeMessage uses the <code>InternetHeaders</code> class to parse and
176 // Used to parse dates
202 * parse is done within this constructor itself. <p>
216 parse(is);
249 parse(bis);
279 * parse is done within this constructor itself. <p>
292 parse(is);
335 protected void parse(InputStream is) throws MessagingException { method in class:MimeMessage
417 setAddressHeader("From", InternetAddress.parse(address));
563 return (s == null) ? null : NewsAddress.parse(
[all...]
/javamail/android/activation/src/main/java/javax/activation/
H A DMimeTypeParameterList.java79 // now parse rawdata
80 parse(parameterList);
88 protected void parse(String parameterList) throws MimeTypeParseException { method in class:MimeTypeParameterList
108 // now parse the parameter name
125 // now parse the '=' that separates the name from the value
133 // eat it and parse the parameter value
H A DMimeType.java76 parse(rawdata);
109 private void parse(String rawdata) throws MimeTypeParseException { method in class:MimeType
307 parse(in.readUTF());
/javamail/mail/src/main/java/com/sun/mail/imap/protocol/
H A DFetchResponse.java75 parse();
96 parse();
198 private void parse() throws ParsingException { method in class:FetchResponse
293 * If this item is a known extension item, parse it.
/javamail/mail/src/test/java/com/sun/mail/imap/protocol/
H A DUIDSetTest.java92 while ((t = parse(in)) != null)
122 while ((t = parse(in)) != null)
130 public static TestData parse(BufferedReader in) throws Exception { method in class:UIDSetTest
/javamail/mail/src/test/java/com/sun/mail/util/
H A DUUDecoderStreamTest.java94 while ((t = parse(in)) != null)
124 while ((t = parse(in)) != null)
132 public static TestData parse(BufferedReader in) throws Exception { method in class:UUDecoderStreamTest
/javamail/android/activation/src/main/java/com/sun/activation/registries/
H A DMailcapFile.java88 parse(new BufferedReader(reader));
106 parse(new BufferedReader(new InputStreamReader(is, "iso-8859-1")));
250 parse(new StringReader(mail_cap));
257 * parse file into a hash table of MC Type Entry Obj
259 private void parse(Reader reader) throws IOException { method in class:MailcapFile
280 // LogSupport.log("parse: " + continued);
289 // LogSupport.log("parse: " + line);
302 * A routine to parse individual entries in a Mailcap file.
313 LogSupport.log("parse: " + mailcapEntry);
314 // parse th
[all...]
H A DMimeTypeFile.java66 parse(new BufferedReader(fr));
77 parse(new BufferedReader(new InputStreamReader(is, "iso-8859-1")));
122 parse(new BufferedReader(new StringReader(mime_types)));
131 private void parse(BufferedReader buf_reader) throws IOException { method in class:MimeTypeFile
/javamail/mail/src/main/java/com/sun/mail/iap/
H A DResponse.java55 protected int index; // internal index (updated during the parse)
56 protected int pindex; // index after parse, for reset
101 parse();
118 parse();
150 private void parse() { method in class:Response
414 * Generic parsing routine that can parse out a Quoted-String,
474 } else if (parseAtoms) { // parse as ASTRING-CHARs

Completed in 74 milliseconds