Home
last modified time | relevance | path

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

/external/protobuf/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.cs106 map[field.JsonName] = field; in CreateJsonFieldMap()
DDescriptor.cs1386 public string JsonName { property in Google.Protobuf.Reflection.FieldDescriptorProto
1422 if (JsonName != other.JsonName) return false; in Equals()
1437 if (JsonName.Length != 0) hash ^= JsonName.GetHashCode(); in GetHashCode()
1483 if (JsonName.Length != 0) { in WriteTo()
1485 output.WriteString(JsonName); in WriteTo()
1515 if (JsonName.Length != 0) { in CalculateSize()
1516 size += 1 + pb::CodedOutputStream.ComputeStringSize(JsonName); in CalculateSize()
1552 if (other.JsonName.Length != 0) { in MergeFrom()
1553 JsonName = other.JsonName; in MergeFrom()
1610 JsonName = input.ReadString(); in MergeFrom()
/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
DType.cs483 public string JsonName { property in Google.Protobuf.WellKnownTypes.Field
522 if (JsonName != other.JsonName) return false; in Equals()
537 if (JsonName.Length != 0) hash ^= JsonName.GetHashCode(); in GetHashCode()
576 if (JsonName.Length != 0) { in WriteTo()
578 output.WriteString(JsonName); in WriteTo()
610 if (JsonName.Length != 0) { in CalculateSize()
611 size += 1 + pb::CodedOutputStream.ComputeStringSize(JsonName); in CalculateSize()
645 if (other.JsonName.Length != 0) { in MergeFrom()
646 JsonName = other.JsonName; in MergeFrom()
693 JsonName = input.ReadString(); in MergeFrom()
/external/golang-protobuf/protoc-gen-go/descriptor/
Ddescriptor.pb.go825JsonName *string `protobuf:"bytes,10,opt,name=json_name,json=jsonName" json:"jso… member
914 if m != nil && m.JsonName != nil {
915 return *m.JsonName
/external/syzkaller/vendor/github.com/golang/protobuf/protoc-gen-go/descriptor/
Ddescriptor.pb.go793JsonName *string `protobuf:"bytes,10,opt,name=json_name,json=jsonName" json:"jso… member
881 if m != nil && m.JsonName != nil {
882 return *m.JsonName
/external/protobuf/csharp/src/Google.Protobuf/
DJsonFormatter.cs242 WriteString(writer, accessor.Descriptor.JsonName); in WriteMessageFields()