OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:allocatedOutput
(Results
1 - 2
of
2
) sorted by null
/libcore/luni/src/main/java/java/nio/charset/
CharsetDecoderICU.java
43
private char[]
allocatedOutput
= null;
98
allocatedOutput
= null;
167
if (
allocatedOutput
== null || outEnd >
allocatedOutput
.length) {
168
allocatedOutput
= new char[outEnd];
171
output =
allocatedOutput
;
CharsetEncoderICU.java
59
private byte[]
allocatedOutput
= null;
127
allocatedOutput
= null;
196
if (
allocatedOutput
== null || outEnd >
allocatedOutput
.length) {
197
allocatedOutput
= new byte[outEnd];
200
output =
allocatedOutput
;
Completed in 251 milliseconds