Searched refs:endOfInput (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DStreamEncoder.java227 private void flushLeftoverChar(CharBuffer cb, boolean endOfInput) argument
230 if (!haveLeftoverChar && !endOfInput)
241 while (lcb.hasRemaining() || endOfInput) {
242 CoderResult cr = encoder.encode(lcb, bb, endOfInput);
247 flushLeftoverChar(cb, endOfInput);
/openjdk7/jdk/src/share/classes/java/nio/charset/
H A DCharset-X-Coder.java.template58 * <tt>endOfInput</tt> argument and filling the input buffer and flushing the
62 * <tt>true</tt> for the <tt>endOfInput</tt> argument; and then </p></li>
507 * <p> The <tt>endOfInput</tt> parameter advises this method as to whether
530 * @param endOfInput
540 * the <tt>endOfInput</tt> parameter, nor of this method with a
541 * value of <tt>true</tt> for the <tt>endOfInput</tt> parameter
549 boolean endOfInput)
551 int newState = endOfInput ? ST_END : ST_CODING;
553 && !(endOfInput && (state == ST_END)))
572 if (endOfInput
[all...]

Completed in 39 milliseconds