OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:writeRawByte
(Results
1 - 3
of
3
) sorted by null
/external/protobuf/java/src/main/java/com/google/protobuf/micro/
CodedOutputStreamMicro.java
327
writeRawByte
(value ? 1 : 0);
824
public void
writeRawByte
(final byte value) throws IOException {
833
public void
writeRawByte
(final int value) throws IOException {
834
writeRawByte
((byte) value);
891
writeRawByte
(value);
894
writeRawByte
((value & 0x7F) | 0x80);
917
writeRawByte
((int)value);
920
writeRawByte
(((int)value & 0x7F) | 0x80);
[
all
...]
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
CodedOutputByteBufferNano.java
294
writeRawByte
(value ? 1 : 0);
758
public void
writeRawByte
(final byte value) throws IOException {
768
public void
writeRawByte
(final int value) throws IOException {
769
writeRawByte
((byte) value);
808
writeRawByte
(value);
811
writeRawByte
((value & 0x7F) | 0x80);
834
writeRawByte
((int)value);
837
writeRawByte
(((int)value & 0x7F) | 0x80);
859
writeRawByte
((value ) & 0xFF);
860
writeRawByte
((value >> 8) & 0xFF)
[
all
...]
/external/protobuf/java/src/main/java/com/google/protobuf/
CodedOutputStream.java
346
writeRawByte
(value ? 1 : 0);
860
public void
writeRawByte
(final byte value) throws IOException {
869
public void
writeRawByte
(final int value) throws IOException {
870
writeRawByte
((byte) value);
927
writeRawByte
(value);
930
writeRawByte
((value & 0x7F) | 0x80);
[
all
...]
Completed in 24 milliseconds