Auto-generate files after cl/665411723

pull/17879/head
Protobuf Team Bot 5 months ago
parent cd002c06b6
commit 6a95fad912
  1. 10
      src/google/protobuf/any.pb.cc
  2. 5
      src/google/protobuf/any.pb.h
  3. 58
      src/google/protobuf/api.pb.cc
  4. 15
      src/google/protobuf/api.pb.h
  5. 10
      src/google/protobuf/duration.pb.cc
  6. 5
      src/google/protobuf/duration.pb.h
  7. 10
      src/google/protobuf/empty.pb.cc
  8. 5
      src/google/protobuf/empty.pb.h
  9. 21
      src/google/protobuf/field_mask.pb.cc
  10. 5
      src/google/protobuf/field_mask.pb.h
  11. 10
      src/google/protobuf/source_context.pb.cc
  12. 5
      src/google/protobuf/source_context.pb.h
  13. 65
      src/google/protobuf/struct.pb.cc
  14. 22
      src/google/protobuf/struct.pb.h
  15. 10
      src/google/protobuf/timestamp.pb.cc
  16. 5
      src/google/protobuf/timestamp.pb.h
  17. 102
      src/google/protobuf/type.pb.cc
  18. 25
      src/google/protobuf/type.pb.h
  19. 82
      src/google/protobuf/wrappers.pb.cc
  20. 45
      src/google/protobuf/wrappers.pb.h

@ -10,6 +10,7 @@
#include "google/protobuf/io/coded_stream.h"
#include "google/protobuf/generated_message_tctable_impl.h"
#include "google/protobuf/extension_set.h"
#include "google/protobuf/generated_message_util.h"
#include "google/protobuf/wire_format_lite.h"
#include "google/protobuf/descriptor.h"
#include "google/protobuf/generated_message_reflection.h"
@ -188,6 +189,13 @@ inline void Any::SharedDtor() {
_impl_.~Impl_();
}
inline void* Any::PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena) {
return ::new (mem) Any(arena);
}
constexpr auto Any::InternalNewImpl_() {
return ::google::protobuf::internal::MessageCreator::CopyInit(sizeof(Any));
}
PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1
const ::google::protobuf::MessageLite::ClassDataFull
@ -198,9 +206,9 @@ const ::google::protobuf::MessageLite::ClassDataFull
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
&Any::MergeImpl,
::google::protobuf::Message::GetNewImpl<Any>(),
#if defined(PROTOBUF_CUSTOM_VTABLE)
::google::protobuf::Message::GetDeleteImpl<Any>(),
::google::protobuf::Message::GetNewImpl<Any>(),
::google::protobuf::Message::GetClearImpl<Any>(), &Any::ByteSizeLong,
&Any::_InternalSerialize,
#endif // PROTOBUF_CUSTOM_VTABLE

@ -190,7 +190,7 @@ class PROTOBUF_EXPORT Any final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
Any* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL {
Any* New(::google::protobuf::Arena* arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<Any>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -246,6 +246,9 @@ class PROTOBUF_EXPORT Any final : public ::google::protobuf::Message
*this = ::std::move(from);
}
const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL;
static void* PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena);
static constexpr auto InternalNewImpl_();
static const ::google::protobuf::Message::ClassDataFull _class_data_;
public:

@ -10,6 +10,7 @@
#include "google/protobuf/io/coded_stream.h"
#include "google/protobuf/generated_message_tctable_impl.h"
#include "google/protobuf/extension_set.h"
#include "google/protobuf/generated_message_util.h"
#include "google/protobuf/wire_format_lite.h"
#include "google/protobuf/descriptor.h"
#include "google/protobuf/generated_message_reflection.h"
@ -334,6 +335,32 @@ inline void Api::SharedDtor() {
_impl_.~Impl_();
}
inline void* Api::PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena) {
return ::new (mem) Api(arena);
}
constexpr auto Api::InternalNewImpl_() {
constexpr auto arena_bits = ::google::protobuf::internal::EncodePlacementArenaOffsets({
PROTOBUF_FIELD_OFFSET(Api, _impl_.methods_) +
decltype(Api::_impl_.methods_)::
InternalGetArenaOffset(
::google::protobuf::Message::internal_visibility()),
PROTOBUF_FIELD_OFFSET(Api, _impl_.options_) +
decltype(Api::_impl_.options_)::
InternalGetArenaOffset(
::google::protobuf::Message::internal_visibility()),
PROTOBUF_FIELD_OFFSET(Api, _impl_.mixins_) +
decltype(Api::_impl_.mixins_)::
InternalGetArenaOffset(
::google::protobuf::Message::internal_visibility()),
});
if (arena_bits.has_value()) {
return ::google::protobuf::internal::MessageCreator::CopyInit(sizeof(Api), *arena_bits);
} else {
return ::google::protobuf::internal::MessageCreator(&Api::PlacementNew_,
sizeof(Api));
}
}
PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1
const ::google::protobuf::MessageLite::ClassDataFull
@ -344,9 +371,9 @@ const ::google::protobuf::MessageLite::ClassDataFull
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
&Api::MergeImpl,
::google::protobuf::Message::GetNewImpl<Api>(),
#if defined(PROTOBUF_CUSTOM_VTABLE)
::google::protobuf::Message::GetDeleteImpl<Api>(),
::google::protobuf::Message::GetNewImpl<Api>(),
::google::protobuf::Message::GetClearImpl<Api>(), &Api::ByteSizeLong,
&Api::_InternalSerialize,
#endif // PROTOBUF_CUSTOM_VTABLE
@ -769,6 +796,24 @@ inline void Method::SharedDtor() {
_impl_.~Impl_();
}
inline void* Method::PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena) {
return ::new (mem) Method(arena);
}
constexpr auto Method::InternalNewImpl_() {
constexpr auto arena_bits = ::google::protobuf::internal::EncodePlacementArenaOffsets({
PROTOBUF_FIELD_OFFSET(Method, _impl_.options_) +
decltype(Method::_impl_.options_)::
InternalGetArenaOffset(
::google::protobuf::Message::internal_visibility()),
});
if (arena_bits.has_value()) {
return ::google::protobuf::internal::MessageCreator::CopyInit(sizeof(Method), *arena_bits);
} else {
return ::google::protobuf::internal::MessageCreator(&Method::PlacementNew_,
sizeof(Method));
}
}
PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1
const ::google::protobuf::MessageLite::ClassDataFull
@ -779,9 +824,9 @@ const ::google::protobuf::MessageLite::ClassDataFull
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
&Method::MergeImpl,
::google::protobuf::Message::GetNewImpl<Method>(),
#if defined(PROTOBUF_CUSTOM_VTABLE)
::google::protobuf::Message::GetDeleteImpl<Method>(),
::google::protobuf::Message::GetNewImpl<Method>(),
::google::protobuf::Message::GetClearImpl<Method>(), &Method::ByteSizeLong,
&Method::_InternalSerialize,
#endif // PROTOBUF_CUSTOM_VTABLE
@ -1147,6 +1192,13 @@ inline void Mixin::SharedDtor() {
_impl_.~Impl_();
}
inline void* Mixin::PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena) {
return ::new (mem) Mixin(arena);
}
constexpr auto Mixin::InternalNewImpl_() {
return ::google::protobuf::internal::MessageCreator::CopyInit(sizeof(Mixin));
}
PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1
const ::google::protobuf::MessageLite::ClassDataFull
@ -1157,9 +1209,9 @@ const ::google::protobuf::MessageLite::ClassDataFull
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
&Mixin::MergeImpl,
::google::protobuf::Message::GetNewImpl<Mixin>(),
#if defined(PROTOBUF_CUSTOM_VTABLE)
::google::protobuf::Message::GetDeleteImpl<Mixin>(),
::google::protobuf::Message::GetNewImpl<Mixin>(),
::google::protobuf::Message::GetClearImpl<Mixin>(), &Mixin::ByteSizeLong,
&Mixin::_InternalSerialize,
#endif // PROTOBUF_CUSTOM_VTABLE

@ -150,7 +150,7 @@ class PROTOBUF_EXPORT Mixin final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
Mixin* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL {
Mixin* New(::google::protobuf::Arena* arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<Mixin>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -206,6 +206,9 @@ class PROTOBUF_EXPORT Mixin final : public ::google::protobuf::Message
*this = ::std::move(from);
}
const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL;
static void* PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena);
static constexpr auto InternalNewImpl_();
static const ::google::protobuf::Message::ClassDataFull _class_data_;
public:
@ -360,7 +363,7 @@ class PROTOBUF_EXPORT Method final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
Method* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL {
Method* New(::google::protobuf::Arena* arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<Method>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -416,6 +419,9 @@ class PROTOBUF_EXPORT Method final : public ::google::protobuf::Message
*this = ::std::move(from);
}
const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL;
static void* PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena);
static constexpr auto InternalNewImpl_();
static const ::google::protobuf::Message::ClassDataFull _class_data_;
public:
@ -643,7 +649,7 @@ class PROTOBUF_EXPORT Api final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
Api* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL {
Api* New(::google::protobuf::Arena* arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<Api>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -699,6 +705,9 @@ class PROTOBUF_EXPORT Api final : public ::google::protobuf::Message
*this = ::std::move(from);
}
const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL;
static void* PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena);
static constexpr auto InternalNewImpl_();
static const ::google::protobuf::Message::ClassDataFull _class_data_;
public:

@ -10,6 +10,7 @@
#include "google/protobuf/io/coded_stream.h"
#include "google/protobuf/generated_message_tctable_impl.h"
#include "google/protobuf/extension_set.h"
#include "google/protobuf/generated_message_util.h"
#include "google/protobuf/wire_format_lite.h"
#include "google/protobuf/descriptor.h"
#include "google/protobuf/generated_message_reflection.h"
@ -151,6 +152,13 @@ inline void Duration::SharedDtor() {
_impl_.~Impl_();
}
inline void* Duration::PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena) {
return ::new (mem) Duration(arena);
}
constexpr auto Duration::InternalNewImpl_() {
return ::google::protobuf::internal::MessageCreator::ZeroInit(sizeof(Duration));
}
PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1
const ::google::protobuf::MessageLite::ClassDataFull
@ -161,9 +169,9 @@ const ::google::protobuf::MessageLite::ClassDataFull
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
&Duration::MergeImpl,
::google::protobuf::Message::GetNewImpl<Duration>(),
#if defined(PROTOBUF_CUSTOM_VTABLE)
::google::protobuf::Message::GetDeleteImpl<Duration>(),
::google::protobuf::Message::GetNewImpl<Duration>(),
::google::protobuf::Message::GetClearImpl<Duration>(), &Duration::ByteSizeLong,
&Duration::_InternalSerialize,
#endif // PROTOBUF_CUSTOM_VTABLE

@ -142,7 +142,7 @@ class PROTOBUF_EXPORT Duration final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
Duration* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL {
Duration* New(::google::protobuf::Arena* arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<Duration>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -198,6 +198,9 @@ class PROTOBUF_EXPORT Duration final : public ::google::protobuf::Message
*this = ::std::move(from);
}
const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL;
static void* PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena);
static constexpr auto InternalNewImpl_();
static const ::google::protobuf::Message::ClassDataFull _class_data_;
public:

@ -10,6 +10,7 @@
#include "google/protobuf/io/coded_stream.h"
#include "google/protobuf/generated_message_tctable_impl.h"
#include "google/protobuf/extension_set.h"
#include "google/protobuf/generated_message_util.h"
#include "google/protobuf/wire_format_lite.h"
#include "google/protobuf/descriptor.h"
#include "google/protobuf/generated_message_reflection.h"
@ -126,6 +127,13 @@ Empty::Empty(
// @@protoc_insertion_point(copy_constructor:google.protobuf.Empty)
}
inline void* Empty::PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena) {
return ::new (mem) Empty(arena);
}
constexpr auto Empty::InternalNewImpl_() {
return ::google::protobuf::internal::MessageCreator::ZeroInit(sizeof(Empty));
}
PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1
const ::google::protobuf::MessageLite::ClassDataFull
@ -136,9 +144,9 @@ const ::google::protobuf::MessageLite::ClassDataFull
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
&Empty::MergeImpl,
::google::protobuf::internal::ZeroFieldsBase::GetNewImpl<Empty>(),
#if defined(PROTOBUF_CUSTOM_VTABLE)
::google::protobuf::internal::ZeroFieldsBase::GetDeleteImpl<Empty>(),
::google::protobuf::internal::ZeroFieldsBase::GetNewImpl<Empty>(),
::google::protobuf::internal::ZeroFieldsBase::GetClearImpl<Empty>(), &Empty::ByteSizeLong,
&Empty::_InternalSerialize,
#endif // PROTOBUF_CUSTOM_VTABLE

@ -142,7 +142,7 @@ class PROTOBUF_EXPORT Empty final : public ::google::protobuf::internal::ZeroFie
// implements Message ----------------------------------------------
Empty* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL {
Empty* New(::google::protobuf::Arena* arena = nullptr) const {
return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct<Empty>(arena);
}
using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom;
@ -170,6 +170,9 @@ class PROTOBUF_EXPORT Empty final : public ::google::protobuf::internal::ZeroFie
*this = ::std::move(from);
}
const ::google::protobuf::internal::ZeroFieldsBase::ClassData* GetClassData() const PROTOBUF_FINAL;
static void* PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena);
static constexpr auto InternalNewImpl_();
static const ::google::protobuf::internal::ZeroFieldsBase::ClassDataFull _class_data_;
public:

@ -10,6 +10,7 @@
#include "google/protobuf/io/coded_stream.h"
#include "google/protobuf/generated_message_tctable_impl.h"
#include "google/protobuf/extension_set.h"
#include "google/protobuf/generated_message_util.h"
#include "google/protobuf/wire_format_lite.h"
#include "google/protobuf/descriptor.h"
#include "google/protobuf/generated_message_reflection.h"
@ -161,6 +162,24 @@ inline void FieldMask::SharedDtor() {
_impl_.~Impl_();
}
inline void* FieldMask::PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena) {
return ::new (mem) FieldMask(arena);
}
constexpr auto FieldMask::InternalNewImpl_() {
constexpr auto arena_bits = ::google::protobuf::internal::EncodePlacementArenaOffsets({
PROTOBUF_FIELD_OFFSET(FieldMask, _impl_.paths_) +
decltype(FieldMask::_impl_.paths_)::
InternalGetArenaOffset(
::google::protobuf::Message::internal_visibility()),
});
if (arena_bits.has_value()) {
return ::google::protobuf::internal::MessageCreator::ZeroInit(sizeof(FieldMask), *arena_bits);
} else {
return ::google::protobuf::internal::MessageCreator(&FieldMask::PlacementNew_,
sizeof(FieldMask));
}
}
PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1
const ::google::protobuf::MessageLite::ClassDataFull
@ -171,9 +190,9 @@ const ::google::protobuf::MessageLite::ClassDataFull
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
&FieldMask::MergeImpl,
::google::protobuf::Message::GetNewImpl<FieldMask>(),
#if defined(PROTOBUF_CUSTOM_VTABLE)
::google::protobuf::Message::GetDeleteImpl<FieldMask>(),
::google::protobuf::Message::GetNewImpl<FieldMask>(),
::google::protobuf::Message::GetClearImpl<FieldMask>(), &FieldMask::ByteSizeLong,
&FieldMask::_InternalSerialize,
#endif // PROTOBUF_CUSTOM_VTABLE

@ -142,7 +142,7 @@ class PROTOBUF_EXPORT FieldMask final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
FieldMask* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL {
FieldMask* New(::google::protobuf::Arena* arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<FieldMask>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -198,6 +198,9 @@ class PROTOBUF_EXPORT FieldMask final : public ::google::protobuf::Message
*this = ::std::move(from);
}
const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL;
static void* PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena);
static constexpr auto InternalNewImpl_();
static const ::google::protobuf::Message::ClassDataFull _class_data_;
public:

@ -10,6 +10,7 @@
#include "google/protobuf/io/coded_stream.h"
#include "google/protobuf/generated_message_tctable_impl.h"
#include "google/protobuf/extension_set.h"
#include "google/protobuf/generated_message_util.h"
#include "google/protobuf/wire_format_lite.h"
#include "google/protobuf/descriptor.h"
#include "google/protobuf/generated_message_reflection.h"
@ -164,6 +165,13 @@ inline void SourceContext::SharedDtor() {
_impl_.~Impl_();
}
inline void* SourceContext::PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena) {
return ::new (mem) SourceContext(arena);
}
constexpr auto SourceContext::InternalNewImpl_() {
return ::google::protobuf::internal::MessageCreator::CopyInit(sizeof(SourceContext));
}
PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1
const ::google::protobuf::MessageLite::ClassDataFull
@ -174,9 +182,9 @@ const ::google::protobuf::MessageLite::ClassDataFull
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
&SourceContext::MergeImpl,
::google::protobuf::Message::GetNewImpl<SourceContext>(),
#if defined(PROTOBUF_CUSTOM_VTABLE)
::google::protobuf::Message::GetDeleteImpl<SourceContext>(),
::google::protobuf::Message::GetNewImpl<SourceContext>(),
::google::protobuf::Message::GetClearImpl<SourceContext>(), &SourceContext::ByteSizeLong,
&SourceContext::_InternalSerialize,
#endif // PROTOBUF_CUSTOM_VTABLE

@ -142,7 +142,7 @@ class PROTOBUF_EXPORT SourceContext final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
SourceContext* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL {
SourceContext* New(::google::protobuf::Arena* arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<SourceContext>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -198,6 +198,9 @@ class PROTOBUF_EXPORT SourceContext final : public ::google::protobuf::Message
*this = ::std::move(from);
}
const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL;
static void* PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena);
static constexpr auto InternalNewImpl_();
static const ::google::protobuf::Message::ClassDataFull _class_data_;
public:

@ -10,6 +10,7 @@
#include "google/protobuf/io/coded_stream.h"
#include "google/protobuf/generated_message_tctable_impl.h"
#include "google/protobuf/extension_set.h"
#include "google/protobuf/generated_message_util.h"
#include "google/protobuf/wire_format_lite.h"
#include "google/protobuf/descriptor.h"
#include "google/protobuf/generated_message_reflection.h"
@ -244,6 +245,13 @@ bool NullValue_IsValid(int value) {
Struct_FieldsEntry_DoNotUse::Struct_FieldsEntry_DoNotUse() : SuperType() {}
Struct_FieldsEntry_DoNotUse::Struct_FieldsEntry_DoNotUse(::google::protobuf::Arena* arena) : SuperType(arena) {}
#endif // PROTOBUF_CUSTOM_VTABLE
inline void* Struct_FieldsEntry_DoNotUse::PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena) {
return ::new (mem) Struct_FieldsEntry_DoNotUse(arena);
}
constexpr auto Struct_FieldsEntry_DoNotUse::InternalNewImpl_() {
return ::google::protobuf::internal::MessageCreator::CopyInit(sizeof(Struct_FieldsEntry_DoNotUse));
}
PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1
const ::google::protobuf::MessageLite::ClassDataFull
@ -254,9 +262,9 @@ bool NullValue_IsValid(int value) {
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
&Struct_FieldsEntry_DoNotUse::MergeImpl,
::google::protobuf::Message::GetNewImpl<Struct_FieldsEntry_DoNotUse>(),
#if defined(PROTOBUF_CUSTOM_VTABLE)
::google::protobuf::Message::GetDeleteImpl<Struct_FieldsEntry_DoNotUse>(),
::google::protobuf::Message::GetNewImpl<Struct_FieldsEntry_DoNotUse>(),
::google::protobuf::Message::ClearImpl, ::google::protobuf::Message::ByteSizeLongImpl,
::google::protobuf::Message::_InternalSerializeImpl,
#endif // PROTOBUF_CUSTOM_VTABLE
@ -371,6 +379,28 @@ inline void Struct::SharedDtor() {
_impl_.~Impl_();
}
inline void* Struct::PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena) {
return ::new (mem) Struct(arena);
}
constexpr auto Struct::InternalNewImpl_() {
constexpr auto arena_bits = ::google::protobuf::internal::EncodePlacementArenaOffsets({
PROTOBUF_FIELD_OFFSET(Struct, _impl_.fields_) +
decltype(Struct::_impl_.fields_)::
InternalGetArenaOffset(
::google::protobuf::Message::internal_visibility()),
PROTOBUF_FIELD_OFFSET(Struct, _impl_.fields_) +
decltype(Struct::_impl_.fields_)::
InternalGetArenaOffsetAlt(
::google::protobuf::Message::internal_visibility()),
});
if (arena_bits.has_value()) {
return ::google::protobuf::internal::MessageCreator::CopyInit(sizeof(Struct), *arena_bits);
} else {
return ::google::protobuf::internal::MessageCreator(&Struct::PlacementNew_,
sizeof(Struct));
}
}
PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1
const ::google::protobuf::MessageLite::ClassDataFull
@ -381,9 +411,9 @@ const ::google::protobuf::MessageLite::ClassDataFull
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
&Struct::MergeImpl,
::google::protobuf::Message::GetNewImpl<Struct>(),
#if defined(PROTOBUF_CUSTOM_VTABLE)
::google::protobuf::Message::GetDeleteImpl<Struct>(),
::google::protobuf::Message::GetNewImpl<Struct>(),
::google::protobuf::Message::GetClearImpl<Struct>(), &Struct::ByteSizeLong,
&Struct::_InternalSerialize,
#endif // PROTOBUF_CUSTOM_VTABLE
@ -430,7 +460,7 @@ const ::_pbi::TcParseTable<0, 1, 2, 37, 2> Struct::_table_ = {
decltype(Struct()._impl_.fields_)>(
1, 0, 0, 9,
11)},
{::_pbi::TcParser::CreateInArenaStorageCb<::google::protobuf::Value>},
{::_pbi::TcParser::GetTable<::google::protobuf::Value>()},
}}, {{
"\26\6\0\0\0\0\0\0"
"google.protobuf.Struct"
@ -715,6 +745,13 @@ void Value::clear_kind() {
}
inline void* Value::PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena) {
return ::new (mem) Value(arena);
}
constexpr auto Value::InternalNewImpl_() {
return ::google::protobuf::internal::MessageCreator::ZeroInit(sizeof(Value));
}
PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1
const ::google::protobuf::MessageLite::ClassDataFull
@ -725,9 +762,9 @@ const ::google::protobuf::MessageLite::ClassDataFull
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
&Value::MergeImpl,
::google::protobuf::Message::GetNewImpl<Value>(),
#if defined(PROTOBUF_CUSTOM_VTABLE)
::google::protobuf::Message::GetDeleteImpl<Value>(),
::google::protobuf::Message::GetNewImpl<Value>(),
::google::protobuf::Message::GetClearImpl<Value>(), &Value::ByteSizeLong,
&Value::_InternalSerialize,
#endif // PROTOBUF_CUSTOM_VTABLE
@ -1065,6 +1102,24 @@ inline void ListValue::SharedDtor() {
_impl_.~Impl_();
}
inline void* ListValue::PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena) {
return ::new (mem) ListValue(arena);
}
constexpr auto ListValue::InternalNewImpl_() {
constexpr auto arena_bits = ::google::protobuf::internal::EncodePlacementArenaOffsets({
PROTOBUF_FIELD_OFFSET(ListValue, _impl_.values_) +
decltype(ListValue::_impl_.values_)::
InternalGetArenaOffset(
::google::protobuf::Message::internal_visibility()),
});
if (arena_bits.has_value()) {
return ::google::protobuf::internal::MessageCreator::ZeroInit(sizeof(ListValue), *arena_bits);
} else {
return ::google::protobuf::internal::MessageCreator(&ListValue::PlacementNew_,
sizeof(ListValue));
}
}
PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1
const ::google::protobuf::MessageLite::ClassDataFull
@ -1075,9 +1130,9 @@ const ::google::protobuf::MessageLite::ClassDataFull
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
&ListValue::MergeImpl,
::google::protobuf::Message::GetNewImpl<ListValue>(),
#if defined(PROTOBUF_CUSTOM_VTABLE)
::google::protobuf::Message::GetDeleteImpl<ListValue>(),
::google::protobuf::Message::GetNewImpl<ListValue>(),
::google::protobuf::Message::GetClearImpl<ListValue>(), &ListValue::ByteSizeLong,
&ListValue::_InternalSerialize,
#endif // PROTOBUF_CUSTOM_VTABLE

@ -187,7 +187,7 @@ class PROTOBUF_EXPORT ListValue final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
ListValue* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL {
ListValue* New(::google::protobuf::Arena* arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<ListValue>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -243,6 +243,9 @@ class PROTOBUF_EXPORT ListValue final : public ::google::protobuf::Message
*this = ::std::move(from);
}
const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL;
static void* PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena);
static constexpr auto InternalNewImpl_();
static const ::google::protobuf::Message::ClassDataFull _class_data_;
public:
@ -380,7 +383,7 @@ class PROTOBUF_EXPORT Struct final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
Struct* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL {
Struct* New(::google::protobuf::Arena* arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<Struct>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -436,6 +439,9 @@ class PROTOBUF_EXPORT Struct final : public ::google::protobuf::Message
*this = ::std::move(from);
}
const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL;
static void* PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena);
static constexpr auto InternalNewImpl_();
static const ::google::protobuf::Message::ClassDataFull _class_data_;
public:
@ -519,6 +525,9 @@ class Struct_FieldsEntry_DoNotUse final
private:
friend class ::google::protobuf::MessageLite;
friend struct ::TableStruct_google_2fprotobuf_2fstruct_2eproto;
friend class ::google::protobuf::internal::TcParser;
static const ::google::protobuf::internal::TcParseTable<
1, 2, 1,
@ -526,8 +535,10 @@ class Struct_FieldsEntry_DoNotUse final
_table_;
const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL;
static void* PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena);
static constexpr auto InternalNewImpl_();
static const ::google::protobuf::Message::ClassDataFull _class_data_;
friend struct ::TableStruct_google_2fprotobuf_2fstruct_2eproto;
};
// -------------------------------------------------------------------
@ -617,7 +628,7 @@ class PROTOBUF_EXPORT Value final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
Value* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL {
Value* New(::google::protobuf::Arena* arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<Value>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -673,6 +684,9 @@ class PROTOBUF_EXPORT Value final : public ::google::protobuf::Message
*this = ::std::move(from);
}
const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL;
static void* PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena);
static constexpr auto InternalNewImpl_();
static const ::google::protobuf::Message::ClassDataFull _class_data_;
public:

@ -10,6 +10,7 @@
#include "google/protobuf/io/coded_stream.h"
#include "google/protobuf/generated_message_tctable_impl.h"
#include "google/protobuf/extension_set.h"
#include "google/protobuf/generated_message_util.h"
#include "google/protobuf/wire_format_lite.h"
#include "google/protobuf/descriptor.h"
#include "google/protobuf/generated_message_reflection.h"
@ -151,6 +152,13 @@ inline void Timestamp::SharedDtor() {
_impl_.~Impl_();
}
inline void* Timestamp::PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena) {
return ::new (mem) Timestamp(arena);
}
constexpr auto Timestamp::InternalNewImpl_() {
return ::google::protobuf::internal::MessageCreator::ZeroInit(sizeof(Timestamp));
}
PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1
const ::google::protobuf::MessageLite::ClassDataFull
@ -161,9 +169,9 @@ const ::google::protobuf::MessageLite::ClassDataFull
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
&Timestamp::MergeImpl,
::google::protobuf::Message::GetNewImpl<Timestamp>(),
#if defined(PROTOBUF_CUSTOM_VTABLE)
::google::protobuf::Message::GetDeleteImpl<Timestamp>(),
::google::protobuf::Message::GetNewImpl<Timestamp>(),
::google::protobuf::Message::GetClearImpl<Timestamp>(), &Timestamp::ByteSizeLong,
&Timestamp::_InternalSerialize,
#endif // PROTOBUF_CUSTOM_VTABLE

@ -142,7 +142,7 @@ class PROTOBUF_EXPORT Timestamp final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
Timestamp* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL {
Timestamp* New(::google::protobuf::Arena* arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<Timestamp>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -198,6 +198,9 @@ class PROTOBUF_EXPORT Timestamp final : public ::google::protobuf::Message
*this = ::std::move(from);
}
const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL;
static void* PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena);
static constexpr auto InternalNewImpl_();
static const ::google::protobuf::Message::ClassDataFull _class_data_;
public:

@ -10,6 +10,7 @@
#include "google/protobuf/io/coded_stream.h"
#include "google/protobuf/generated_message_tctable_impl.h"
#include "google/protobuf/extension_set.h"
#include "google/protobuf/generated_message_util.h"
#include "google/protobuf/wire_format_lite.h"
#include "google/protobuf/descriptor.h"
#include "google/protobuf/generated_message_reflection.h"
@ -526,6 +527,32 @@ inline void Type::SharedDtor() {
_impl_.~Impl_();
}
inline void* Type::PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena) {
return ::new (mem) Type(arena);
}
constexpr auto Type::InternalNewImpl_() {
constexpr auto arena_bits = ::google::protobuf::internal::EncodePlacementArenaOffsets({
PROTOBUF_FIELD_OFFSET(Type, _impl_.fields_) +
decltype(Type::_impl_.fields_)::
InternalGetArenaOffset(
::google::protobuf::Message::internal_visibility()),
PROTOBUF_FIELD_OFFSET(Type, _impl_.oneofs_) +
decltype(Type::_impl_.oneofs_)::
InternalGetArenaOffset(
::google::protobuf::Message::internal_visibility()),
PROTOBUF_FIELD_OFFSET(Type, _impl_.options_) +
decltype(Type::_impl_.options_)::
InternalGetArenaOffset(
::google::protobuf::Message::internal_visibility()),
});
if (arena_bits.has_value()) {
return ::google::protobuf::internal::MessageCreator::CopyInit(sizeof(Type), *arena_bits);
} else {
return ::google::protobuf::internal::MessageCreator(&Type::PlacementNew_,
sizeof(Type));
}
}
PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1
const ::google::protobuf::MessageLite::ClassDataFull
@ -536,9 +563,9 @@ const ::google::protobuf::MessageLite::ClassDataFull
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
&Type::MergeImpl,
::google::protobuf::Message::GetNewImpl<Type>(),
#if defined(PROTOBUF_CUSTOM_VTABLE)
::google::protobuf::Message::GetDeleteImpl<Type>(),
::google::protobuf::Message::GetNewImpl<Type>(),
::google::protobuf::Message::GetClearImpl<Type>(), &Type::ByteSizeLong,
&Type::_InternalSerialize,
#endif // PROTOBUF_CUSTOM_VTABLE
@ -958,6 +985,24 @@ inline void Field::SharedDtor() {
_impl_.~Impl_();
}
inline void* Field::PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena) {
return ::new (mem) Field(arena);
}
constexpr auto Field::InternalNewImpl_() {
constexpr auto arena_bits = ::google::protobuf::internal::EncodePlacementArenaOffsets({
PROTOBUF_FIELD_OFFSET(Field, _impl_.options_) +
decltype(Field::_impl_.options_)::
InternalGetArenaOffset(
::google::protobuf::Message::internal_visibility()),
});
if (arena_bits.has_value()) {
return ::google::protobuf::internal::MessageCreator::CopyInit(sizeof(Field), *arena_bits);
} else {
return ::google::protobuf::internal::MessageCreator(&Field::PlacementNew_,
sizeof(Field));
}
}
PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1
const ::google::protobuf::MessageLite::ClassDataFull
@ -968,9 +1013,9 @@ const ::google::protobuf::MessageLite::ClassDataFull
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
&Field::MergeImpl,
::google::protobuf::Message::GetNewImpl<Field>(),
#if defined(PROTOBUF_CUSTOM_VTABLE)
::google::protobuf::Message::GetDeleteImpl<Field>(),
::google::protobuf::Message::GetNewImpl<Field>(),
::google::protobuf::Message::GetClearImpl<Field>(), &Field::ByteSizeLong,
&Field::_InternalSerialize,
#endif // PROTOBUF_CUSTOM_VTABLE
@ -1435,6 +1480,28 @@ inline void Enum::SharedDtor() {
_impl_.~Impl_();
}
inline void* Enum::PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena) {
return ::new (mem) Enum(arena);
}
constexpr auto Enum::InternalNewImpl_() {
constexpr auto arena_bits = ::google::protobuf::internal::EncodePlacementArenaOffsets({
PROTOBUF_FIELD_OFFSET(Enum, _impl_.enumvalue_) +
decltype(Enum::_impl_.enumvalue_)::
InternalGetArenaOffset(
::google::protobuf::Message::internal_visibility()),
PROTOBUF_FIELD_OFFSET(Enum, _impl_.options_) +
decltype(Enum::_impl_.options_)::
InternalGetArenaOffset(
::google::protobuf::Message::internal_visibility()),
});
if (arena_bits.has_value()) {
return ::google::protobuf::internal::MessageCreator::CopyInit(sizeof(Enum), *arena_bits);
} else {
return ::google::protobuf::internal::MessageCreator(&Enum::PlacementNew_,
sizeof(Enum));
}
}
PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1
const ::google::protobuf::MessageLite::ClassDataFull
@ -1445,9 +1512,9 @@ const ::google::protobuf::MessageLite::ClassDataFull
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
&Enum::MergeImpl,
::google::protobuf::Message::GetNewImpl<Enum>(),
#if defined(PROTOBUF_CUSTOM_VTABLE)
::google::protobuf::Message::GetDeleteImpl<Enum>(),
::google::protobuf::Message::GetNewImpl<Enum>(),
::google::protobuf::Message::GetClearImpl<Enum>(), &Enum::ByteSizeLong,
&Enum::_InternalSerialize,
#endif // PROTOBUF_CUSTOM_VTABLE
@ -1821,6 +1888,24 @@ inline void EnumValue::SharedDtor() {
_impl_.~Impl_();
}
inline void* EnumValue::PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena) {
return ::new (mem) EnumValue(arena);
}
constexpr auto EnumValue::InternalNewImpl_() {
constexpr auto arena_bits = ::google::protobuf::internal::EncodePlacementArenaOffsets({
PROTOBUF_FIELD_OFFSET(EnumValue, _impl_.options_) +
decltype(EnumValue::_impl_.options_)::
InternalGetArenaOffset(
::google::protobuf::Message::internal_visibility()),
});
if (arena_bits.has_value()) {
return ::google::protobuf::internal::MessageCreator::CopyInit(sizeof(EnumValue), *arena_bits);
} else {
return ::google::protobuf::internal::MessageCreator(&EnumValue::PlacementNew_,
sizeof(EnumValue));
}
}
PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1
const ::google::protobuf::MessageLite::ClassDataFull
@ -1831,9 +1916,9 @@ const ::google::protobuf::MessageLite::ClassDataFull
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
&EnumValue::MergeImpl,
::google::protobuf::Message::GetNewImpl<EnumValue>(),
#if defined(PROTOBUF_CUSTOM_VTABLE)
::google::protobuf::Message::GetDeleteImpl<EnumValue>(),
::google::protobuf::Message::GetNewImpl<EnumValue>(),
::google::protobuf::Message::GetClearImpl<EnumValue>(), &EnumValue::ByteSizeLong,
&EnumValue::_InternalSerialize,
#endif // PROTOBUF_CUSTOM_VTABLE
@ -2115,6 +2200,13 @@ inline void Option::SharedDtor() {
_impl_.~Impl_();
}
inline void* Option::PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena) {
return ::new (mem) Option(arena);
}
constexpr auto Option::InternalNewImpl_() {
return ::google::protobuf::internal::MessageCreator::CopyInit(sizeof(Option));
}
PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1
const ::google::protobuf::MessageLite::ClassDataFull
@ -2125,9 +2217,9 @@ const ::google::protobuf::MessageLite::ClassDataFull
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
&Option::MergeImpl,
::google::protobuf::Message::GetNewImpl<Option>(),
#if defined(PROTOBUF_CUSTOM_VTABLE)
::google::protobuf::Message::GetDeleteImpl<Option>(),
::google::protobuf::Message::GetNewImpl<Option>(),
::google::protobuf::Message::GetClearImpl<Option>(), &Option::ByteSizeLong,
&Option::_InternalSerialize,
#endif // PROTOBUF_CUSTOM_VTABLE

@ -276,7 +276,7 @@ class PROTOBUF_EXPORT Option final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
Option* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL {
Option* New(::google::protobuf::Arena* arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<Option>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -332,6 +332,9 @@ class PROTOBUF_EXPORT Option final : public ::google::protobuf::Message
*this = ::std::move(from);
}
const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL;
static void* PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena);
static constexpr auto InternalNewImpl_();
static const ::google::protobuf::Message::ClassDataFull _class_data_;
public:
@ -486,7 +489,7 @@ class PROTOBUF_EXPORT Field final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
Field* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL {
Field* New(::google::protobuf::Arena* arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<Field>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -542,6 +545,9 @@ class PROTOBUF_EXPORT Field final : public ::google::protobuf::Message
*this = ::std::move(from);
}
const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL;
static void* PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena);
static constexpr auto InternalNewImpl_();
static const ::google::protobuf::Message::ClassDataFull _class_data_;
public:
@ -868,7 +874,7 @@ class PROTOBUF_EXPORT EnumValue final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
EnumValue* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL {
EnumValue* New(::google::protobuf::Arena* arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<EnumValue>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -924,6 +930,9 @@ class PROTOBUF_EXPORT EnumValue final : public ::google::protobuf::Message
*this = ::std::move(from);
}
const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL;
static void* PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena);
static constexpr auto InternalNewImpl_();
static const ::google::protobuf::Message::ClassDataFull _class_data_;
public:
@ -1091,7 +1100,7 @@ class PROTOBUF_EXPORT Type final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
Type* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL {
Type* New(::google::protobuf::Arena* arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<Type>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -1147,6 +1156,9 @@ class PROTOBUF_EXPORT Type final : public ::google::protobuf::Message
*this = ::std::move(from);
}
const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL;
static void* PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena);
static constexpr auto InternalNewImpl_();
static const ::google::protobuf::Message::ClassDataFull _class_data_;
public:
@ -1393,7 +1405,7 @@ class PROTOBUF_EXPORT Enum final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
Enum* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL {
Enum* New(::google::protobuf::Arena* arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<Enum>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -1449,6 +1461,9 @@ class PROTOBUF_EXPORT Enum final : public ::google::protobuf::Message
*this = ::std::move(from);
}
const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL;
static void* PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena);
static constexpr auto InternalNewImpl_();
static const ::google::protobuf::Message::ClassDataFull _class_data_;
public:

@ -10,6 +10,7 @@
#include "google/protobuf/io/coded_stream.h"
#include "google/protobuf/generated_message_tctable_impl.h"
#include "google/protobuf/extension_set.h"
#include "google/protobuf/generated_message_util.h"
#include "google/protobuf/wire_format_lite.h"
#include "google/protobuf/descriptor.h"
#include "google/protobuf/generated_message_reflection.h"
@ -442,6 +443,13 @@ inline void DoubleValue::SharedDtor() {
_impl_.~Impl_();
}
inline void* DoubleValue::PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena) {
return ::new (mem) DoubleValue(arena);
}
constexpr auto DoubleValue::InternalNewImpl_() {
return ::google::protobuf::internal::MessageCreator::ZeroInit(sizeof(DoubleValue));
}
PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1
const ::google::protobuf::MessageLite::ClassDataFull
@ -452,9 +460,9 @@ const ::google::protobuf::MessageLite::ClassDataFull
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
&DoubleValue::MergeImpl,
::google::protobuf::Message::GetNewImpl<DoubleValue>(),
#if defined(PROTOBUF_CUSTOM_VTABLE)
::google::protobuf::Message::GetDeleteImpl<DoubleValue>(),
::google::protobuf::Message::GetNewImpl<DoubleValue>(),
::google::protobuf::Message::GetClearImpl<DoubleValue>(), &DoubleValue::ByteSizeLong,
&DoubleValue::_InternalSerialize,
#endif // PROTOBUF_CUSTOM_VTABLE
@ -640,6 +648,13 @@ inline void FloatValue::SharedDtor() {
_impl_.~Impl_();
}
inline void* FloatValue::PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena) {
return ::new (mem) FloatValue(arena);
}
constexpr auto FloatValue::InternalNewImpl_() {
return ::google::protobuf::internal::MessageCreator::ZeroInit(sizeof(FloatValue));
}
PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1
const ::google::protobuf::MessageLite::ClassDataFull
@ -650,9 +665,9 @@ const ::google::protobuf::MessageLite::ClassDataFull
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
&FloatValue::MergeImpl,
::google::protobuf::Message::GetNewImpl<FloatValue>(),
#if defined(PROTOBUF_CUSTOM_VTABLE)
::google::protobuf::Message::GetDeleteImpl<FloatValue>(),
::google::protobuf::Message::GetNewImpl<FloatValue>(),
::google::protobuf::Message::GetClearImpl<FloatValue>(), &FloatValue::ByteSizeLong,
&FloatValue::_InternalSerialize,
#endif // PROTOBUF_CUSTOM_VTABLE
@ -838,6 +853,13 @@ inline void Int64Value::SharedDtor() {
_impl_.~Impl_();
}
inline void* Int64Value::PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena) {
return ::new (mem) Int64Value(arena);
}
constexpr auto Int64Value::InternalNewImpl_() {
return ::google::protobuf::internal::MessageCreator::ZeroInit(sizeof(Int64Value));
}
PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1
const ::google::protobuf::MessageLite::ClassDataFull
@ -848,9 +870,9 @@ const ::google::protobuf::MessageLite::ClassDataFull
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
&Int64Value::MergeImpl,
::google::protobuf::Message::GetNewImpl<Int64Value>(),
#if defined(PROTOBUF_CUSTOM_VTABLE)
::google::protobuf::Message::GetDeleteImpl<Int64Value>(),
::google::protobuf::Message::GetNewImpl<Int64Value>(),
::google::protobuf::Message::GetClearImpl<Int64Value>(), &Int64Value::ByteSizeLong,
&Int64Value::_InternalSerialize,
#endif // PROTOBUF_CUSTOM_VTABLE
@ -1037,6 +1059,13 @@ inline void UInt64Value::SharedDtor() {
_impl_.~Impl_();
}
inline void* UInt64Value::PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena) {
return ::new (mem) UInt64Value(arena);
}
constexpr auto UInt64Value::InternalNewImpl_() {
return ::google::protobuf::internal::MessageCreator::ZeroInit(sizeof(UInt64Value));
}
PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1
const ::google::protobuf::MessageLite::ClassDataFull
@ -1047,9 +1076,9 @@ const ::google::protobuf::MessageLite::ClassDataFull
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
&UInt64Value::MergeImpl,
::google::protobuf::Message::GetNewImpl<UInt64Value>(),
#if defined(PROTOBUF_CUSTOM_VTABLE)
::google::protobuf::Message::GetDeleteImpl<UInt64Value>(),
::google::protobuf::Message::GetNewImpl<UInt64Value>(),
::google::protobuf::Message::GetClearImpl<UInt64Value>(), &UInt64Value::ByteSizeLong,
&UInt64Value::_InternalSerialize,
#endif // PROTOBUF_CUSTOM_VTABLE
@ -1236,6 +1265,13 @@ inline void Int32Value::SharedDtor() {
_impl_.~Impl_();
}
inline void* Int32Value::PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena) {
return ::new (mem) Int32Value(arena);
}
constexpr auto Int32Value::InternalNewImpl_() {
return ::google::protobuf::internal::MessageCreator::ZeroInit(sizeof(Int32Value));
}
PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1
const ::google::protobuf::MessageLite::ClassDataFull
@ -1246,9 +1282,9 @@ const ::google::protobuf::MessageLite::ClassDataFull
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
&Int32Value::MergeImpl,
::google::protobuf::Message::GetNewImpl<Int32Value>(),
#if defined(PROTOBUF_CUSTOM_VTABLE)
::google::protobuf::Message::GetDeleteImpl<Int32Value>(),
::google::protobuf::Message::GetNewImpl<Int32Value>(),
::google::protobuf::Message::GetClearImpl<Int32Value>(), &Int32Value::ByteSizeLong,
&Int32Value::_InternalSerialize,
#endif // PROTOBUF_CUSTOM_VTABLE
@ -1435,6 +1471,13 @@ inline void UInt32Value::SharedDtor() {
_impl_.~Impl_();
}
inline void* UInt32Value::PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena) {
return ::new (mem) UInt32Value(arena);
}
constexpr auto UInt32Value::InternalNewImpl_() {
return ::google::protobuf::internal::MessageCreator::ZeroInit(sizeof(UInt32Value));
}
PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1
const ::google::protobuf::MessageLite::ClassDataFull
@ -1445,9 +1488,9 @@ const ::google::protobuf::MessageLite::ClassDataFull
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
&UInt32Value::MergeImpl,
::google::protobuf::Message::GetNewImpl<UInt32Value>(),
#if defined(PROTOBUF_CUSTOM_VTABLE)
::google::protobuf::Message::GetDeleteImpl<UInt32Value>(),
::google::protobuf::Message::GetNewImpl<UInt32Value>(),
::google::protobuf::Message::GetClearImpl<UInt32Value>(), &UInt32Value::ByteSizeLong,
&UInt32Value::_InternalSerialize,
#endif // PROTOBUF_CUSTOM_VTABLE
@ -1634,6 +1677,13 @@ inline void BoolValue::SharedDtor() {
_impl_.~Impl_();
}
inline void* BoolValue::PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena) {
return ::new (mem) BoolValue(arena);
}
constexpr auto BoolValue::InternalNewImpl_() {
return ::google::protobuf::internal::MessageCreator::ZeroInit(sizeof(BoolValue));
}
PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1
const ::google::protobuf::MessageLite::ClassDataFull
@ -1644,9 +1694,9 @@ const ::google::protobuf::MessageLite::ClassDataFull
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
&BoolValue::MergeImpl,
::google::protobuf::Message::GetNewImpl<BoolValue>(),
#if defined(PROTOBUF_CUSTOM_VTABLE)
::google::protobuf::Message::GetDeleteImpl<BoolValue>(),
::google::protobuf::Message::GetNewImpl<BoolValue>(),
::google::protobuf::Message::GetClearImpl<BoolValue>(), &BoolValue::ByteSizeLong,
&BoolValue::_InternalSerialize,
#endif // PROTOBUF_CUSTOM_VTABLE
@ -1850,6 +1900,13 @@ inline void StringValue::SharedDtor() {
_impl_.~Impl_();
}
inline void* StringValue::PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena) {
return ::new (mem) StringValue(arena);
}
constexpr auto StringValue::InternalNewImpl_() {
return ::google::protobuf::internal::MessageCreator::CopyInit(sizeof(StringValue));
}
PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1
const ::google::protobuf::MessageLite::ClassDataFull
@ -1860,9 +1917,9 @@ const ::google::protobuf::MessageLite::ClassDataFull
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
&StringValue::MergeImpl,
::google::protobuf::Message::GetNewImpl<StringValue>(),
#if defined(PROTOBUF_CUSTOM_VTABLE)
::google::protobuf::Message::GetDeleteImpl<StringValue>(),
::google::protobuf::Message::GetNewImpl<StringValue>(),
::google::protobuf::Message::GetClearImpl<StringValue>(), &StringValue::ByteSizeLong,
&StringValue::_InternalSerialize,
#endif // PROTOBUF_CUSTOM_VTABLE
@ -2073,6 +2130,13 @@ inline void BytesValue::SharedDtor() {
_impl_.~Impl_();
}
inline void* BytesValue::PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena) {
return ::new (mem) BytesValue(arena);
}
constexpr auto BytesValue::InternalNewImpl_() {
return ::google::protobuf::internal::MessageCreator::CopyInit(sizeof(BytesValue));
}
PROTOBUF_CONSTINIT
PROTOBUF_ATTRIBUTE_INIT_PRIORITY1
const ::google::protobuf::MessageLite::ClassDataFull
@ -2083,9 +2147,9 @@ const ::google::protobuf::MessageLite::ClassDataFull
nullptr, // OnDemandRegisterArenaDtor
nullptr, // IsInitialized
&BytesValue::MergeImpl,
::google::protobuf::Message::GetNewImpl<BytesValue>(),
#if defined(PROTOBUF_CUSTOM_VTABLE)
::google::protobuf::Message::GetDeleteImpl<BytesValue>(),
::google::protobuf::Message::GetNewImpl<BytesValue>(),
::google::protobuf::Message::GetClearImpl<BytesValue>(), &BytesValue::ByteSizeLong,
&BytesValue::_InternalSerialize,
#endif // PROTOBUF_CUSTOM_VTABLE

@ -166,7 +166,7 @@ class PROTOBUF_EXPORT UInt64Value final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
UInt64Value* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL {
UInt64Value* New(::google::protobuf::Arena* arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<UInt64Value>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -222,6 +222,9 @@ class PROTOBUF_EXPORT UInt64Value final : public ::google::protobuf::Message
*this = ::std::move(from);
}
const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL;
static void* PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena);
static constexpr auto InternalNewImpl_();
static const ::google::protobuf::Message::ClassDataFull _class_data_;
public:
@ -352,7 +355,7 @@ class PROTOBUF_EXPORT UInt32Value final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
UInt32Value* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL {
UInt32Value* New(::google::protobuf::Arena* arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<UInt32Value>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -408,6 +411,9 @@ class PROTOBUF_EXPORT UInt32Value final : public ::google::protobuf::Message
*this = ::std::move(from);
}
const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL;
static void* PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena);
static constexpr auto InternalNewImpl_();
static const ::google::protobuf::Message::ClassDataFull _class_data_;
public:
@ -538,7 +544,7 @@ class PROTOBUF_EXPORT StringValue final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
StringValue* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL {
StringValue* New(::google::protobuf::Arena* arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<StringValue>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -594,6 +600,9 @@ class PROTOBUF_EXPORT StringValue final : public ::google::protobuf::Message
*this = ::std::move(from);
}
const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL;
static void* PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena);
static constexpr auto InternalNewImpl_();
static const ::google::protobuf::Message::ClassDataFull _class_data_;
public:
@ -730,7 +739,7 @@ class PROTOBUF_EXPORT Int64Value final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
Int64Value* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL {
Int64Value* New(::google::protobuf::Arena* arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<Int64Value>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -786,6 +795,9 @@ class PROTOBUF_EXPORT Int64Value final : public ::google::protobuf::Message
*this = ::std::move(from);
}
const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL;
static void* PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena);
static constexpr auto InternalNewImpl_();
static const ::google::protobuf::Message::ClassDataFull _class_data_;
public:
@ -916,7 +928,7 @@ class PROTOBUF_EXPORT Int32Value final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
Int32Value* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL {
Int32Value* New(::google::protobuf::Arena* arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<Int32Value>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -972,6 +984,9 @@ class PROTOBUF_EXPORT Int32Value final : public ::google::protobuf::Message
*this = ::std::move(from);
}
const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL;
static void* PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena);
static constexpr auto InternalNewImpl_();
static const ::google::protobuf::Message::ClassDataFull _class_data_;
public:
@ -1102,7 +1117,7 @@ class PROTOBUF_EXPORT FloatValue final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
FloatValue* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL {
FloatValue* New(::google::protobuf::Arena* arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<FloatValue>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -1158,6 +1173,9 @@ class PROTOBUF_EXPORT FloatValue final : public ::google::protobuf::Message
*this = ::std::move(from);
}
const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL;
static void* PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena);
static constexpr auto InternalNewImpl_();
static const ::google::protobuf::Message::ClassDataFull _class_data_;
public:
@ -1288,7 +1306,7 @@ class PROTOBUF_EXPORT DoubleValue final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
DoubleValue* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL {
DoubleValue* New(::google::protobuf::Arena* arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<DoubleValue>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -1344,6 +1362,9 @@ class PROTOBUF_EXPORT DoubleValue final : public ::google::protobuf::Message
*this = ::std::move(from);
}
const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL;
static void* PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena);
static constexpr auto InternalNewImpl_();
static const ::google::protobuf::Message::ClassDataFull _class_data_;
public:
@ -1474,7 +1495,7 @@ class PROTOBUF_EXPORT BytesValue final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
BytesValue* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL {
BytesValue* New(::google::protobuf::Arena* arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<BytesValue>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -1530,6 +1551,9 @@ class PROTOBUF_EXPORT BytesValue final : public ::google::protobuf::Message
*this = ::std::move(from);
}
const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL;
static void* PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena);
static constexpr auto InternalNewImpl_();
static const ::google::protobuf::Message::ClassDataFull _class_data_;
public:
@ -1666,7 +1690,7 @@ class PROTOBUF_EXPORT BoolValue final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
BoolValue* New(::google::protobuf::Arena* arena = nullptr) const PROTOBUF_FINAL {
BoolValue* New(::google::protobuf::Arena* arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<BoolValue>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -1722,6 +1746,9 @@ class PROTOBUF_EXPORT BoolValue final : public ::google::protobuf::Message
*this = ::std::move(from);
}
const ::google::protobuf::Message::ClassData* GetClassData() const PROTOBUF_FINAL;
static void* PlacementNew_(const void*, void* mem,
::google::protobuf::Arena* arena);
static constexpr auto InternalNewImpl_();
static const ::google::protobuf::Message::ClassDataFull _class_data_;
public:

Loading…
Cancel
Save