OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:newoutput
(Results
1 - 3
of
3
) sorted by null
/libcore/luni/src/main/java/java/lang/
CaseMapper.java
158
char[]
newoutput
= new char[output.length + (count / 6) + 2];
local
159
System.arraycopy(output, 0,
newoutput
, 0, output.length);
160
output =
newoutput
;
181
char[]
newoutput
= new char[output.length + (count / 6) + 3];
local
182
System.arraycopy(output, 0,
newoutput
, 0, output.length);
183
output =
newoutput
;
/external/protobuf/java/src/main/java/com/google/protobuf/
ByteString.java
316
public static Output
newOutput
(final int initialCapacity) {
323
public static Output
newOutput
() {
324
return
newOutput
(32);
354
* Using this is much more efficient than calling {@code
newOutput
()} and
/external/protobuf/java/src/test/java/com/google/protobuf/
CodedInputStreamTest.java
383
ByteString.Output rawOutput = ByteString.
newOutput
();
492
ByteString.Output rawOutput = ByteString.
newOutput
();
Completed in 118 milliseconds