OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:inputcb
(Results
1 - 3
of
3
) sorted by null
/libcore/luni/src/test/java/libcore/java/nio/charset/
OldCharset_MultiByte_EUC_JP.java
37
CharBuffer
inputCB
= CharBuffer.allocate(65536);
40
inputCB
.put(codePoint);
43
inputCB
.rewind();
44
ByteBuffer intermediateBB = encoder.encode(
inputCB
);
45
inputCB
.rewind();
49
assertEqualCBs("decode(encode(A)) must be identical with A!",
inputCB
, outputCB);
OldCharset_AbstractTest.java
109
CharBuffer
inputCB
= CharBuffer.wrap(testChars);
112
outputBB = encoder.encode(
inputCB
);
136
CharBuffer
inputCB
= CharBuffer.wrap(testChars);
139
outputBB = encoder.encode(
inputCB
);
153
//
inputCB
.rewind();
154
CharBuffer
inputCB
= CharBuffer.allocate(1);
155
inputCB
.put((char) code);
156
inputCB
.rewind();
157
ByteBuffer intermediateBB = encoder.encode(
inputCB
);
158
inputCB
.rewind()
[
all
...]
OldCharset_SingleByteAbstractTest.java
105
CharBuffer
inputCB
= CharBuffer.wrap(allChars);
108
outputBB = encoder.encode(
inputCB
);
Completed in 45 milliseconds