/javamail/mail/src/main/java/javax/mail/internet/ |
H A D | MimeMultipart.java | 101 * 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 D | MimeMessage.java | 67 * 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...] |
H A D | MailDateFormat.java | 236 * @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 D | NewsAddress.java | 209 * @exception AddressException if the parse failed 211 public static NewsAddress[] parse(String newsgroups) method in class:NewsAddress
|
/javamail/outlook/src/main/java/ |
H A D | MSMessage.java | 85 //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/taglib/src/main/java/demo/ |
H A D | SendTag.java | 109 toAddrs = InternetAddress.parse(recipients, false); 120 ccAddrs = InternetAddress.parse(cc, false);
|
/javamail/mail/src/test/java/javax/mail/internet/ |
H A D | InternetAddressFoldTest.java | 74 parse(new BufferedReader(new InputStreamReader( 89 private static void parse(BufferedReader in) throws Exception { method in class:InternetAddressFoldTest
|
H A D | FoldTest.java | 76 parse(new BufferedReader(new InputStreamReader( 89 private static void parse(BufferedReader in) throws IOException { method in class:FoldTest
|
H A D | MailDateFormatTest.java | 120 assertThat(fmt.parse(fmt.format(date)), is(date)); 170 getDefault().parse(source, pos); 179 assertNull(getDefault().parse("", new ParsePosition(-1))); 180 assertNull(getDefault().parse("", new ParsePosition(0))); 181 assertNull(getDefault().parse("", new ParsePosition(1))); 193 // though java.text.DateFormat::parse(String, ParsePosition) specifies: 300 @Ignore("until parse throws ParseException instead of returning null (1.6)") 306 Date date = getStrict().parse(input); 398 // Date.from(ISO_INSTANT.parse("2012-06-30T23:59:60Z", Instant::from)) 529 Date date = fmt.parse(inpu [all...] |
H A D | InternetAddressTest.java | 71 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 D | MimeMessageTest.java | 144 NewsAddress[] longng = NewsAddress.parse( 157 NewsAddress[] longng = NewsAddress.parse( 213 InternetAddress[] addrs = InternetAddress.parse(
|
H A D | HeaderTokenizerTest.java | 68 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
|
/javamail/android/activation/src/main/java/javax/activation/ |
H A D | MimeType.java | 76 parse(rawdata); 109 private void parse(String rawdata) throws MimeTypeParseException { method in class:MimeType 307 parse(in.readUTF());
|
/javamail/android/activation/src/main/java/com/sun/activation/registries/ |
H A D | MimeTypeFile.java | 66 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
|
H A D | MailcapFile.java | 88 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...] |
/javamail/mail/src/main/java/com/sun/mail/imap/protocol/ |
H A D | INTERNALDATE.java | 69 * Used to parse dates only. The parse method is thread safe 72 * class will parse dates in INTERNALDATE format as well as 91 date = mailDateFormat.parse(s); 94 throw new ParsingException("INTERNALDATE parse error");
|
H A D | FetchResponse.java | 75 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/demo/src/main/java/ |
H A D | msgsend.java | 155 InternetAddress.parse(to, false)); 158 InternetAddress.parse(cc, false)); 161 InternetAddress.parse(bcc, false));
|
H A D | sendhtml.java | 148 InternetAddress.parse(to, false)); 151 InternetAddress.parse(cc, false)); 154 InternetAddress.parse(bcc, false));
|
H A D | smtpsend.java | 208 InternetAddress.parse(to, false)); 211 InternetAddress.parse(cc, false)); 214 InternetAddress.parse(bcc, false));
|
/javamail/mail/src/main/java/com/sun/mail/iap/ |
H A D | Response.java | 55 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
|
/javamail/mail/src/test/java/com/sun/mail/imap/protocol/ |
H A D | UIDSetTest.java | 92 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 D | UUDecoderStreamTest.java | 94 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/mbox/src/main/java/com/sun/mail/mbox/ |
H A D | SunV3Multipart.java | 113 protected synchronized void parse() throws MessagingException { method in class:SunV3Multipart 117 * we call addBodyPart, which will call parse again. We really
|
/javamail/mail/src/test/java/com/sun/mail/util/logging/ |
H A D | CollectorFormatterTest.java | 445 NumberFormat.getIntegerInstance().parse(min);
500 Number num = NumberFormat.getIntegerInstance().parse(now);
504 assertFalse(NumberFormat.getIntegerInstance().parse(now).longValue()
912 Number n = NumberFormat.getIntegerInstance().parse(init);
922 NumberFormat.getIntegerInstance().parse(init);
937 Date dt = df.parse(init);
941 assertTrue(dt.equals(df.parse(f.getTail((Handler) null))));
950 NumberFormat.getIntegerInstance().parse(now);
965 Date dt = df.parse(init);
969 assertFalse(dt.equals(df.parse( [all...] |