/external/pdfium/core/fxge/ |
D | cfx_fontmapper_unittest.cpp | 114 TEST(CFX_FontMapper, MakeTag) { in TEST() argument 115 EXPECT_EQ(0x61626364u, CFX_FontMapper::MakeTag('a', 'b', 'c', 'd')); in TEST() 116 EXPECT_EQ(0x00000000u, CFX_FontMapper::MakeTag('\0', '\0', '\0', '\0')); in TEST() 117 EXPECT_EQ(0xfffe0a08u, CFX_FontMapper::MakeTag('\xff', '\xfe', '\n', '\b')); in TEST() 119 CFX_FontMapper::MakeTag('\xff', '\xff', '\xff', '\xff')); in TEST() 121 CFX_FontMapper::MakeTag(g_maybe_changes, '\xff', '\xff', '\xff')); in TEST() 122 EXPECT_EQ(0x6e616d65u, CFX_FontMapper::MakeTag('n', 'a', 'm', 'e')); in TEST() 123 EXPECT_EQ(0x4f532f32u, CFX_FontMapper::MakeTag('O', 'S', '/', '2')); in TEST() 125 CFX_FontMapper::MakeTag('G', 'S', 'U', 'B')); in TEST()
|
D | systemfontinfo_iface.h | 18 constexpr uint32_t kTableNAME = CFX_FontMapper::MakeTag('n', 'a', 'm', 'e'); 19 constexpr uint32_t kTableTTCF = CFX_FontMapper::MakeTag('t', 't', 'c', 'f');
|
/external/cronet/third_party/protobuf/csharp/src/Google.Protobuf.Test/WellKnownTypes/ |
D | WrappersTest.cs | 361 …var wrapperTag = WireFormat.MakeTag(TestWellKnownTypes.Int32FieldFieldNumber, WireFormat.WireType.… in MergingStreamExplicitValue() 362 … var valueTag = WireFormat.MakeTag(Int32Value.ValueFieldNumber, WireFormat.WireType.Varint); in MergingStreamExplicitValue() 422 …var wrapperTag = WireFormat.MakeTag(TestWellKnownTypes.Int32FieldFieldNumber, WireFormat.WireType.… in UnknownFieldInWrapperInt32FastPath() 423 var unknownTag = WireFormat.MakeTag(15, WireFormat.WireType.Varint); in UnknownFieldInWrapperInt32FastPath() 424 … var valueTag = WireFormat.MakeTag(Int32Value.ValueFieldNumber, WireFormat.WireType.Varint); in UnknownFieldInWrapperInt32FastPath() 449 …var wrapperTag = WireFormat.MakeTag(TestWellKnownTypes.Int32FieldFieldNumber, WireFormat.WireType.… in UnknownFieldInWrapperInt32SlowPath() 450 var unknownTag = WireFormat.MakeTag(15, WireFormat.WireType.Varint); in UnknownFieldInWrapperInt32SlowPath() 451 … var valueTag = WireFormat.MakeTag(Int32Value.ValueFieldNumber, WireFormat.WireType.Varint); in UnknownFieldInWrapperInt32SlowPath() 476 …var wrapperTag = WireFormat.MakeTag(TestWellKnownTypes.Int64FieldFieldNumber, WireFormat.WireType.… in UnknownFieldInWrapperInt64FastPath() 477 var unknownTag = WireFormat.MakeTag(15, WireFormat.WireType.Varint); in UnknownFieldInWrapperInt64FastPath() [all …]
|
/external/protobuf/csharp/src/Google.Protobuf.Test/WellKnownTypes/ |
D | WrappersTest.cs | 361 …var wrapperTag = WireFormat.MakeTag(TestWellKnownTypes.Int32FieldFieldNumber, WireFormat.WireType.… in MergingStreamExplicitValue() 362 … var valueTag = WireFormat.MakeTag(Int32Value.ValueFieldNumber, WireFormat.WireType.Varint); in MergingStreamExplicitValue() 422 …var wrapperTag = WireFormat.MakeTag(TestWellKnownTypes.Int32FieldFieldNumber, WireFormat.WireType.… in UnknownFieldInWrapperInt32FastPath() 423 var unknownTag = WireFormat.MakeTag(15, WireFormat.WireType.Varint); in UnknownFieldInWrapperInt32FastPath() 424 … var valueTag = WireFormat.MakeTag(Int32Value.ValueFieldNumber, WireFormat.WireType.Varint); in UnknownFieldInWrapperInt32FastPath() 449 …var wrapperTag = WireFormat.MakeTag(TestWellKnownTypes.Int32FieldFieldNumber, WireFormat.WireType.… in UnknownFieldInWrapperInt32SlowPath() 450 var unknownTag = WireFormat.MakeTag(15, WireFormat.WireType.Varint); in UnknownFieldInWrapperInt32SlowPath() 451 … var valueTag = WireFormat.MakeTag(Int32Value.ValueFieldNumber, WireFormat.WireType.Varint); in UnknownFieldInWrapperInt32SlowPath() 476 …var wrapperTag = WireFormat.MakeTag(TestWellKnownTypes.Int64FieldFieldNumber, WireFormat.WireType.… in UnknownFieldInWrapperInt64FastPath() 477 var unknownTag = WireFormat.MakeTag(15, WireFormat.WireType.Varint); in UnknownFieldInWrapperInt64FastPath() [all …]
|
/external/protobuf/csharp/src/Google.Protobuf.Test/ |
D | CodedInputStreamTest.cs | 401 uint tag = WireFormat.MakeTag(1, WireFormat.WireType.LengthDelimited); in ReadMaliciouslyLargeBlob() 419 uint tag = WireFormat.MakeTag(1, WireFormat.WireType.LengthDelimited); in ReadBlobGreaterThanCurrentLimit() 451 uint tag = WireFormat.MakeTag(1, WireFormat.WireType.LengthDelimited); in ReadStringGreaterThanCurrentLimit() 540 … output.WriteTag(WireFormat.MakeTag(unknownFieldNumber, WireFormat.WireType.StartGroup)); in MakeMaliciousRecursionUnknownFieldsPayload() 544 … output.WriteTag(WireFormat.MakeTag(unknownFieldNumber, WireFormat.WireType.EndGroup)); in MakeMaliciousRecursionUnknownFieldsPayload() 568 output.WriteTag(WireFormat.MakeTag(groupFieldNumber, WireFormat.WireType.StartGroup)); in ReadGroup_WrongEndGroupTag() 571 output.WriteTag(WireFormat.MakeTag(groupFieldNumber + 1, WireFormat.WireType.EndGroup)); in ReadGroup_WrongEndGroupTag() 583 output.WriteTag(WireFormat.MakeTag(14, WireFormat.WireType.StartGroup)); in ReadGroup_UnknownFields_WrongEndGroupTag() 585 output.WriteTag(WireFormat.MakeTag(15, WireFormat.WireType.EndGroup)); in ReadGroup_UnknownFields_WrongEndGroupTag() 613 uint tag = WireFormat.MakeTag(1, WireFormat.WireType.LengthDelimited); in ReadInvalidUtf8() [all …]
|
/external/cronet/third_party/protobuf/csharp/src/Google.Protobuf.Test/ |
D | CodedInputStreamTest.cs | 401 uint tag = WireFormat.MakeTag(1, WireFormat.WireType.LengthDelimited); in ReadMaliciouslyLargeBlob() 419 uint tag = WireFormat.MakeTag(1, WireFormat.WireType.LengthDelimited); in ReadBlobGreaterThanCurrentLimit() 451 uint tag = WireFormat.MakeTag(1, WireFormat.WireType.LengthDelimited); in ReadStringGreaterThanCurrentLimit() 540 … output.WriteTag(WireFormat.MakeTag(unknownFieldNumber, WireFormat.WireType.StartGroup)); in MakeMaliciousRecursionUnknownFieldsPayload() 544 … output.WriteTag(WireFormat.MakeTag(unknownFieldNumber, WireFormat.WireType.EndGroup)); in MakeMaliciousRecursionUnknownFieldsPayload() 568 output.WriteTag(WireFormat.MakeTag(groupFieldNumber, WireFormat.WireType.StartGroup)); in ReadGroup_WrongEndGroupTag() 571 output.WriteTag(WireFormat.MakeTag(groupFieldNumber + 1, WireFormat.WireType.EndGroup)); in ReadGroup_WrongEndGroupTag() 583 output.WriteTag(WireFormat.MakeTag(14, WireFormat.WireType.StartGroup)); in ReadGroup_UnknownFields_WrongEndGroupTag() 585 output.WriteTag(WireFormat.MakeTag(15, WireFormat.WireType.EndGroup)); in ReadGroup_UnknownFields_WrongEndGroupTag() 613 uint tag = WireFormat.MakeTag(1, WireFormat.WireType.LengthDelimited); in ReadInvalidUtf8() [all …]
|
/external/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/Collections/ |
D | RepeatedFieldTest.cs | 309 uint packedTag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_PackedInt32() 325 uint nonPackedTag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_PackedInt32() 337 uint nonPackedTag = WireFormat.MakeTag(10, WireFormat.WireType.Varint); in AddEntriesFrom_NonPackedInt32() 351 uint packedTag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_NonPackedInt32() 363 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_String() 389 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_Message() 410 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in WriteTo_PackedInt32() 431 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.Varint); in WriteTo_NonPackedInt32() 452 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in WriteTo_String() 475 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in WriteTo_Message() [all …]
|
/external/cronet/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/Collections/ |
D | RepeatedFieldTest.cs | 309 uint packedTag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_PackedInt32() 325 uint nonPackedTag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_PackedInt32() 337 uint nonPackedTag = WireFormat.MakeTag(10, WireFormat.WireType.Varint); in AddEntriesFrom_NonPackedInt32() 351 uint packedTag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_NonPackedInt32() 363 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_String() 389 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_Message() 410 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in WriteTo_PackedInt32() 431 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.Varint); in WriteTo_NonPackedInt32() 452 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in WriteTo_String() 475 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in WriteTo_Message() [all …]
|
/external/cronet/third_party/protobuf/csharp/src/Google.Protobuf.Test/Collections/ |
D | RepeatedFieldTest.cs | 310 uint packedTag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_PackedInt32() 326 uint nonPackedTag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_PackedInt32() 338 uint nonPackedTag = WireFormat.MakeTag(10, WireFormat.WireType.Varint); in AddEntriesFrom_NonPackedInt32() 352 uint packedTag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_NonPackedInt32() 364 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_String() 390 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_Message() 411 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in WriteTo_PackedInt32() 432 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.Varint); in WriteTo_NonPackedInt32() 453 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in WriteTo_String() 476 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in WriteTo_Message() [all …]
|
/external/protobuf/csharp/src/Google.Protobuf.Test/Collections/ |
D | RepeatedFieldTest.cs | 310 uint packedTag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_PackedInt32() 326 uint nonPackedTag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_PackedInt32() 338 uint nonPackedTag = WireFormat.MakeTag(10, WireFormat.WireType.Varint); in AddEntriesFrom_NonPackedInt32() 352 uint packedTag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_NonPackedInt32() 364 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_String() 390 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_Message() 411 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in WriteTo_PackedInt32() 432 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.Varint); in WriteTo_NonPackedInt32() 453 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in WriteTo_String() 476 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in WriteTo_Message() [all …]
|
/external/cronet/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/ |
D | CodedInputStreamTest.cs | 274 uint tag = WireFormat.MakeTag(1, WireFormat.WireType.LengthDelimited); in ReadMaliciouslyLargeBlob() 348 uint tag = WireFormat.MakeTag(1, WireFormat.WireType.LengthDelimited); in ReadInvalidUtf8() 464 … Assert.AreEqual(WireFormat.MakeTag(1, WireFormat.WireType.LengthDelimited), input.ReadTag()); in SkipGroup() 466 Assert.AreEqual(WireFormat.MakeTag(2, WireFormat.WireType.StartGroup), input.ReadTag()); in SkipGroup() 468 … Assert.AreEqual(WireFormat.MakeTag(3, WireFormat.WireType.LengthDelimited), input.ReadTag()); in SkipGroup() 495 … Assert.AreEqual(WireFormat.MakeTag(1, WireFormat.WireType.LengthDelimited), input.ReadTag()); in SkipGroup_WrongEndGroupTag() 497 Assert.AreEqual(WireFormat.MakeTag(2, WireFormat.WireType.StartGroup), input.ReadTag()); in SkipGroup_WrongEndGroupTag() 514 Assert.AreEqual(WireFormat.MakeTag(1, WireFormat.WireType.EndGroup), input.ReadTag()); in RogueEndGroupTag() 554 Assert.AreEqual(WireFormat.MakeTag(1, WireFormat.WireType.StartGroup), input.ReadTag()); in RecursionLimitAppliedWhileSkippingGroup()
|
/external/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/ |
D | CodedInputStreamTest.cs | 274 uint tag = WireFormat.MakeTag(1, WireFormat.WireType.LengthDelimited); in ReadMaliciouslyLargeBlob() 348 uint tag = WireFormat.MakeTag(1, WireFormat.WireType.LengthDelimited); in ReadInvalidUtf8() 464 … Assert.AreEqual(WireFormat.MakeTag(1, WireFormat.WireType.LengthDelimited), input.ReadTag()); in SkipGroup() 466 Assert.AreEqual(WireFormat.MakeTag(2, WireFormat.WireType.StartGroup), input.ReadTag()); in SkipGroup() 468 … Assert.AreEqual(WireFormat.MakeTag(3, WireFormat.WireType.LengthDelimited), input.ReadTag()); in SkipGroup() 495 … Assert.AreEqual(WireFormat.MakeTag(1, WireFormat.WireType.LengthDelimited), input.ReadTag()); in SkipGroup_WrongEndGroupTag() 497 Assert.AreEqual(WireFormat.MakeTag(2, WireFormat.WireType.StartGroup), input.ReadTag()); in SkipGroup_WrongEndGroupTag() 514 Assert.AreEqual(WireFormat.MakeTag(1, WireFormat.WireType.EndGroup), input.ReadTag()); in RogueEndGroupTag() 554 Assert.AreEqual(WireFormat.MakeTag(1, WireFormat.WireType.StartGroup), input.ReadTag()); in RecursionLimitAppliedWhileSkippingGroup()
|
/external/cronet/third_party/protobuf/csharp/src/Google.Protobuf/ |
D | FieldCodec.cs | 532 …{ typeof(bool), ForBool(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireFormat.… 533 …{ typeof(int), ForInt32(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireFormat.… 534 …{ typeof(long), ForInt64(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireFormat… 535 …{ typeof(uint), ForUInt32(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireForma… 536 …{ typeof(ulong), ForUInt64(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireForm… 537 …{ typeof(float), ForFloat(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireForma… 538 …{ typeof(double), ForDouble(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireFor… 539 …{ typeof(string), ForString(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireFor… 540 …{ typeof(ByteString), ForBytes(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, Wire…
|
D | WireFormat.cs | 99 public static uint MakeTag(int fieldNumber, WireType wireType) in MakeTag() method in Google.Protobuf.WireFormat
|
/external/protobuf/csharp/src/Google.Protobuf/ |
D | FieldCodec.cs | 532 …{ typeof(bool), ForBool(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireFormat.… 533 …{ typeof(int), ForInt32(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireFormat.… 534 …{ typeof(long), ForInt64(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireFormat… 535 …{ typeof(uint), ForUInt32(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireForma… 536 …{ typeof(ulong), ForUInt64(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireForm… 537 …{ typeof(float), ForFloat(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireForma… 538 …{ typeof(double), ForDouble(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireFor… 539 …{ typeof(string), ForString(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireFor… 540 …{ typeof(ByteString), ForBytes(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, Wire…
|
D | WireFormat.cs | 99 public static uint MakeTag(int fieldNumber, WireType wireType) in MakeTag() method in Google.Protobuf.WireFormat
|
D | ParsingPrimitivesMessages.cs | 211 … CheckLastTagWas(ref ctx.state, WireFormat.MakeTag(fieldNumber, WireFormat.WireType.EndGroup)); in ReadGroup() 225 … CheckLastTagWas(ref ctx.state, WireFormat.MakeTag(fieldNumber, WireFormat.WireType.EndGroup)); in ReadGroup()
|
/external/protobuf/src/google/protobuf/compiler/javanano/ |
D | javanano_extension.cc | 88 std::string tag = SimpleItoa(WireFormat::MakeTag(descriptor)); in SetVariables() 111 std::string non_packed_tag = SimpleItoa(WireFormatLite::MakeTag( in SetVariables() 117 std::string packed_tag = SimpleItoa(WireFormatLite::MakeTag( in SetVariables()
|
D | javanano_map_field.cc | 97 (*variables)["key_tag"] = SimpleItoa(internal::WireFormat::MakeTag(key)); in SetMapVariables() 102 (*variables)["value_tag"] = SimpleItoa(internal::WireFormat::MakeTag(value)); in SetMapVariables()
|
/external/cronet/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/WellKnownTypes/ |
D | WrappersTest.cs | 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/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/WellKnownTypes/ |
D | WrappersTest.cs | 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/ |
D | wire_format.h | 222 static uint32_t MakeTag(const FieldDescriptor* field); 343 inline uint32_t WireFormat::MakeTag(const FieldDescriptor* field) { in MakeTag() function 344 return WireFormatLite::MakeTag(field->number(), WireTypeForField(field)); in MakeTag()
|
/external/cronet/third_party/protobuf/src/google/protobuf/ |
D | wire_format.h | 224 static uint32_t MakeTag(const FieldDescriptor* field); 345 inline uint32_t WireFormat::MakeTag(const FieldDescriptor* field) { in MakeTag() function 346 return WireFormatLite::MakeTag(field->number(), WireTypeForField(field)); in MakeTag()
|
/external/cronet/third_party/protobuf/src/google/protobuf/compiler/cpp/ |
D | cpp_parse_function_generator.cc | 162 uint32_t tag = WireFormat::MakeTag(field); in SplitFastFieldsForSize() 1360 uint32_t tag = WireFormatLite::MakeTag(field->number(), wiretype); in GenerateFieldBody() 1456 expected_tag = WireFormatLite::MakeTag(field->number(), expected_wiretype); in ExpectedTag() 1460 WireFormatLite::MakeTag(field->number(), fallback_wiretype); in ExpectedTag() 1466 expected_tag = WireFormatLite::MakeTag(field->number(), expected_wiretype); in ExpectedTag() 1518 uint32_t start_tag = WireFormatLite::MakeTag( in GenerateParseIterationBody() 1520 uint32_t end_tag = WireFormatLite::MakeTag( in GenerateParseIterationBody() 1563 uint32_t tag = WireFormatLite::MakeTag(field->number(), wiretype); in GenerateFieldSwitch()
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
D | parse_function_generator.cc | 162 uint32_t tag = WireFormat::MakeTag(field); in SplitFastFieldsForSize() 1366 uint32_t tag = WireFormatLite::MakeTag(field->number(), wiretype); in GenerateFieldBody() 1462 expected_tag = WireFormatLite::MakeTag(field->number(), expected_wiretype); in ExpectedTag() 1466 WireFormatLite::MakeTag(field->number(), fallback_wiretype); in ExpectedTag() 1472 expected_tag = WireFormatLite::MakeTag(field->number(), expected_wiretype); in ExpectedTag() 1524 uint32_t start_tag = WireFormatLite::MakeTag( in GenerateParseIterationBody() 1526 uint32_t end_tag = WireFormatLite::MakeTag( in GenerateParseIterationBody() 1573 uint32_t tag = WireFormatLite::MakeTag(field->number(), wiretype); in GenerateFieldSwitch()
|