Home
last modified time | relevance | path

Searched refs:TrailingComments (Results 1 – 3 of 3) sorted by relevance

/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/
DDescriptorDeclaration.cs84 public string TrailingComments { get; } property in Google.Protobuf.Reflection.DescriptorDeclaration
105 TrailingComments = location.TrailingComments; in DescriptorDeclaration()
DDescriptor.cs9563 public string TrailingComments { property in Google.Protobuf.Reflection.SourceCodeInfo.Types.Location
9606 if (TrailingComments != other.TrailingComments) return false; in Equals()
9617 if (HasTrailingComments) hash ^= TrailingComments.GetHashCode(); in GetHashCode()
9643 output.WriteString(TrailingComments); in WriteTo()
9663 output.WriteString(TrailingComments); in IBufferMessage.InternalWriteTo()
9681 size += 1 + pb::CodedOutputStream.ComputeStringSize(TrailingComments); in CalculateSize()
9701 TrailingComments = other.TrailingComments; in MergeFrom()
9733 TrailingComments = input.ReadString(); in MergeFrom()
9769 TrailingComments = input.ReadString(); in IBufferMessage.InternalMergeFrom()
/third_party/protobuf/csharp/src/Google.Protobuf.Test/Reflection/
DDescriptorDeclarationTest.cs129 Assert.AreEqual(" Trailing field comment\n", field.Declaration.TrailingComments); in FieldComments()