Home
last modified time | relevance | path

Searched refs:JsonName (Results 1 – 5 of 5) sorted by relevance

/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/
DFieldDescriptor.cs71 public string JsonName { get; } property in Google.Protobuf.Reflection.FieldDescriptor
128JsonName = Proto.JsonName == "" ? JsonFormatter.ToJsonName(Proto.Name) : Proto.JsonName; in FieldDescriptor()
DMessageDescriptor.cs126 map[field.JsonName] = field; in CreateJsonFieldMap()
DDescriptor.cs2404 public string JsonName { property in Google.Protobuf.Reflection.FieldDescriptorProto
2500 if (JsonName != other.JsonName) return false; in Equals()
2517 if (HasJsonName) hash ^= JsonName.GetHashCode(); in GetHashCode()
2574 output.WriteString(JsonName); in WriteTo()
2627 output.WriteString(JsonName); in IBufferMessage.InternalWriteTo()
2667 size += 1 + pb::CodedOutputStream.ComputeStringSize(JsonName); in CalculateSize()
2711 JsonName = other.JsonName; in MergeFrom()
2776 JsonName = input.ReadString(); in MergeFrom()
2837 JsonName = input.ReadString(); in IBufferMessage.InternalMergeFrom()
/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
DType.cs613 public string JsonName { property in Google.Protobuf.WellKnownTypes.Field
655 if (JsonName != other.JsonName) return false; in Equals()
671 if (JsonName.Length != 0) hash ^= JsonName.GetHashCode(); in GetHashCode()
718 if (JsonName.Length != 0) { in WriteTo()
720 output.WriteString(JsonName); in WriteTo()
764 if (JsonName.Length != 0) { in IBufferMessage.InternalWriteTo()
766 output.WriteString(JsonName); in IBufferMessage.InternalWriteTo()
803 if (JsonName.Length != 0) { in CalculateSize()
804 size += 1 + pb::CodedOutputStream.ComputeStringSize(JsonName); in CalculateSize()
842 if (other.JsonName.Length != 0) { in MergeFrom()
[all …]
/third_party/protobuf/csharp/src/Google.Protobuf/
DJsonFormatter.cs235 WriteString(writer, accessor.Descriptor.JsonName); in WriteMessageFields()