OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:writeRawByte
(Results
1 - 2
of
2
) 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/
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 30 milliseconds