Home
last modified time | relevance | path

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

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/Reflection/
DFieldDescriptor.cs63 public string JsonName { get; } property in Google.Protobuf.Reflection.FieldDescriptor
100JsonName = Proto.JsonName == "" ? JsonFormatter.ToCamelCase(Proto.Name) : Proto.JsonName; in FieldDescriptor()
DMessageDescriptor.cs110 map[field.JsonName] = field; in CreateJsonFieldMap()
DDescriptor.cs1495 public string JsonName { property in Google.Protobuf.Reflection.FieldDescriptorProto
1534 if (JsonName != other.JsonName) return false; in Equals()
1550 if (JsonName.Length != 0) hash ^= JsonName.GetHashCode(); in GetHashCode()
1598 if (JsonName.Length != 0) { in WriteTo()
1600 output.WriteString(JsonName); in WriteTo()
1631 if (JsonName.Length != 0) { in CalculateSize()
1632 size += 1 + pb::CodedOutputStream.ComputeStringSize(JsonName); in CalculateSize()
1669 if (other.JsonName.Length != 0) { in MergeFrom()
1670 JsonName = other.JsonName; in MergeFrom()
1728 JsonName = input.ReadString(); in MergeFrom()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/WellKnownTypes/
DType.cs515 public string JsonName { property in Google.Protobuf.WellKnownTypes.Field
557 if (JsonName != other.JsonName) return false; in Equals()
573 if (JsonName.Length != 0) hash ^= JsonName.GetHashCode(); in GetHashCode()
614 if (JsonName.Length != 0) { in WriteTo()
616 output.WriteString(JsonName); in WriteTo()
649 if (JsonName.Length != 0) { in CalculateSize()
650 size += 1 + pb::CodedOutputStream.ComputeStringSize(JsonName); in CalculateSize()
685 if (other.JsonName.Length != 0) { in MergeFrom()
686 JsonName = other.JsonName; in MergeFrom()
734 JsonName = input.ReadString(); in MergeFrom()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/
DJsonFormatter.cs242 WriteString(writer, accessor.Descriptor.JsonName); in WriteMessageFields()