Searched defs:index (Results 1 - 11 of 11) sorted by relevance

/javamail/mail/src/main/java/javax/mail/
H A DMultipartDataSource.java74 * @param index the index of the desired Part
76 * @exception IndexOutOfBoundsException if the given index
80 public BodyPart getBodyPart(int index) throws MessagingException; argument
H A DMultipart.java148 * @param index the index of the desired Part
150 * @exception IndexOutOfBoundsException if the given index
154 public synchronized BodyPart getBodyPart(int index) argument
159 return (BodyPart)parts.elementAt(index);
187 * @param index Index of the part to remove
188 * @exception IndexOutOfBoundsException if the given index
195 public synchronized void removeBodyPart(int index) argument
200 BodyPart part = (BodyPart)parts.elementAt(index);
201 parts.removeElementAt(index);
240 addBodyPart(BodyPart part, int index) argument
[all...]
/javamail/outlook/src/main/java/
H A DMSMultipartDataSource.java101 public BodyPart getBodyPart(int index) throws MessagingException { argument
102 return (BodyPart)parts.get(index);
/javamail/mail/src/main/java/com/sun/mail/imap/
H A DIMAPMultipartDataSource.java80 public BodyPart getBodyPart(int index) throws MessagingException { argument
81 return parts.get(index);
/javamail/mail/src/main/java/com/sun/mail/util/
H A DUUDecoderStream.java61 private int index = 0; // index into the cache field in class:UUDecoderStream
118 if (index >= bufsize) {
122 index = 0; // reset index into buffer
124 return buffer[index++] & 0xff; // return lower byte
147 return ((in.available() * 3)/4 + (bufsize-index));
H A DBASE64DecoderStream.java59 private int index = 0; // index into the cache field in class:BASE64DecoderStream
109 if (index >= bufsize) {
113 index = 0; // reset index into buffer
115 return buffer[index++] & 0xff; // Zero off the MSB
135 while (index < bufsize && len > 0) {
136 buf[off++] = buffer[index++];
139 if (index >= bufsize)
140 bufsize = index
[all...]
/javamail/mail/src/main/java/com/sun/mail/imap/protocol/
H A DFetchResponse.java103 public Item getItem(int index) { argument
104 return items[index];
200 if (buffer[index] != '(')
202 "error in FETCH parsing, missing '(' at index " + index);
207 index++; // skip '(', or SPACE
209 if (index >= size)
218 "error in FETCH parsing, unrecognized item at index " +
219 index + ", starts with \"" + next20() + "\"");
220 } while (buffer[index] !
[all...]
/javamail/dsn/src/main/java/com/sun/mail/dsn/
H A DMultipartReport.java376 private synchronized void setBodyPart(BodyPart part, int index) argument
381 if (index < parts.size())
382 super.removeBodyPart(index);
383 super.addBodyPart(part, index);
416 * @param index Index of the part to remove
419 public void removeBodyPart(int index) throws MessagingException { argument
442 * Adds a BodyPart at position <code>index</code>.
446 * @param index Location where to insert the part
449 public synchronized void addBodyPart(BodyPart part, int index) argument
/javamail/mail/src/main/java/javax/mail/internet/
H A DMimeMultipart.java341 * @param index the index of the desired BodyPart
345 public synchronized BodyPart getBodyPart(int index) argument
348 return super.getBodyPart(index);
393 * @param index Index of the part to remove
394 * @exception IndexOutOfBoundsException if the given index
401 public void removeBodyPart(int index) throws MessagingException { argument
403 super.removeBodyPart(index);
423 * Adds a BodyPart at position <code>index</code>.
424 * If <code>index</cod
436 addBodyPart(BodyPart part, int index) argument
[all...]
/javamail/mail/src/main/java/com/sun/mail/iap/
H A DResponse.java55 protected int index; // internal index (updated during the parse) field in class:Response
56 protected int pindex; // index after parse, for reset
127 index = r.index;
151 index = 0; // position internal index at start
155 if (buffer[index] == '+') { // Continuation statement
157 index += 1; // Position beyond the '+'
159 } else if (buffer[index]
[all...]
/javamail/mail/src/main/java/com/sun/mail/util/logging/
H A DMailHandler.java299 * The attachment order maps directly to the array index order in this
300 * <tt>Handler</tt> with zero index being the first attachment. The number of
390 * 3. The index of the first filter to accept a log record.
397 * This must be less than the body filter index (-1).
434 * A mapping of log record to matching filter index. Negative one is used
743 * This is used to get the filter index from when {@code isLoggable} and
746 * @return the filter index or MUTEX_PUBLISH if unknown.
760 * This is used to record the filter index when {@code isLoggable} and
763 * @param index the filter index
766 setMatchedPart(int index) argument
778 clearMatches(int index) argument
3457 createBodyPart(int index) argument
[all...]

Completed in 27 milliseconds