Auto-generate files after cl/625420851

pull/16531/head
Protobuf Team Bot 8 months ago
parent d5210bb702
commit 5844722687
  1. 4
      src/google/protobuf/any.pb.cc
  2. 5
      src/google/protobuf/any.pb.h
  3. 12
      src/google/protobuf/api.pb.cc
  4. 15
      src/google/protobuf/api.pb.h
  5. 4
      src/google/protobuf/duration.pb.cc
  6. 5
      src/google/protobuf/duration.pb.h
  7. 1
      src/google/protobuf/empty.pb.cc
  8. 3
      src/google/protobuf/empty.pb.h
  9. 4
      src/google/protobuf/field_mask.pb.cc
  10. 5
      src/google/protobuf/field_mask.pb.h
  11. 4
      src/google/protobuf/source_context.pb.cc
  12. 5
      src/google/protobuf/source_context.pb.h
  13. 13
      src/google/protobuf/struct.pb.cc
  14. 15
      src/google/protobuf/struct.pb.h
  15. 4
      src/google/protobuf/timestamp.pb.cc
  16. 5
      src/google/protobuf/timestamp.pb.h
  17. 20
      src/google/protobuf/type.pb.cc
  18. 25
      src/google/protobuf/type.pb.h
  19. 36
      src/google/protobuf/wrappers.pb.cc
  20. 45
      src/google/protobuf/wrappers.pb.h

@ -184,6 +184,7 @@ Any::GetClassData() const {
{
&_table_.header,
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
PROTOBUF_FIELD_OFFSET(Any, _impl_._cached_size_),
false,
},
@ -330,9 +331,6 @@ void Any::CopyFrom(const Any& from) {
MergeFrom(from);
}
PROTOBUF_NOINLINE bool Any::IsInitialized() const {
return true;
}
void Any::InternalSwap(Any* PROTOBUF_RESTRICT other) {
using std::swap;

@ -204,9 +204,10 @@ class PROTOBUF_EXPORT Any final : public ::google::protobuf::Message
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
return true;
}
ABSL_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
::size_t ByteSizeLong() const final;
::uint8_t* _InternalSerialize(
::uint8_t* target,

@ -314,6 +314,7 @@ Api::GetClassData() const {
{
&_table_.header,
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
PROTOBUF_FIELD_OFFSET(Api, _impl_._cached_size_),
false,
},
@ -603,9 +604,6 @@ void Api::CopyFrom(const Api& from) {
MergeFrom(from);
}
PROTOBUF_NOINLINE bool Api::IsInitialized() const {
return true;
}
void Api::InternalSwap(Api* PROTOBUF_RESTRICT other) {
using std::swap;
@ -710,6 +708,7 @@ Method::GetClassData() const {
{
&_table_.header,
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
PROTOBUF_FIELD_OFFSET(Method, _impl_._cached_size_),
false,
},
@ -977,9 +976,6 @@ void Method::CopyFrom(const Method& from) {
MergeFrom(from);
}
PROTOBUF_NOINLINE bool Method::IsInitialized() const {
return true;
}
void Method::InternalSwap(Method* PROTOBUF_RESTRICT other) {
using std::swap;
@ -1060,6 +1056,7 @@ Mixin::GetClassData() const {
{
&_table_.header,
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
PROTOBUF_FIELD_OFFSET(Mixin, _impl_._cached_size_),
false,
},
@ -1209,9 +1206,6 @@ void Mixin::CopyFrom(const Mixin& from) {
MergeFrom(from);
}
PROTOBUF_NOINLINE bool Mixin::IsInitialized() const {
return true;
}
void Mixin::InternalSwap(Mixin* PROTOBUF_RESTRICT other) {
using std::swap;

@ -164,9 +164,10 @@ class PROTOBUF_EXPORT Mixin final : public ::google::protobuf::Message
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
return true;
}
ABSL_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
::size_t ByteSizeLong() const final;
::uint8_t* _InternalSerialize(
::uint8_t* target,
@ -358,9 +359,10 @@ class PROTOBUF_EXPORT Method final : public ::google::protobuf::Message
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
return true;
}
ABSL_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
::size_t ByteSizeLong() const final;
::uint8_t* _InternalSerialize(
::uint8_t* target,
@ -625,9 +627,10 @@ class PROTOBUF_EXPORT Api final : public ::google::protobuf::Message
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
return true;
}
ABSL_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
::size_t ByteSizeLong() const final;
::uint8_t* _InternalSerialize(
::uint8_t* target,

@ -148,6 +148,7 @@ Duration::GetClassData() const {
{
&_table_.header,
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
PROTOBUF_FIELD_OFFSET(Duration, _impl_._cached_size_),
false,
},
@ -292,9 +293,6 @@ void Duration::CopyFrom(const Duration& from) {
MergeFrom(from);
}
PROTOBUF_NOINLINE bool Duration::IsInitialized() const {
return true;
}
void Duration::InternalSwap(Duration* PROTOBUF_RESTRICT other) {
using std::swap;

@ -156,9 +156,10 @@ class PROTOBUF_EXPORT Duration final : public ::google::protobuf::Message
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
return true;
}
ABSL_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
::size_t ByteSizeLong() const final;
::uint8_t* _InternalSerialize(
::uint8_t* target,

@ -119,6 +119,7 @@ Empty::GetClassData() const {
{
&_table_.header,
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
PROTOBUF_FIELD_OFFSET(Empty, _impl_._cached_size_),
false,
},

@ -155,6 +155,9 @@ class PROTOBUF_EXPORT Empty final : public ::google::protobuf::internal::ZeroFie
}
public:
bool IsInitialized() const {
return true;
}
private:
friend class ::google::protobuf::internal::AnyMetadata;
static ::absl::string_view FullMessageName() { return "google.protobuf.Empty"; }

@ -154,6 +154,7 @@ FieldMask::GetClassData() const {
{
&_table_.header,
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
PROTOBUF_FIELD_OFFSET(FieldMask, _impl_._cached_size_),
false,
},
@ -276,9 +277,6 @@ void FieldMask::CopyFrom(const FieldMask& from) {
MergeFrom(from);
}
PROTOBUF_NOINLINE bool FieldMask::IsInitialized() const {
return true;
}
void FieldMask::InternalSwap(FieldMask* PROTOBUF_RESTRICT other) {
using std::swap;

@ -156,9 +156,10 @@ class PROTOBUF_EXPORT FieldMask final : public ::google::protobuf::Message
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
return true;
}
ABSL_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
::size_t ByteSizeLong() const final;
::uint8_t* _InternalSerialize(
::uint8_t* target,

@ -157,6 +157,7 @@ SourceContext::GetClassData() const {
{
&_table_.header,
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
PROTOBUF_FIELD_OFFSET(SourceContext, _impl_._cached_size_),
false,
},
@ -280,9 +281,6 @@ void SourceContext::CopyFrom(const SourceContext& from) {
MergeFrom(from);
}
PROTOBUF_NOINLINE bool SourceContext::IsInitialized() const {
return true;
}
void SourceContext::InternalSwap(SourceContext* PROTOBUF_RESTRICT other) {
using std::swap;

@ -156,9 +156,10 @@ class PROTOBUF_EXPORT SourceContext final : public ::google::protobuf::Message
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
return true;
}
ABSL_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
::size_t ByteSizeLong() const final;
::uint8_t* _InternalSerialize(
::uint8_t* target,

@ -222,6 +222,7 @@ Struct_FieldsEntry_DoNotUse::GetClassData() const {
{
nullptr, // tc_table
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
PROTOBUF_FIELD_OFFSET(Struct_FieldsEntry_DoNotUse, _cached_size_),
false,
},
@ -289,6 +290,7 @@ Struct::GetClassData() const {
{
&_table_.header,
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
PROTOBUF_FIELD_OFFSET(Struct, _impl_._cached_size_),
false,
},
@ -433,9 +435,6 @@ void Struct::CopyFrom(const Struct& from) {
MergeFrom(from);
}
PROTOBUF_NOINLINE bool Struct::IsInitialized() const {
return true;
}
void Struct::InternalSwap(Struct* PROTOBUF_RESTRICT other) {
using std::swap;
@ -600,6 +599,7 @@ Value::GetClassData() const {
{
&_table_.header,
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
PROTOBUF_FIELD_OFFSET(Value, _impl_._cached_size_),
false,
},
@ -851,9 +851,6 @@ void Value::CopyFrom(const Value& from) {
MergeFrom(from);
}
PROTOBUF_NOINLINE bool Value::IsInitialized() const {
return true;
}
void Value::InternalSwap(Value* PROTOBUF_RESTRICT other) {
using std::swap;
@ -920,6 +917,7 @@ ListValue::GetClassData() const {
{
&_table_.header,
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
PROTOBUF_FIELD_OFFSET(ListValue, _impl_._cached_size_),
false,
},
@ -1042,9 +1040,6 @@ void ListValue::CopyFrom(const ListValue& from) {
MergeFrom(from);
}
PROTOBUF_NOINLINE bool ListValue::IsInitialized() const {
return true;
}
void ListValue::InternalSwap(ListValue* PROTOBUF_RESTRICT other) {
using std::swap;

@ -201,9 +201,10 @@ class PROTOBUF_EXPORT ListValue final : public ::google::protobuf::Message
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
return true;
}
ABSL_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
::size_t ByteSizeLong() const final;
::uint8_t* _InternalSerialize(
::uint8_t* target,
@ -378,9 +379,10 @@ class PROTOBUF_EXPORT Struct final : public ::google::protobuf::Message
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
return true;
}
ABSL_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
::size_t ByteSizeLong() const final;
::uint8_t* _InternalSerialize(
::uint8_t* target,
@ -589,9 +591,10 @@ class PROTOBUF_EXPORT Value final : public ::google::protobuf::Message
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
return true;
}
ABSL_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
::size_t ByteSizeLong() const final;
::uint8_t* _InternalSerialize(
::uint8_t* target,

@ -148,6 +148,7 @@ Timestamp::GetClassData() const {
{
&_table_.header,
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
PROTOBUF_FIELD_OFFSET(Timestamp, _impl_._cached_size_),
false,
},
@ -292,9 +293,6 @@ void Timestamp::CopyFrom(const Timestamp& from) {
MergeFrom(from);
}
PROTOBUF_NOINLINE bool Timestamp::IsInitialized() const {
return true;
}
void Timestamp::InternalSwap(Timestamp* PROTOBUF_RESTRICT other) {
using std::swap;

@ -156,9 +156,10 @@ class PROTOBUF_EXPORT Timestamp final : public ::google::protobuf::Message
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
return true;
}
ABSL_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
::size_t ByteSizeLong() const final;
::uint8_t* _InternalSerialize(
::uint8_t* target,

@ -494,6 +494,7 @@ Type::GetClassData() const {
{
&_table_.header,
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
PROTOBUF_FIELD_OFFSET(Type, _impl_._cached_size_),
false,
},
@ -780,9 +781,6 @@ void Type::CopyFrom(const Type& from) {
MergeFrom(from);
}
PROTOBUF_NOINLINE bool Type::IsInitialized() const {
return true;
}
void Type::InternalSwap(Type* PROTOBUF_RESTRICT other) {
using std::swap;
@ -886,6 +884,7 @@ Field::GetClassData() const {
{
&_table_.header,
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
PROTOBUF_FIELD_OFFSET(Field, _impl_._cached_size_),
false,
},
@ -1228,9 +1227,6 @@ void Field::CopyFrom(const Field& from) {
MergeFrom(from);
}
PROTOBUF_NOINLINE bool Field::IsInitialized() const {
return true;
}
void Field::InternalSwap(Field* PROTOBUF_RESTRICT other) {
using std::swap;
@ -1337,6 +1333,7 @@ Enum::GetClassData() const {
{
&_table_.header,
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
PROTOBUF_FIELD_OFFSET(Enum, _impl_._cached_size_),
false,
},
@ -1601,9 +1598,6 @@ void Enum::CopyFrom(const Enum& from) {
MergeFrom(from);
}
PROTOBUF_NOINLINE bool Enum::IsInitialized() const {
return true;
}
void Enum::InternalSwap(Enum* PROTOBUF_RESTRICT other) {
using std::swap;
@ -1686,6 +1680,7 @@ EnumValue::GetClassData() const {
{
&_table_.header,
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
PROTOBUF_FIELD_OFFSET(EnumValue, _impl_._cached_size_),
false,
},
@ -1859,9 +1854,6 @@ void EnumValue::CopyFrom(const EnumValue& from) {
MergeFrom(from);
}
PROTOBUF_NOINLINE bool EnumValue::IsInitialized() const {
return true;
}
void EnumValue::InternalSwap(EnumValue* PROTOBUF_RESTRICT other) {
using std::swap;
@ -1947,6 +1939,7 @@ Option::GetClassData() const {
{
&_table_.header,
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
PROTOBUF_FIELD_OFFSET(Option, _impl_._cached_size_),
false,
},
@ -2109,9 +2102,6 @@ void Option::CopyFrom(const Option& from) {
MergeFrom(from);
}
PROTOBUF_NOINLINE bool Option::IsInitialized() const {
return true;
}
void Option::InternalSwap(Option* PROTOBUF_RESTRICT other) {
using std::swap;

@ -290,9 +290,10 @@ class PROTOBUF_EXPORT Option final : public ::google::protobuf::Message
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
return true;
}
ABSL_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
::size_t ByteSizeLong() const final;
::uint8_t* _InternalSerialize(
::uint8_t* target,
@ -484,9 +485,10 @@ class PROTOBUF_EXPORT Field final : public ::google::protobuf::Message
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
return true;
}
ABSL_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
::size_t ByteSizeLong() const final;
::uint8_t* _InternalSerialize(
::uint8_t* target,
@ -850,9 +852,10 @@ class PROTOBUF_EXPORT EnumValue final : public ::google::protobuf::Message
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
return true;
}
ABSL_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
::size_t ByteSizeLong() const final;
::uint8_t* _InternalSerialize(
::uint8_t* target,
@ -1057,9 +1060,10 @@ class PROTOBUF_EXPORT Type final : public ::google::protobuf::Message
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
return true;
}
ABSL_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
::size_t ByteSizeLong() const final;
::uint8_t* _InternalSerialize(
::uint8_t* target,
@ -1349,9 +1353,10 @@ class PROTOBUF_EXPORT Enum final : public ::google::protobuf::Message
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
return true;
}
ABSL_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
::size_t ByteSizeLong() const final;
::uint8_t* _InternalSerialize(
::uint8_t* target,

@ -391,6 +391,7 @@ DoubleValue::GetClassData() const {
{
&_table_.header,
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
PROTOBUF_FIELD_OFFSET(DoubleValue, _impl_._cached_size_),
false,
},
@ -524,9 +525,6 @@ void DoubleValue::CopyFrom(const DoubleValue& from) {
MergeFrom(from);
}
PROTOBUF_NOINLINE bool DoubleValue::IsInitialized() const {
return true;
}
void DoubleValue::InternalSwap(DoubleValue* PROTOBUF_RESTRICT other) {
using std::swap;
@ -579,6 +577,7 @@ FloatValue::GetClassData() const {
{
&_table_.header,
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
PROTOBUF_FIELD_OFFSET(FloatValue, _impl_._cached_size_),
false,
},
@ -712,9 +711,6 @@ void FloatValue::CopyFrom(const FloatValue& from) {
MergeFrom(from);
}
PROTOBUF_NOINLINE bool FloatValue::IsInitialized() const {
return true;
}
void FloatValue::InternalSwap(FloatValue* PROTOBUF_RESTRICT other) {
using std::swap;
@ -767,6 +763,7 @@ Int64Value::GetClassData() const {
{
&_table_.header,
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
PROTOBUF_FIELD_OFFSET(Int64Value, _impl_._cached_size_),
false,
},
@ -886,9 +883,6 @@ void Int64Value::CopyFrom(const Int64Value& from) {
MergeFrom(from);
}
PROTOBUF_NOINLINE bool Int64Value::IsInitialized() const {
return true;
}
void Int64Value::InternalSwap(Int64Value* PROTOBUF_RESTRICT other) {
using std::swap;
@ -941,6 +935,7 @@ UInt64Value::GetClassData() const {
{
&_table_.header,
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
PROTOBUF_FIELD_OFFSET(UInt64Value, _impl_._cached_size_),
false,
},
@ -1060,9 +1055,6 @@ void UInt64Value::CopyFrom(const UInt64Value& from) {
MergeFrom(from);
}
PROTOBUF_NOINLINE bool UInt64Value::IsInitialized() const {
return true;
}
void UInt64Value::InternalSwap(UInt64Value* PROTOBUF_RESTRICT other) {
using std::swap;
@ -1115,6 +1107,7 @@ Int32Value::GetClassData() const {
{
&_table_.header,
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
PROTOBUF_FIELD_OFFSET(Int32Value, _impl_._cached_size_),
false,
},
@ -1234,9 +1227,6 @@ void Int32Value::CopyFrom(const Int32Value& from) {
MergeFrom(from);
}
PROTOBUF_NOINLINE bool Int32Value::IsInitialized() const {
return true;
}
void Int32Value::InternalSwap(Int32Value* PROTOBUF_RESTRICT other) {
using std::swap;
@ -1289,6 +1279,7 @@ UInt32Value::GetClassData() const {
{
&_table_.header,
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
PROTOBUF_FIELD_OFFSET(UInt32Value, _impl_._cached_size_),
false,
},
@ -1408,9 +1399,6 @@ void UInt32Value::CopyFrom(const UInt32Value& from) {
MergeFrom(from);
}
PROTOBUF_NOINLINE bool UInt32Value::IsInitialized() const {
return true;
}
void UInt32Value::InternalSwap(UInt32Value* PROTOBUF_RESTRICT other) {
using std::swap;
@ -1463,6 +1451,7 @@ BoolValue::GetClassData() const {
{
&_table_.header,
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
PROTOBUF_FIELD_OFFSET(BoolValue, _impl_._cached_size_),
false,
},
@ -1581,9 +1570,6 @@ void BoolValue::CopyFrom(const BoolValue& from) {
MergeFrom(from);
}
PROTOBUF_NOINLINE bool BoolValue::IsInitialized() const {
return true;
}
void BoolValue::InternalSwap(BoolValue* PROTOBUF_RESTRICT other) {
using std::swap;
@ -1650,6 +1636,7 @@ StringValue::GetClassData() const {
{
&_table_.header,
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
PROTOBUF_FIELD_OFFSET(StringValue, _impl_._cached_size_),
false,
},
@ -1773,9 +1760,6 @@ void StringValue::CopyFrom(const StringValue& from) {
MergeFrom(from);
}
PROTOBUF_NOINLINE bool StringValue::IsInitialized() const {
return true;
}
void StringValue::InternalSwap(StringValue* PROTOBUF_RESTRICT other) {
using std::swap;
@ -1844,6 +1828,7 @@ BytesValue::GetClassData() const {
{
&_table_.header,
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
PROTOBUF_FIELD_OFFSET(BytesValue, _impl_._cached_size_),
false,
},
@ -1962,9 +1947,6 @@ void BytesValue::CopyFrom(const BytesValue& from) {
MergeFrom(from);
}
PROTOBUF_NOINLINE bool BytesValue::IsInitialized() const {
return true;
}
void BytesValue::InternalSwap(BytesValue* PROTOBUF_RESTRICT other) {
using std::swap;

@ -180,9 +180,10 @@ class PROTOBUF_EXPORT UInt64Value final : public ::google::protobuf::Message
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
return true;
}
ABSL_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
::size_t ByteSizeLong() const final;
::uint8_t* _InternalSerialize(
::uint8_t* target,
@ -350,9 +351,10 @@ class PROTOBUF_EXPORT UInt32Value final : public ::google::protobuf::Message
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
return true;
}
ABSL_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
::size_t ByteSizeLong() const final;
::uint8_t* _InternalSerialize(
::uint8_t* target,
@ -520,9 +522,10 @@ class PROTOBUF_EXPORT StringValue final : public ::google::protobuf::Message
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
return true;
}
ABSL_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
::size_t ByteSizeLong() const final;
::uint8_t* _InternalSerialize(
::uint8_t* target,
@ -696,9 +699,10 @@ class PROTOBUF_EXPORT Int64Value final : public ::google::protobuf::Message
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
return true;
}
ABSL_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
::size_t ByteSizeLong() const final;
::uint8_t* _InternalSerialize(
::uint8_t* target,
@ -866,9 +870,10 @@ class PROTOBUF_EXPORT Int32Value final : public ::google::protobuf::Message
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
return true;
}
ABSL_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
::size_t ByteSizeLong() const final;
::uint8_t* _InternalSerialize(
::uint8_t* target,
@ -1036,9 +1041,10 @@ class PROTOBUF_EXPORT FloatValue final : public ::google::protobuf::Message
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
return true;
}
ABSL_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
::size_t ByteSizeLong() const final;
::uint8_t* _InternalSerialize(
::uint8_t* target,
@ -1206,9 +1212,10 @@ class PROTOBUF_EXPORT DoubleValue final : public ::google::protobuf::Message
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
return true;
}
ABSL_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
::size_t ByteSizeLong() const final;
::uint8_t* _InternalSerialize(
::uint8_t* target,
@ -1376,9 +1383,10 @@ class PROTOBUF_EXPORT BytesValue final : public ::google::protobuf::Message
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
return true;
}
ABSL_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
::size_t ByteSizeLong() const final;
::uint8_t* _InternalSerialize(
::uint8_t* target,
@ -1552,9 +1560,10 @@ class PROTOBUF_EXPORT BoolValue final : public ::google::protobuf::Message
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
return true;
}
ABSL_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
::size_t ByteSizeLong() const final;
::uint8_t* _InternalSerialize(
::uint8_t* target,

Loading…
Cancel
Save