OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:computeGroupSizeNoTag
(Results
1 - 3
of
3
) sorted by null
/external/protobuf/java/src/main/java/com/google/protobuf/
CodedOutputStream.java
507
return computeTagSize(fieldNumber) * 2 +
computeGroupSizeNoTag
(value);
706
public static int
computeGroupSizeNoTag
(final MessageLite value) {
720
return
computeGroupSizeNoTag
(value);
[
all
...]
/external/protobuf/java/src/main/java/com/google/protobuf/micro/
CodedOutputStreamMicro.java
482
return computeTagSize(fieldNumber) * 2 +
computeGroupSizeNoTag
(value);
676
public static int
computeGroupSizeNoTag
(final MessageMicro value) {
[
all
...]
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
CodedOutputByteBufferNano.java
448
return computeTagSize(fieldNumber) * 2 +
computeGroupSizeNoTag
(value);
642
public static int
computeGroupSizeNoTag
(final MessageNano value) {
Completed in 309 milliseconds