HomeSort by relevance Sort by last modified time
    Searched refs:endOfInput (Results 1 - 16 of 16) sorted by null

  /external/webkit/JavaScriptCore/wrec/
WREC.cpp 53 MacroAssembler::Jump endOfInput;
63 generator.generateIncrementIndex(&endOfInput);
71 endOfInput.link(&generator);
WRECGenerator.cpp 621 Jump endOfInput = branch32(Equal, length, index);
625 endOfInput.link(this);
  /libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
FixedLengthInputStream.java 34 endOfInput(true);
52 endOfInput(true);
UnknownLengthHttpInputStream.java 43 endOfInput(false);
AbstractHttpInputStream.java 103 protected final void endOfInput(boolean reuseSocket) throws IOException {
ChunkedInputStream.java 90 endOfInput(true);
  /libcore/luni/src/main/java/java/nio/charset/
CharsetEncoder.java 37 * <li>Invoke {@link #encode(CharBuffer, ByteBuffer, boolean) encode} with the {@code endOfInput}
48 * {@code endOfInput} set to true.</li>
390 * The <code>endOfInput</code> parameter indicates if the invoker can
407 * @param endOfInput
418 public final CoderResult encode(CharBuffer in, ByteBuffer out, boolean endOfInput) {
419 if ((status == FLUSH) || (!endOfInput && status == END)) {
433 status = endOfInput ? END : ONGOING;
434 if (endOfInput) {
445 status = endOfInput ? END : ONGOING;
CharsetDecoder.java 36 * method until the additional input is not needed, the <code>endOfInput</code>
40 * method for the last time, and then the <code>endOfInput</code> parameter
303 * The <code>endOfInput</code> parameter indicates that the invoker cannot
319 * @param endOfInput
332 boolean endOfInput) {
336 if ((status == FLUSH) || (!endOfInput && status == END)) {
360 status = endOfInput ? END : ONGOING;
361 if (endOfInput && remaining > 0) {
  /libcore/luni/src/main/java/java/io/
InputStreamReader.java 43 private boolean endOfInput = false;
258 endOfInput = true;
283 if (result == CoderResult.UNDERFLOW && endOfInput) {
  /libcore/luni/src/test/java/tests/api/java/nio/charset/
AbstractCharsetEncoderTestCase.java 168 // Normal case: after encode with endOfInput is true
181 // Illegal state: flush after encode with endOfInput is false
240 // Normal case: just after encode with that endOfInput is true
247 // Normal case:just after encode with that endOfInput is false
263 // test illegal states for two encode method with endOfInput is true
302 // Normal case: just after encode with that endOfInput is true
310 // Normal case:just after encode with that endOfInput is false
340 // test illegal states for two encode method with endOfInput is false
390 // Illegal state: just after encode with that endOfInput is true
400 // Normal case:just after encode with that endOfInput is fals
    [all...]
AbstractCharsetDecoderTestCase.java 359 // endOfInput to false
421 void implTestDecodeCharBufferByteBufferbooleanException(boolean endOfInput)
433 CoderResult result = decoder.decode(in, out, endOfInput);
441 endOfInput));
449 endOfInput));
451 } else if (endOfInput) {
462 CoderResult result = decoder.decode(in, out, endOfInput);
470 endOfInput));
478 endOfInput));
480 } else if (endOfInput) {
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/nio/internal/
IOUtil.java 135 boolean endOfInput = read < DEFAULT_BUFFER_SIZE;
136 CoderResult result = decoder.decode(bytes, chars, endOfInput);
  /external/libxml2/
xmlIO.c     [all...]
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 443 milliseconds