Lines Matching refs:WireFormatLite
49 case WireFormatLite::TYPE_##UPPERCASE: \ in ParseFieldWithExtensionInfo()
69 case WireFormatLite::TYPE_ENUM: in ParseFieldWithExtensionInfo()
75 case WireFormatLite::TYPE_STRING: in ParseFieldWithExtensionInfo()
76 case WireFormatLite::TYPE_BYTES: in ParseFieldWithExtensionInfo()
77 case WireFormatLite::TYPE_GROUP: in ParseFieldWithExtensionInfo()
78 case WireFormatLite::TYPE_MESSAGE: in ParseFieldWithExtensionInfo()
85 case WireFormatLite::TYPE_##UPPERCASE: { \ in ParseFieldWithExtensionInfo()
90 Add##CPP_CAMELCASE(number, WireFormatLite::TYPE_##UPPERCASE, \ in ParseFieldWithExtensionInfo()
93 Set##CPP_CAMELCASE(number, WireFormatLite::TYPE_##UPPERCASE, value, \ in ParseFieldWithExtensionInfo()
105 case WireFormatLite::TYPE_##UPPERCASE: { \ in ParseFieldWithExtensionInfo()
109 auto value = WireFormatLite::ZigZagDecode##SIZE(val); \ in ParseFieldWithExtensionInfo()
111 Add##CPP_CAMELCASE(number, WireFormatLite::TYPE_##UPPERCASE, \ in ParseFieldWithExtensionInfo()
114 Set##CPP_CAMELCASE(number, WireFormatLite::TYPE_##UPPERCASE, value, \ in ParseFieldWithExtensionInfo()
123 case WireFormatLite::TYPE_##UPPERCASE: { \ in ParseFieldWithExtensionInfo()
127 Add##CPP_CAMELCASE(number, WireFormatLite::TYPE_##UPPERCASE, \ in ParseFieldWithExtensionInfo()
130 Set##CPP_CAMELCASE(number, WireFormatLite::TYPE_##UPPERCASE, value, \ in ParseFieldWithExtensionInfo()
143 case WireFormatLite::TYPE_ENUM: { in ParseFieldWithExtensionInfo()
153 AddEnum(number, WireFormatLite::TYPE_ENUM, extension.is_packed, value, in ParseFieldWithExtensionInfo()
156 SetEnum(number, WireFormatLite::TYPE_ENUM, value, in ParseFieldWithExtensionInfo()
162 case WireFormatLite::TYPE_BYTES: in ParseFieldWithExtensionInfo()
163 case WireFormatLite::TYPE_STRING: { in ParseFieldWithExtensionInfo()
166 ? AddString(number, WireFormatLite::TYPE_STRING, in ParseFieldWithExtensionInfo()
168 : MutableString(number, WireFormatLite::TYPE_STRING, in ParseFieldWithExtensionInfo()
175 case WireFormatLite::TYPE_GROUP: { in ParseFieldWithExtensionInfo()
178 ? AddMessage(number, WireFormatLite::TYPE_GROUP, in ParseFieldWithExtensionInfo()
181 : MutableMessage(number, WireFormatLite::TYPE_GROUP, in ParseFieldWithExtensionInfo()
184 uint32 tag = (number << 3) + WireFormatLite::WIRETYPE_START_GROUP; in ParseFieldWithExtensionInfo()
188 case WireFormatLite::TYPE_MESSAGE: { in ParseFieldWithExtensionInfo()
191 ? AddMessage(number, WireFormatLite::TYPE_MESSAGE, in ParseFieldWithExtensionInfo()
194 : MutableMessage(number, WireFormatLite::TYPE_MESSAGE, in ParseFieldWithExtensionInfo()
213 if (tag == WireFormatLite::kMessageSetTypeIdTag) { in ParseMessageSetItemTmpl()
228 ? AddMessage(type_id, WireFormatLite::TYPE_MESSAGE, in ParseMessageSetItemTmpl()
231 : MutableMessage(type_id, WireFormatLite::TYPE_MESSAGE, in ParseMessageSetItemTmpl()
246 } else if (tag == WireFormatLite::kMessageSetMessageTag) { in ParseMessageSetItemTmpl()