Searched defs:wireType (Results 1 - 12 of 12) sorted by relevance

/external/protobuf/csharp/src/Google.Protobuf/
H A DWireFormat.cs99 public static uint MakeTag(int fieldNumber, WireType wireType) argument
101 return (uint) (fieldNumber << TagTypeBits) | (uint) wireType;
/external/protobuf/javamicro/src/main/java/com/google/protobuf/micro/
H A DWireFormatMicro.java69 static int makeTag(final int fieldNumber, final int wireType) { argument
70 return (fieldNumber << TAG_TYPE_BITS) | wireType;
H A DCodedOutputStreamMicro.java874 public void writeTag(final int fieldNumber, final int wireType) argument
876 writeRawVarint32(WireFormatMicro.makeTag(fieldNumber, wireType));
/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
H A DWireFormatNano.java71 static int makeTag(final int fieldNumber, final int wireType) { argument
72 return (fieldNumber << TAG_TYPE_BITS) | wireType;
H A DCodedOutputByteBufferNano.java1007 public void writeTag(final int fieldNumber, final int wireType) argument
1009 writeRawVarint32(WireFormatNano.makeTag(fieldNumber, wireType));
/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DWireFormat.java71 static int makeTag(final int fieldNumber, final int wireType) { argument
72 return (fieldNumber << TAG_TYPE_BITS) | wireType;
145 FieldType(final JavaType javaType, final int wireType) { argument
147 this.wireType = wireType;
151 private final int wireType; field in class:WireFormat.FieldType
154 public int getWireType() { return wireType; }
H A DTextFormat.java490 final int wireType,
497 printUnknownFieldValue(wireType, value, generator);
489 printUnknownField(final int number, final int wireType, final List<?> values, final TextGenerator generator) argument
H A DCodedOutputStream.java191 public abstract void writeTag(int fieldNumber, int wireType) throws IOException; argument
1120 public final void writeTag(final int fieldNumber, final int wireType) throws IOException { argument
1121 writeUInt32NoTag(WireFormat.makeTag(fieldNumber, wireType));
1490 public void writeTag(final int fieldNumber, final int wireType) throws IOException { argument
1491 writeUInt32NoTag(WireFormat.makeTag(fieldNumber, wireType));
1831 final void bufferTag(final int fieldNumber, final int wireType) { argument
1832 bufferUInt32NoTag(WireFormat.makeTag(fieldNumber, wireType));
1964 public void writeTag(final int fieldNumber, final int wireType) throws IOException { argument
1965 writeUInt32NoTag(WireFormat.makeTag(fieldNumber, wireType));
2267 public void writeTag(final int fieldNumber, final int wireType) throw argument
[all...]
/external/protobuf/objectivec/
H A DGPBDescriptor_PackagePrivate.h232 @property(nonatomic, readonly) GPBWireFormat wireType; variable
234 // For repeated extensions, alternateWireType is the wireType with the opposite
267 // For repeated fields, alternateWireType is the wireType with the opposite
/external/google-tv-pairing-protocol/java/jar/
H A Dprotobuf-java-2.2.0-lite.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/protobuf/ com/google/protobuf/UninitializedMessageException ...
/external/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/dagger2/lib/
H A Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/googlejavaformat/ com/google/googlejavaformat/CloseOp ...

Completed in 180 milliseconds