/external/golang-protobuf/proto/ |
D | merge_test.go | 694 dst: &testpb.TestAllTypes{RepeatedBytes: nil}, 695 src: &testpb.TestAllTypes{RepeatedBytes: [][]byte{nil}}, 697 return reflect.DeepEqual(m.(*testpb.TestAllTypes).RepeatedBytes, [][]byte{{}}) 701 dst: &testpb.TestAllTypes{RepeatedBytes: nil}, 702 src: &testpb.TestAllTypes{RepeatedBytes: [][]byte{{}}}, 704 return reflect.DeepEqual(m.(*testpb.TestAllTypes).RepeatedBytes, [][]byte{{}})
|
D | noenforceutf8_test.go | 62 RepeatedBytes: [][]byte{[]byte("foo"), []byte("abc\xff")}, 89 RepeatedBytes [][]byte `protobuf:"bytes,4,rep,name=repeated_bytes"` member
|
D | decode_test.go | 133 if m.RepeatedBytes[0] == nil {
|
D | equal_test.go | 455 x: &testpb.TestAllTypes{RepeatedBytes: [][]byte{[]byte("a"), []byte("b")}}, 456 y: &testpb.TestAllTypes{RepeatedBytes: [][]byte{[]byte("a"), []byte("c")}},
|
/external/golang-protobuf/internal/testprotos/nullable/ |
D | nullable.go | 35 …RepeatedBytes [][]byte `protobuf:"bytes,208,rep,name=repeated_by… member 142 …RepeatedBytes [][]byte `protobuf:"bytes,208,rep,name=repeated_by… member
|
/external/cronet/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/ |
D | SampleMessages.cs | 74 …RepeatedBytes = { ByteString.CopyFrom(1, 2, 3, 4), ByteString.CopyFrom(5, 6), ByteString.CopyFrom(… in CreateFullTestAllTypes()
|
D | GeneratedMessageTest.cs | 88 Assert.AreEqual(0, message.RepeatedBytes.Count); in DefaultValues() 177 RepeatedBytes = { ByteString.CopyFrom(1, 2, 3, 4), ByteString.CopyFrom(5, 6) }, in RoundTrip_RepeatedValues() 475 RepeatedBytes = { ByteString.CopyFrom(1, 2, 3, 4), ByteString.CopyFrom(5, 6) }, in CloneRepeatedNonMessageValues()
|
/external/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/ |
D | SampleMessages.cs | 74 …RepeatedBytes = { ByteString.CopyFrom(1, 2, 3, 4), ByteString.CopyFrom(5, 6), ByteString.CopyFrom(… in CreateFullTestAllTypes()
|
D | GeneratedMessageTest.cs | 88 Assert.AreEqual(0, message.RepeatedBytes.Count); in DefaultValues() 177 RepeatedBytes = { ByteString.CopyFrom(1, 2, 3, 4), ByteString.CopyFrom(5, 6) }, in RoundTrip_RepeatedValues() 475 RepeatedBytes = { ByteString.CopyFrom(1, 2, 3, 4), ByteString.CopyFrom(5, 6) }, in CloneRepeatedNonMessageValues()
|
/external/protobuf/csharp/src/Google.Protobuf.Test/ |
D | SampleMessages.cs | 77 …RepeatedBytes = { ByteString.CopyFrom(1, 2, 3, 4), ByteString.CopyFrom(5, 6), ByteString.CopyFrom(… in CreateFullTestAllTypes() 130 …RepeatedBytes = { ByteString.CopyFrom(1, 2, 3, 4), ByteString.CopyFrom(5, 6), ByteString.CopyFrom(… in CreateFullTestAllTypesProto2()
|
D | GeneratedMessageTest.cs | 89 Assert.AreEqual(0, message.RepeatedBytes.Count); in DefaultValues() 180 RepeatedBytes = { ByteString.CopyFrom(1, 2, 3, 4), ByteString.CopyFrom(5, 6) }, in RoundTrip_RepeatedValues() 521 RepeatedBytes = { ByteString.CopyFrom(1, 2, 3, 4), ByteString.CopyFrom(5, 6) }, in CloneRepeatedNonMessageValues()
|
D | JsonParserTest.cs | 1102 message.RepeatedBytes.Add(ByteString.CopyFrom(new byte[] { 1 })); in ParseAllNullValues() 1141 Assert.AreEqual(0, message.RepeatedBytes.Count); in ParseAllNullValues()
|
/external/cronet/third_party/protobuf/csharp/src/Google.Protobuf.Test/ |
D | SampleMessages.cs | 77 …RepeatedBytes = { ByteString.CopyFrom(1, 2, 3, 4), ByteString.CopyFrom(5, 6), ByteString.CopyFrom(… in CreateFullTestAllTypes() 130 …RepeatedBytes = { ByteString.CopyFrom(1, 2, 3, 4), ByteString.CopyFrom(5, 6), ByteString.CopyFrom(… in CreateFullTestAllTypesProto2()
|
D | GeneratedMessageTest.cs | 89 Assert.AreEqual(0, message.RepeatedBytes.Count); in DefaultValues() 180 RepeatedBytes = { ByteString.CopyFrom(1, 2, 3, 4), ByteString.CopyFrom(5, 6) }, in RoundTrip_RepeatedValues() 521 RepeatedBytes = { ByteString.CopyFrom(1, 2, 3, 4), ByteString.CopyFrom(5, 6) }, in CloneRepeatedNonMessageValues()
|
D | JsonParserTest.cs | 1102 message.RepeatedBytes.Add(ByteString.CopyFrom(new byte[] { 1 })); in ParseAllNullValues() 1141 Assert.AreEqual(0, message.RepeatedBytes.Count); in ParseAllNullValues()
|
/external/golang-protobuf/cmd/protoc-gen-go/testdata/proto3/ |
D | fields.pb.go | 97 …RepeatedBytes [][]byte `protobuf:"bytes,216,rep,name=repeated_bytes… member 362 return x.RepeatedBytes
|
/external/golang-protobuf/internal/cmd/generate-corpus/ |
D | main.go | 68 RepeatedBytes: [][]byte{[]byte("FOO"), []byte("BAR")},
|
/external/golang-protobuf/internal/testprotos/fieldtrack/ |
D | fieldtrack.pb.go | 57 …RepeatedBytes [][]byte `protobuf:"bytes,35,rep,name=rep… member 396 return x.RepeatedBytes
|
/external/pigweed/pw_protobuf/public/pw_protobuf/ |
D | message.h | 149 using RepeatedBytes = RepeatedFieldParser<Bytes>; variable 369 RepeatedBytes AsRepeatedBytes(uint32_t field_number);
|
/external/pigweed/pw_protobuf/ |
D | message.cc | 200 RepeatedBytes Message::AsRepeatedBytes(uint32_t field_number) { in AsRepeatedBytes()
|
/external/golang-protobuf/testing/protocmp/ |
D | reflect_test.go | 43 RepeatedBytes: [][]byte{[]byte("hello"), []byte("goodbye")},
|
D | xform_test.go | 66 RepeatedBytes: [][]byte{{1}, {2}},
|
/external/golang-protobuf/internal/testprotos/legacy/proto3_20190205_c823c79e/ |
D | test.pb.go | 175 …RepeatedBytes [][]byte `protobuf:"bytes,214,rep,name=repeated_bytes,json=r… member 497 return m.RepeatedBytes
|
/external/golang-protobuf/internal/testprotos/test3/ |
D | test.pb.go | 182 …RepeatedBytes [][]byte `protobuf:"bytes,45,rep,name=repeate… member 646 return x.RepeatedBytes
|
/external/golang-protobuf/internal/msgfmt/ |
D | format_test.go | 56 RepeatedBytes: [][]byte{{1}, {2}},
|