Lines Matching refs:proto
31 test: func() { proto.Size(nil) },
34 test: func() { proto.Size(nilMsg) },
37 test: func() { proto.Marshal(nil) },
40 test: func() { proto.Marshal(nilMsg) },
43 test: func() { proto.Unmarshal(nil, nil) },
47 test: func() { proto.Unmarshal(nil, nilMsg) },
51 test: func() { proto.Merge(nil, nil) },
55 test: func() { proto.Merge(nil, nilMsg) },
59 test: func() { proto.Merge(nilMsg, nil) },
63 test: func() { proto.Merge(nilMsg, nilMsg) },
67 test: func() { proto.Clone(nil) },
70 test: func() { proto.Clone(nilMsg) },
73 test: func() { proto.Equal(nil, nil) },
76 test: func() { proto.Equal(nil, nilMsg) },
79 test: func() { proto.Equal(nilMsg, nil) },
82 test: func() { proto.Equal(nilMsg, nilMsg) },
85 test: func() { proto.Reset(nil) },
89 test: func() { proto.Reset(nilMsg) },
93 test: func() { proto.HasExtension(nil, nil) },
96 test: func() { proto.HasExtension(nil, extType) },
99 test: func() { proto.HasExtension(nilMsg, nil) },
102 test: func() { proto.HasExtension(nilMsg, extType) },
105 test: func() { proto.GetExtension(nil, nil) },
109 test: func() { proto.GetExtension(nil, extType) },
112 test: func() { proto.GetExtension(nilMsg, nil) },
116 test: func() { proto.GetExtension(nilMsg, extType) },
119 test: func() { proto.SetExtension(nil, nil, true) },
123 test: func() { proto.SetExtension(nil, extType, true) },
127 test: func() { proto.SetExtension(nilMsg, nil, true) },
131 test: func() { proto.SetExtension(nilMsg, extType, true) },
135 test: func() { proto.ClearExtension(nil, nil) },
139 test: func() { proto.ClearExtension(nil, extType) },
143 test: func() { proto.ClearExtension(nilMsg, nil) },
147 test: func() { proto.ClearExtension(nilMsg, extType) },
151 test: func() { proto.RangeExtensions(nil, nil) },
154 test: func() { proto.RangeExtensions(nil, extRanger) },
157 test: func() { proto.RangeExtensions(nilMsg, nil) },
160 test: func() { proto.RangeExtensions(nilMsg, extRanger) },