Home
last modified time | relevance | path

Searched refs:WireFormat (Results 1 – 25 of 82) sorted by relevance

1234

/external/protobuf/java/core/src/main/java/com/google/protobuf/
DUnknownFieldSetLite.java153 int fieldNumber = WireFormat.getTagFieldNumber(tag); in writeTo()
154 switch (WireFormat.getTagWireType(tag)) { in writeTo()
155 case WireFormat.WIRETYPE_VARINT: in writeTo()
158 case WireFormat.WIRETYPE_FIXED32: in writeTo()
161 case WireFormat.WIRETYPE_FIXED64: in writeTo()
164 case WireFormat.WIRETYPE_LENGTH_DELIMITED: in writeTo()
167 case WireFormat.WIRETYPE_START_GROUP: in writeTo()
168 output.writeTag(fieldNumber, WireFormat.WIRETYPE_START_GROUP); in writeTo()
170 output.writeTag(fieldNumber, WireFormat.WIRETYPE_END_GROUP); in writeTo()
192 int fieldNumber = WireFormat.getTagFieldNumber(tag); in getSerializedSize()
[all …]
DCodedOutputStream.java631 return computeTagSize(WireFormat.MESSAGE_SET_ITEM) * 2 in computeMessageSetExtensionSize()
632 + computeUInt32Size(WireFormat.MESSAGE_SET_TYPE_ID, fieldNumber) in computeMessageSetExtensionSize()
633 + computeMessageSize(WireFormat.MESSAGE_SET_MESSAGE, value); in computeMessageSetExtensionSize()
643 return computeTagSize(WireFormat.MESSAGE_SET_ITEM) * 2 in computeRawMessageSetExtensionSize()
644 + computeUInt32Size(WireFormat.MESSAGE_SET_TYPE_ID, fieldNumber) in computeRawMessageSetExtensionSize()
645 + computeBytesSize(WireFormat.MESSAGE_SET_MESSAGE, value); in computeRawMessageSetExtensionSize()
655 return computeTagSize(WireFormat.MESSAGE_SET_ITEM) * 2 in computeLazyFieldMessageSetExtensionSize()
656 + computeUInt32Size(WireFormat.MESSAGE_SET_TYPE_ID, fieldNumber) in computeLazyFieldMessageSetExtensionSize()
657 + computeLazyFieldSize(WireFormat.MESSAGE_SET_MESSAGE, value); in computeLazyFieldMessageSetExtensionSize()
664 return computeUInt32SizeNoTag(WireFormat.makeTag(fieldNumber, 0)); in computeTagSize()
[all …]
DMapEntryLite.java48 public final WireFormat.FieldType keyType;
49 public final WireFormat.FieldType valueType;
53 WireFormat.FieldType keyType, in Metadata()
54 WireFormat.FieldType valueType) { in Metadata()
79 WireFormat.FieldType keyType, K defaultKey, in MapEntryLite()
80 WireFormat.FieldType valueType, V defaultValue) { in MapEntryLite()
110 WireFormat.FieldType keyType, K defaultKey, in newDefaultInstance()
111 WireFormat.FieldType valueType, V defaultValue) { in newDefaultInstance()
123 int number, WireFormat.FieldType type, Object value, in writeField()
143 int number, WireFormat.FieldType type, Object value) { in getFieldSize()
[all …]
DCodedInputStream.java145 if (WireFormat.getTagFieldNumber(lastTag) == 0) { in readTag()
179 switch (WireFormat.getTagWireType(tag)) { in skipField()
180 case WireFormat.WIRETYPE_VARINT: in skipField()
183 case WireFormat.WIRETYPE_FIXED64: in skipField()
186 case WireFormat.WIRETYPE_LENGTH_DELIMITED: in skipField()
189 case WireFormat.WIRETYPE_START_GROUP: in skipField()
192 WireFormat.makeTag(WireFormat.getTagFieldNumber(tag), in skipField()
193 WireFormat.WIRETYPE_END_GROUP)); in skipField()
195 case WireFormat.WIRETYPE_END_GROUP: in skipField()
197 case WireFormat.WIRETYPE_FIXED32: in skipField()
[all …]
DFieldSet.java59 WireFormat.FieldType getLiteType(); in getLiteType()
60 WireFormat.JavaType getLiteJavaType(); in getLiteJavaType()
385 private static void verifyType(final WireFormat.FieldType type, in verifyType()
455 if (descriptor.getLiteJavaType() == WireFormat.JavaType.MESSAGE) { in isInitialized()
486 static int getWireFormatForFieldType(final WireFormat.FieldType type, in getWireFormatForFieldType()
489 return WireFormat.WIRETYPE_LENGTH_DELIMITED; in getWireFormatForFieldType()
538 } else if (descriptor.getLiteJavaType() == WireFormat.JavaType.MESSAGE) { in mergeFromField()
573 final WireFormat.FieldType type, in readPrimitiveField()
576 return WireFormat.readPrimitiveField(input, type, in readPrimitiveField()
577 WireFormat.Utf8Validation.STRICT); in readPrimitiveField()
[all …]
DMessageReflection.java350 WireFormat.Utf8Validation getUtf8Validation(Descriptors.FieldDescriptor in getUtf8Validation()
536 public WireFormat.Utf8Validation getUtf8Validation(Descriptors.FieldDescriptor descriptor) { in getUtf8Validation()
538 return WireFormat.Utf8Validation.STRICT; in getUtf8Validation()
543 return WireFormat.Utf8Validation.LAZY; in getUtf8Validation()
545 return WireFormat.Utf8Validation.LOOSE; in getUtf8Validation()
703 public WireFormat.Utf8Validation getUtf8Validation(Descriptors.FieldDescriptor descriptor) { in getUtf8Validation()
705 return WireFormat.Utf8Validation.STRICT; in getUtf8Validation()
708 return WireFormat.Utf8Validation.LOOSE; in getUtf8Validation()
736 tag == WireFormat.MESSAGE_SET_ITEM_TAG) { in mergeFieldFrom()
742 final int wireType = WireFormat.getTagWireType(tag); in mergeFieldFrom()
[all …]
DUnknownFieldSet.java522 final int number = WireFormat.getTagFieldNumber(tag); in mergeFieldFrom()
523 switch (WireFormat.getTagWireType(tag)) { in mergeFieldFrom()
524 case WireFormat.WIRETYPE_VARINT: in mergeFieldFrom()
527 case WireFormat.WIRETYPE_FIXED64: in mergeFieldFrom()
530 case WireFormat.WIRETYPE_LENGTH_DELIMITED: in mergeFieldFrom()
533 case WireFormat.WIRETYPE_START_GROUP: in mergeFieldFrom()
539 case WireFormat.WIRETYPE_END_GROUP: in mergeFieldFrom()
541 case WireFormat.WIRETYPE_FIXED32: in mergeFieldFrom()
DGeneratedMessageLite.java41 import com.google.protobuf.WireFormat.FieldType;
185 if (WireFormat.getTagWireType(tag) == WireFormat.WIRETYPE_END_GROUP) { in parseUnknownField()
482 int wireType = WireFormat.getTagWireType(tag); in parseUnknownField()
483 int fieldNumber = WireFormat.getTagFieldNumber(tag); in parseUnknownField()
515 if (extension.descriptor.getLiteType() == WireFormat.FieldType.ENUM) { in parseUnknownField()
555 WireFormat.FieldType.GROUP) { in parseUnknownField()
694 WireFormat.JavaType.MESSAGE && in writeUntil()
882 final WireFormat.FieldType type, in newSingularGeneratedExtension()
902 final WireFormat.FieldType type, in newRepeatedGeneratedExtension()
922 final WireFormat.FieldType type, in ExtensionDescriptor()
[all …]
/external/protobuf/csharp/src/Google.Protobuf.Test/
DCodedInputStreamTest.cs274 uint tag = WireFormat.MakeTag(1, WireFormat.WireType.LengthDelimited); in ReadMaliciouslyLargeBlob()
348 uint tag = WireFormat.MakeTag(1, WireFormat.WireType.LengthDelimited); in ReadInvalidUtf8()
399 output.WriteTag(1, WireFormat.WireType.LengthDelimited); in TestSlowPathAvoidance()
401 output.WriteTag(2, WireFormat.WireType.LengthDelimited); in TestSlowPathAvoidance()
409 Assert.AreEqual(1, WireFormat.GetTagFieldNumber(tag)); in TestSlowPathAvoidance()
413 Assert.AreEqual(2, WireFormat.GetTagFieldNumber(tag)); in TestSlowPathAvoidance()
438 output.WriteTag(1, WireFormat.WireType.LengthDelimited); in SkipGroup()
442 output.WriteTag(2, WireFormat.WireType.StartGroup); in SkipGroup()
443 output.WriteTag(1, WireFormat.WireType.Fixed32); in SkipGroup()
445 output.WriteTag(2, WireFormat.WireType.LengthDelimited); in SkipGroup()
[all …]
DGeneratedMessageTest.cs259 … output.WriteTag(TestMap.MapInt32ForeignMessageFieldNumber, WireFormat.WireType.LengthDelimited); in MapWithOnlyValue()
263 output.WriteTag(2, WireFormat.WireType.LengthDelimited); in MapWithOnlyValue()
277 output.WriteTag(TestMap.MapInt32DoubleFieldNumber, WireFormat.WireType.LengthDelimited); in MapWithOnlyKey_PrimitiveValue()
280 output.WriteTag(1, WireFormat.WireType.Varint); in MapWithOnlyKey_PrimitiveValue()
294 … output.WriteTag(TestMap.MapInt32ForeignMessageFieldNumber, WireFormat.WireType.LengthDelimited); in MapWithOnlyKey_MessageValue()
297 output.WriteTag(1, WireFormat.WireType.Varint); in MapWithOnlyKey_MessageValue()
312 output.WriteTag(TestMap.MapInt32Int32FieldNumber, WireFormat.WireType.LengthDelimited); in MapIgnoresExtraFieldsWithinEntryMessages()
321 output.WriteTag(1, WireFormat.WireType.Varint); in MapIgnoresExtraFieldsWithinEntryMessages()
323 output.WriteTag(2, WireFormat.WireType.Varint); in MapIgnoresExtraFieldsWithinEntryMessages()
325 output.WriteTag(3, WireFormat.WireType.Varint); in MapIgnoresExtraFieldsWithinEntryMessages()
[all …]
DCodedOutputStreamTest.cs298 cout.WriteTag(11, WireFormat.WireType.Varint); in TestCodedInputOutputPosition()
303 cout.WriteTag(12, WireFormat.WireType.LengthDelimited); in TestCodedInputOutputPosition()
308 cout.WriteTag(13, WireFormat.WireType.Fixed32); in TestCodedInputOutputPosition()
319 cout.WriteTag(1, WireFormat.WireType.Varint); in TestCodedInputOutputPosition()
324 cout.WriteTag(2, WireFormat.WireType.LengthDelimited); in TestCodedInputOutputPosition()
329 cout.WriteTag(3, WireFormat.WireType.Fixed32); in TestCodedInputOutputPosition()
/external/protobuf/csharp/src/Google.Protobuf/
DFieldCodec.cs268 …{ typeof(bool), ForBool(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireFormat.…
269 …{ typeof(int), ForInt32(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireFormat.…
270 …{ typeof(long), ForInt64(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireFormat
271 …{ typeof(uint), ForUInt32(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireForma…
272 …{ typeof(ulong), ForUInt64(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireForm…
273 …{ typeof(float), ForFloat(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireForma…
274 …{ typeof(double), ForDouble(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireFor…
275 …{ typeof(string), ForString(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireFor…
276 …{ typeof(ByteString), ForBytes(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, Wire…
366 … TypeSupportsPacking && WireFormat.GetTagWireType(tag) == WireFormat.WireType.LengthDelimited; in IsPackedRepeatedField()
DCodedInputStream.cs402 switch (WireFormat.GetTagWireType(lastTag)) in SkipLastField()
404 case WireFormat.WireType.StartGroup: in SkipLastField()
407 case WireFormat.WireType.EndGroup: in SkipLastField()
410 case WireFormat.WireType.Fixed32: in SkipLastField()
413 case WireFormat.WireType.Fixed64: in SkipLastField()
416 case WireFormat.WireType.LengthDelimited: in SkipLastField()
420 case WireFormat.WireType.Varint: in SkipLastField()
444 if (WireFormat.GetTagWireType(tag) == WireFormat.WireType.EndGroup) in SkipGroup()
451 int startField = WireFormat.GetTagFieldNumber(startGroupTag); in SkipGroup()
452 int endField = WireFormat.GetTagFieldNumber(tag); in SkipGroup()
/external/protobuf/csharp/src/Google.Protobuf.Test/Collections/
DRepeatedFieldTest.cs223 uint packedTag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_PackedInt32()
239 uint nonPackedTag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_PackedInt32()
251 uint nonPackedTag = WireFormat.MakeTag(10, WireFormat.WireType.Varint); in AddEntriesFrom_NonPackedInt32()
265 uint packedTag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_NonPackedInt32()
277 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_String()
303 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_Message()
324 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in WriteTo_PackedInt32()
345 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.Varint); in WriteTo_NonPackedInt32()
366 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in WriteTo_String()
389 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in WriteTo_Message()
[all …]
/external/protobuf/java/core/src/test/java/com/google/protobuf/
DUnknownFieldSetLiteTest.java92 assertEquals(10, WireFormat.getTagFieldNumber(tag)); in testMergeVarintField()
93 assertEquals(WireFormat.WIRETYPE_VARINT, WireFormat.getTagWireType(tag)); in testMergeVarintField()
106 assertEquals(10, WireFormat.getTagFieldNumber(tag)); in testMergeVarintField_negative()
107 assertEquals(WireFormat.WIRETYPE_VARINT, WireFormat.getTagWireType(tag)); in testMergeVarintField_negative()
135 assertEquals(10, WireFormat.getTagFieldNumber(tag)); in testMutableCopyOf()
136 assertEquals(WireFormat.WIRETYPE_VARINT, WireFormat.getTagWireType(tag)); in testMutableCopyOf()
140 assertEquals(10, WireFormat.getTagFieldNumber(tag)); in testMutableCopyOf()
141 assertEquals(WireFormat.WIRETYPE_VARINT, WireFormat.getTagWireType(tag)); in testMutableCopyOf()
197 output.writeTag(100, WireFormat.WIRETYPE_END_GROUP); in testMissingStartGroupTag()
211 output.writeTag(100, WireFormat.WIRETYPE_START_GROUP); in testMissingEndGroupTag()
[all …]
DCodedInputStreamTest.java119 assertTrue(input.skipField(WireFormat.WIRETYPE_VARINT)); in assertReadVarint()
141 assertTrue(input.skipField(WireFormat.WIRETYPE_VARINT)); in assertReadVarint()
423 int tag = WireFormat.makeTag(1, WireFormat.WIRETYPE_LENGTH_DELIMITED); in testReadMaliciouslyLargeBlob()
563 int tag = WireFormat.makeTag(1, WireFormat.WIRETYPE_LENGTH_DELIMITED); in testReadString()
588 int tag = WireFormat.makeTag(1, WireFormat.WIRETYPE_LENGTH_DELIMITED); in testReadStringRequireUtf8()
611 int tag = WireFormat.makeTag(1, WireFormat.WIRETYPE_LENGTH_DELIMITED); in testReadStringInvalidUtf8()
631 int tag = WireFormat.makeTag(1, WireFormat.WIRETYPE_LENGTH_DELIMITED); in testReadStringRequireUtf8InvalidUtf8()
/external/protobuf/src/google/protobuf/
Dwire_format.h75 class LIBPROTOBUF_EXPORT WireFormat {
261 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(WireFormat);
282 inline WireFormatLite::WireType WireFormat::WireTypeForField( in WireTypeForField()
291 inline WireFormatLite::WireType WireFormat::WireTypeForFieldType( in WireTypeForFieldType()
300 inline uint32 WireFormat::MakeTag(const FieldDescriptor* field) { in MakeTag()
304 inline int WireFormat::TagSize(int field_number, FieldDescriptor::Type type) { in TagSize()
312 inline void WireFormat::VerifyUTF8String(const char* data, int size, in VerifyUTF8String()
313 WireFormat::Operation op) { in VerifyUTF8String()
323 inline void WireFormat::VerifyUTF8StringNamedField( in VerifyUTF8StringNamedField()
324 const char* data, int size, WireFormat::Operation op, in VerifyUTF8StringNamedField()
Dwire_format_unittest.cc93 WireFormat::ParseAndMergePartial(&input, &dest); in TEST()
110 WireFormat::ParseAndMergePartial(&input, &dest); in TEST()
127 WireFormat::ParseAndMergePartial(&input, &dest); in TEST()
143 WireFormat::ParseAndMergePartial(&input, &dest); in TEST()
159 WireFormat::ParseAndMergePartial(&input, &dest); in TEST()
176 WireFormat::ParseAndMergePartial(&input, &dest); in TEST()
193 WireFormat::ParseAndMergePartial(&input, &dest); in TEST()
212 WireFormat::ParseAndMergePartial(&input, &oneof_dest); in TEST()
223 EXPECT_EQ(message.ByteSize(), WireFormat::ByteSize(message)); in TEST()
226 EXPECT_EQ(0, WireFormat::ByteSize(message)); in TEST()
[all …]
Ddescriptor.pb.cc988 DO_(::google::protobuf::internal::WireFormat::SkipField( in MergePartialFromCodedStream()
1013 ::google::protobuf::internal::WireFormat::SerializeUnknownFields( in SerializeWithCachedSizes()
1030 target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( in SerializeWithCachedSizesToArray()
1051 ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( in ByteSize()
1294 ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( in MergePartialFromCodedStream()
1296 ::google::protobuf::internal::WireFormat::PARSE, in MergePartialFromCodedStream()
1311 ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( in MergePartialFromCodedStream()
1313 ::google::protobuf::internal::WireFormat::PARSE, in MergePartialFromCodedStream()
1328 ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( in MergePartialFromCodedStream()
1331 ::google::protobuf::internal::WireFormat::PARSE, in MergePartialFromCodedStream()
[all …]
Dwire_format.cc62 return WireFormat::SkipField(input, tag, unknown_fields_); in SkipField()
66 return WireFormat::SkipMessage(input, unknown_fields_); in SkipMessage()
74 bool WireFormat::SkipField(io::CodedInputStream* input, uint32 tag, in SkipField()
134 bool WireFormat::SkipMessage(io::CodedInputStream* input, in SkipMessage()
154 bool WireFormat::ReadPackedEnumPreserveUnknowns(io::CodedInputStream* input, in ReadPackedEnumPreserveUnknowns()
179 void WireFormat::SerializeUnknownFields(const UnknownFieldSet& unknown_fields, in SerializeUnknownFields()
217 uint8* WireFormat::SerializeUnknownFieldsToArray( in SerializeUnknownFieldsToArray()
252 void WireFormat::SerializeUnknownMessageSetItems( in SerializeUnknownMessageSetItems()
277 uint8* WireFormat::SerializeUnknownMessageSetItemsToArray( in SerializeUnknownMessageSetItemsToArray()
310 int WireFormat::ComputeUnknownFieldsSize( in ComputeUnknownFieldsSize()
[all …]
Dunknown_field_set_unittest.cc57 using internal::WireFormat;
190 int size = WireFormat::ComputeUnknownFieldsSize( in TEST_F()
198 uint8* result = WireFormat::SerializeUnknownFieldsToArray( in TEST_F()
205 WireFormat::SerializeUnknownFields(empty_message_.unknown_fields(), in TEST_F()
232 ASSERT_TRUE(WireFormat::ParseAndMergePartial(&input, &message)); in TEST_F()
246 int size = WireFormat::ByteSize(empty_message_); in TEST_F()
247 WireFormat::SerializeWithCachedSizes(empty_message_, size, &output); in TEST_F()
364 ASSERT_TRUE(WireFormat::ParseAndMergePartial(&input, &all_types_message)); in TEST_F()
387 ASSERT_TRUE(WireFormat::ParseAndMergePartial(&input, &message)); in TEST_F()
/external/protobuf/src/google/protobuf/compiler/
Dplugin.pb.cc271 ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( in MergePartialFromCodedStream()
274 ::google::protobuf::internal::WireFormat::PARSE, in MergePartialFromCodedStream()
290 ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( in MergePartialFromCodedStream()
292 ::google::protobuf::internal::WireFormat::PARSE, in MergePartialFromCodedStream()
325 DO_(::google::protobuf::internal::WireFormat::SkipField( in MergePartialFromCodedStream()
345 ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( in SerializeWithCachedSizes()
347 ::google::protobuf::internal::WireFormat::SERIALIZE, in SerializeWithCachedSizes()
355 ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( in SerializeWithCachedSizes()
357 ::google::protobuf::internal::WireFormat::SERIALIZE, in SerializeWithCachedSizes()
370 ::google::protobuf::internal::WireFormat::SerializeUnknownFields( in SerializeWithCachedSizes()
[all …]
/external/protobuf/csharp/src/Google.Protobuf.Test/WellKnownTypes/
DWrappersTest.cs160 …output.WriteTag(RepeatedWellKnownTypes.Int32FieldFieldNumber, WireFormat.WireType.LengthDelimited); in RepeatedWrappersBinaryFormat()
162 output.WriteTag(WrappersReflection.WrapperValueFieldNumber, WireFormat.WireType.Varint); in RepeatedWrappersBinaryFormat()
165 …output.WriteTag(RepeatedWellKnownTypes.Int32FieldFieldNumber, WireFormat.WireType.LengthDelimited); in RepeatedWrappersBinaryFormat()
332 …var wrapperTag = WireFormat.MakeTag(TestWellKnownTypes.Int32FieldFieldNumber, WireFormat.WireType.… in MergingStreamExplicitValue()
333 … var valueTag = WireFormat.MakeTag(Int32Value.ValueFieldNumber, WireFormat.WireType.Varint); in MergingStreamExplicitValue()
393 …var wrapperTag = WireFormat.MakeTag(TestWellKnownTypes.Int32FieldFieldNumber, WireFormat.WireType.… in UnknownFieldInWrapper()
394 var unknownTag = WireFormat.MakeTag(15, WireFormat.WireType.Varint); in UnknownFieldInWrapper()
395 … var valueTag = WireFormat.MakeTag(Int32Value.ValueFieldNumber, WireFormat.WireType.Varint); in UnknownFieldInWrapper()
/external/protobuf/src/google/protobuf/compiler/javanano/
Djavanano_extension.cc44 using internal::WireFormat;
88 string tag = SimpleItoa(WireFormat::MakeTag(descriptor)); in SetVariables()
113 WireFormat::WireTypeForFieldType(descriptor->type()))); in SetVariables()
/external/protobuf/csharp/src/Google.Protobuf.Conformance/
DProgram.cs112 case global::Conformance.WireFormat.Json: in PerformRequest()
115 case global::Conformance.WireFormat.Protobuf: in PerformRequest()

1234