Home
last modified time | relevance | path

Searched refs:getWireType (Results 1 – 9 of 9) sorted by relevance

/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DMapEntryLite.java181 if (tag == WireFormat.makeTag(KEY_FIELD_NUMBER, metadata.keyType.getWireType())) { in parseEntry()
183 } else if (tag == WireFormat.makeTag(VALUE_FIELD_NUMBER, metadata.valueType.getWireType())) { in parseEntry()
211 if (tag == WireFormat.makeTag(KEY_FIELD_NUMBER, metadata.keyType.getWireType())) { in parseInto()
213 } else if (tag == WireFormat.makeTag(VALUE_FIELD_NUMBER, metadata.valueType.getWireType())) { in parseInto()
DWireFormat.java163 public int getWireType() { in getWireType() method in WireFormat.FieldType
DFieldSet.java493 return type.getWireType(); in getWireFormatForFieldType()
DMessageSchema.java4447 if (wireType == metadata.keyType.getWireType()) { in decodeMapEntry()
4455 if (wireType == metadata.valueType.getWireType()) { in decodeMapEntry()
/third_party/protobuf/js/experimental/runtime/kernel/
Dfield.js72 static getWireType(indexEntry) { method in Field
Dkernel.js38 const wireType = Field.getWireType(indexEntry);
105 Field.getWireType(indexArray[0]) === WireType.DELIMITED) {
111 const wireType = Field.getWireType(indexEntry);
498 writer.writeTag(fieldNumber, Field.getWireType(indexEntry));
501 Field.getStartIndex(indexEntry), Field.getWireType(indexEntry),
/third_party/protobuf/php/src/Google/Protobuf/Internal/
DGPBWire.php62 public static function getWireType($type) function in Google\\Protobuf\\Internal\\GPBWire
398 return ($number << 3) | self::getWireType($type);
DMessage.php495 GPBWire::getWireType($field->getType())) {
/third_party/protobuf/js/binary/
Dreader.js204 jspb.BinaryReader.prototype.getWireType = function() { method in jspb.BinaryReader