Home
last modified time | relevance | path

Searched refs:byteOutput (Results 1 – 4 of 4) sorted by relevance

/external/guava/guava-gwt/src-super/com/google/common/io/super/com/google/common/io/
DBaseEncoding.java161 ByteOutput byteOutput = encodingStream(result); in encode() local
164 byteOutput.write(bytes[off + i]); in encode()
166 byteOutput.close(); in encode()
/external/guava/guava/src/com/google/common/io/
DBaseEncoding.java169 ByteOutput byteOutput = encodingStream(result); in encode() local
172 byteOutput.write(bytes[off + i]); in encode()
174 byteOutput.close(); in encode()
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DByteString.java680 abstract void writeTo(ByteOutput byteOutput) throws IOException; in writeTo() argument
DCodedOutputStream.java175 static CodedOutputStream newInstance(ByteOutput byteOutput, int bufferSize) { in newInstance() argument
180 return new ByteOutputEncoder(byteOutput, bufferSize); in newInstance()