OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:endOfInput
(Results
1 - 25
of
64
) sorted by null
1
2
3
/libcore/ojluni/src/main/java/sun/nio/cs/
StreamEncoder.java
227
private void flushLeftoverChar(CharBuffer cb, boolean
endOfInput
)
230
if (!haveLeftoverChar && !
endOfInput
)
241
while (lcb.hasRemaining() ||
endOfInput
) {
242
CoderResult cr = encoder.encode(lcb, bb,
endOfInput
);
247
flushLeftoverChar(cb,
endOfInput
);
/libcore/ojluni/src/main/java/java/nio/charset/
CharsetDecoder.java
60
* <tt>
endOfInput
</tt> argument and filling the input buffer and flushing the
64
* <tt>true</tt> for the <tt>
endOfInput
</tt> argument; and then </p></li>
521
* <p> The <tt>
endOfInput
</tt> parameter advises this method as to whether
544
* @param
endOfInput
554
* the <tt>
endOfInput
</tt> parameter, nor of this method with a
555
* value of <tt>true</tt> for the <tt>
endOfInput
</tt> parameter
563
boolean
endOfInput
)
565
int newState =
endOfInput
? ST_END : ST_CODING;
567
&& !(
endOfInput
&& (state == ST_END)))
586
if (
endOfInput
&& in.hasRemaining())
[
all
...]
CharsetEncoder.java
60
* <tt>
endOfInput
</tt> argument and filling the input buffer and flushing the
64
* <tt>true</tt> for the <tt>
endOfInput
</tt> argument; and then </p></li>
544
* <p> The <tt>
endOfInput
</tt> parameter advises this method as to whether
567
* @param
endOfInput
577
* the <tt>
endOfInput
</tt> parameter, nor of this method with a
578
* value of <tt>true</tt> for the <tt>
endOfInput
</tt> parameter
586
boolean
endOfInput
)
588
int newState =
endOfInput
? ST_END : ST_CODING;
590
&& !(
endOfInput
&& (state == ST_END)))
609
if (
endOfInput
&& in.hasRemaining())
[
all
...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
CharsetEncoderTest.java
293
// Normal case: after encode with
endOfInput
is true
302
// Illegal state: flush after encode with
endOfInput
is false
347
// Normal case: just after encode with that
endOfInput
is true
354
// Normal case:just after encode with that
endOfInput
is false
370
// test illegal states for two encode method with
endOfInput
is true
382
// Normal case: just after encode with that
endOfInput
is true
390
// Normal case:just after encode with that
endOfInput
is false
420
// test illegal states for two encode method with
endOfInput
is false
438
// Illegal state: just after encode with that
endOfInput
is true
448
// Normal case:just after encode with that
endOfInput
is fals
[
all
...]
CharsetDecoderTest.java
337
//
endOfInput
to false
404
boolean
endOfInput
) throws CharacterCodingException,
414
CoderResult result = decoder.decode(in, out,
endOfInput
);
421
assertSame(CoderResult.UNDERFLOW, decoder.decode(in, out,
endOfInput
));
428
assertSame(CoderResult.UNDERFLOW, decoder.decode(in, out,
endOfInput
));
458
boolean
endOfInput
) throws CharacterCodingException,
467
CoderResult result = decoder.decode(in, out,
endOfInput
);
474
assertSame(CoderResult.UNDERFLOW, decoder.decode(in, out,
endOfInput
));
481
assertSame(CoderResult.UNDERFLOW, decoder.decode(in, out,
endOfInput
));
510
boolean
endOfInput
) throws CharacterCodingException
[
all
...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
Http1xStream.java
355
protected final void
endOfInput
() throws IOException {
384
endOfInput
();
401
endOfInput
();
466
endOfInput
();
492
endOfInput
();
/external/annotation-tools/asmx/test/lib/
jakarta-oro-2.0.8.jar
/external/guice/extensions/persist/lib/
oro-2.0.8.jar
/external/libxml2/
xmlIO.c
[
all
...]
/prebuilts/tools/common/m2/repository/oro/oro/2.0.8/
oro-2.0.8.jar
/external/guice/lib/build/jdiff/
xerces.jar
/prebuilts/tools/common/m2/repository/commons-io/commons-io/2.4/
commons-io-2.4.jar
/prebuilts/tools/common/m2/repository/io/netty/netty-handler/4.1.0.CR3/
netty-handler-4.1.0.CR3.jar
/prebuilts/tools/common/m2/repository/io/netty/netty-handler/4.1.3.Final/
netty-handler-4.1.3.Final.jar
/prebuilts/tools/common/m2/repository/io/netty/netty-handler/4.1.6.Final/
netty-handler-4.1.6.Final.jar
/prebuilts/tools/common/offline-m2/commons-io/commons-io/2.4/
commons-io-2.4.jar
/external/guice/extensions/struts2/lib/
struts2-core-2.2.1.jar
/prebuilts/tools/common/m2/repository/com/squareup/okhttp/okhttp/2.5.0/
okhttp-2.5.0.jar
/prebuilts/tools/common/m2/repository/com/squareup/okhttp/okhttp/2.7.2/
okhttp-2.7.2.jar
/prebuilts/tools/common/m2/repository/com/squareup/okhttp/okhttp/2.7.4/
okhttp-2.7.4.jar
/prebuilts/tools/common/m2/repository/com/squareup/okhttp3/okhttp/3.3.0/
okhttp-3.3.0.jar
/prebuilts/tools/common/m2/repository/com/squareup/okhttp3/okhttp/3.4.1/
okhttp-3.4.1.jar
/prebuilts/misc/common/robolectric/android-all/
android-all-4.1.2_r1-robolectric-r1.jar
android-all-4.2.2_r1.2-robolectric-r1.jar
android-all-4.3_r2-robolectric-r1.jar
Completed in 3120 milliseconds
1
2
3