HomeSort by relevance Sort by last modified time
    Searched refs:writeRawBytes (Results 1 - 3 of 3) sorted by null

  /external/protobuf/java/src/main/java/com/google/protobuf/micro/
CodedOutputStreamMicro.java 43 * {@link #writeRawVarint32} and {@link #writeRawBytes}). If you are
337 writeRawBytes(bytes);
355 writeRawBytes(bytes);
361 writeRawBytes(value);
838 public void writeRawBytes(final byte[] value) throws IOException {
839 writeRawBytes(value, 0, value.length);
843 public void writeRawBytes(final byte[] value, int offset, int length)
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
CodedOutputStream.java 43 * {@link #writeRawVarint32} and {@link #writeRawBytes}). If you are
356 writeRawBytes(bytes);
386 writeRawBytes(bytes);
874 public void writeRawBytes(final byte[] value) throws IOException {
875 writeRawBytes(value, 0, value.length);
879 public void writeRawBytes(final byte[] value, int offset, int length)
    [all...]
  /external/protobuf/java/src/test/java/com/google/protobuf/
CodedInputStreamTest.java 389 output.writeRawBytes(new byte[32]); // Pad with a few random bytes.
498 output.writeRawBytes(new byte[] { (byte)0x80 });

Completed in 79 milliseconds