Auto-generate files after cl/714982016

pull/19977/head
Protobuf Team Bot 1 month ago
parent d36971ba80
commit dca34c7c05
  1. 2
      src/google/protobuf/any.pb.cc
  2. 51
      src/google/protobuf/any.pb.h
  3. 6
      src/google/protobuf/api.pb.cc
  4. 105
      src/google/protobuf/api.pb.h
  5. 10
      src/google/protobuf/duration.pb.cc
  6. 37
      src/google/protobuf/duration.pb.h
  7. 24
      src/google/protobuf/empty.pb.h
  8. 2
      src/google/protobuf/field_mask.pb.cc
  9. 41
      src/google/protobuf/field_mask.pb.h
  10. 2
      src/google/protobuf/source_context.pb.cc
  11. 37
      src/google/protobuf/source_context.pb.h
  12. 12
      src/google/protobuf/struct.pb.cc
  13. 136
      src/google/protobuf/struct.pb.h
  14. 10
      src/google/protobuf/timestamp.pb.cc
  15. 37
      src/google/protobuf/timestamp.pb.h
  16. 22
      src/google/protobuf/type.pb.cc
  17. 198
      src/google/protobuf/type.pb.h
  18. 26
      src/google/protobuf/wrappers.pb.cc
  19. 309
      src/google/protobuf/wrappers.pb.h

@ -303,7 +303,7 @@ PROTOBUF_NOINLINE void Any::Clear() {
#if defined(PROTOBUF_CUSTOM_VTABLE)
::uint8_t* PROTOBUF_NONNULL Any::_InternalSerialize(
const MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) {
const Any& this_ = static_cast<const Any&>(base);
#else // PROTOBUF_CUSTOM_VTABLE

@ -50,8 +50,7 @@ struct PROTOBUF_EXPORT TableStruct_google_2fprotobuf_2fany_2eproto {
static const ::uint32_t offsets[];
};
extern "C" {
PROTOBUF_EXPORT extern const ::google::protobuf::internal::DescriptorTable
descriptor_table_google_2fprotobuf_2fany_2eproto;
PROTOBUF_EXPORT extern const ::google::protobuf::internal::DescriptorTable descriptor_table_google_2fprotobuf_2fany_2eproto;
} // extern "C"
namespace google {
namespace protobuf {
@ -84,8 +83,7 @@ class PROTOBUF_EXPORT Any final : public ::google::protobuf::Message
#endif
template <typename = void>
explicit PROTOBUF_CONSTEXPR Any(
::google::protobuf::internal::ConstantInitialized);
explicit PROTOBUF_CONSTEXPR Any(::google::protobuf::internal::ConstantInitialized);
inline Any(const Any& from) : Any(nullptr, from) {}
inline Any(Any&& from) noexcept
@ -132,19 +130,19 @@ class PROTOBUF_EXPORT Any final : public ::google::protobuf::Message
bool PackFrom(const ::google::protobuf::Message& message) {
ABSL_DCHECK_NE(&message, this);
return ::google::protobuf::internal::InternalPackFrom(
message, mutable_type_url(), _internal_mutable_value());
return ::google::protobuf::internal::InternalPackFrom(message, mutable_type_url(),
_internal_mutable_value());
}
bool PackFrom(const ::google::protobuf::Message& message,
::absl::string_view type_url_prefix) {
ABSL_DCHECK_NE(&message, this);
return ::google::protobuf::internal::InternalPackFrom(
message, type_url_prefix, mutable_type_url(),
_internal_mutable_value());
return ::google::protobuf::internal::InternalPackFrom(message, type_url_prefix,
mutable_type_url(),
_internal_mutable_value());
}
bool UnpackTo(::google::protobuf::Message* PROTOBUF_NONNULL message) const {
return ::google::protobuf::internal::InternalUnpackTo(
_internal_type_url(), _internal_value(), message);
return ::google::protobuf::internal::InternalUnpackTo(_internal_type_url(),
_internal_value(), message);
}
static bool GetAnyFieldDescriptors(
const ::google::protobuf::Message& message,
@ -203,8 +201,7 @@ class PROTOBUF_EXPORT Any final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
Any* PROTOBUF_NONNULL
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
Any* PROTOBUF_NONNULL New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<Any>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -213,9 +210,8 @@ class PROTOBUF_EXPORT Any final : public ::google::protobuf::Message
void MergeFrom(const Any& from) { Any::MergeImpl(*this, from); }
private:
static void MergeImpl(
::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
@ -226,23 +222,21 @@ class PROTOBUF_EXPORT Any final : public ::google::protobuf::Message
private:
static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
const MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
public:
::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const {
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
return _InternalSerialize(*this, target, stream);
}
#else // PROTOBUF_CUSTOM_VTABLE
::size_t ByteSizeLong() const final;
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const final;
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
#endif // PROTOBUF_CUSTOM_VTABLE
int GetCachedSize() const { return _impl_._cached_size_.Get(); }
@ -252,16 +246,14 @@ class PROTOBUF_EXPORT Any final : public ::google::protobuf::Message
void InternalSwap(Any* PROTOBUF_NONNULL other);
private:
template <typename T>
friend ::absl::string_view(
::google::protobuf::internal::GetAnyMessageName)();
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
static ::absl::string_view FullMessageName() { return "google.protobuf.Any"; }
protected:
explicit Any(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
Any(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Any& from);
Any(
::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
Any&& from) noexcept
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, Any&& from) noexcept
: Any(arena) {
*this = ::std::move(from);
}
@ -316,9 +308,9 @@ class PROTOBUF_EXPORT Any final : public ::google::protobuf::Message
private:
class _Internal;
friend class ::google::protobuf::internal::TcParser;
static const ::google::protobuf::internal::TcParseTable<
1, 2, 0,
36, 2>
static const ::google::protobuf::internal::TcParseTable<1, 2,
0, 36,
2>
_table_;
friend class ::google::protobuf::MessageLite;
@ -328,8 +320,7 @@ class PROTOBUF_EXPORT Any final : public ::google::protobuf::Message
using InternalArenaConstructable_ = void;
using DestructorSkippable_ = void;
struct Impl_ {
inline explicit constexpr Impl_(
::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit constexpr Impl_(::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);

@ -518,7 +518,7 @@ PROTOBUF_NOINLINE void Api::Clear() {
#if defined(PROTOBUF_CUSTOM_VTABLE)
::uint8_t* PROTOBUF_NONNULL Api::_InternalSerialize(
const MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) {
const Api& this_ = static_cast<const Api&>(base);
#else // PROTOBUF_CUSTOM_VTABLE
@ -1016,7 +1016,7 @@ PROTOBUF_NOINLINE void Method::Clear() {
#if defined(PROTOBUF_CUSTOM_VTABLE)
::uint8_t* PROTOBUF_NONNULL Method::_InternalSerialize(
const MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) {
const Method& this_ = static_cast<const Method&>(base);
#else // PROTOBUF_CUSTOM_VTABLE
@ -1440,7 +1440,7 @@ PROTOBUF_NOINLINE void Mixin::Clear() {
#if defined(PROTOBUF_CUSTOM_VTABLE)
::uint8_t* PROTOBUF_NONNULL Mixin::_InternalSerialize(
const MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) {
const Mixin& this_ = static_cast<const Mixin&>(base);
#else // PROTOBUF_CUSTOM_VTABLE

@ -52,8 +52,7 @@ struct PROTOBUF_EXPORT TableStruct_google_2fprotobuf_2fapi_2eproto {
static const ::uint32_t offsets[];
};
extern "C" {
PROTOBUF_EXPORT extern const ::google::protobuf::internal::DescriptorTable
descriptor_table_google_2fprotobuf_2fapi_2eproto;
PROTOBUF_EXPORT extern const ::google::protobuf::internal::DescriptorTable descriptor_table_google_2fprotobuf_2fapi_2eproto;
} // extern "C"
namespace google {
namespace protobuf {
@ -94,8 +93,7 @@ class PROTOBUF_EXPORT Mixin final : public ::google::protobuf::Message
#endif
template <typename = void>
explicit PROTOBUF_CONSTEXPR Mixin(
::google::protobuf::internal::ConstantInitialized);
explicit PROTOBUF_CONSTEXPR Mixin(::google::protobuf::internal::ConstantInitialized);
inline Mixin(const Mixin& from) : Mixin(nullptr, from) {}
inline Mixin(Mixin&& from) noexcept
@ -154,8 +152,7 @@ class PROTOBUF_EXPORT Mixin final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
Mixin* PROTOBUF_NONNULL
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
Mixin* PROTOBUF_NONNULL New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<Mixin>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -164,9 +161,8 @@ class PROTOBUF_EXPORT Mixin final : public ::google::protobuf::Message
void MergeFrom(const Mixin& from) { Mixin::MergeImpl(*this, from); }
private:
static void MergeImpl(
::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
@ -177,23 +173,21 @@ class PROTOBUF_EXPORT Mixin final : public ::google::protobuf::Message
private:
static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
const MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
public:
::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const {
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
return _InternalSerialize(*this, target, stream);
}
#else // PROTOBUF_CUSTOM_VTABLE
::size_t ByteSizeLong() const final;
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const final;
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
#endif // PROTOBUF_CUSTOM_VTABLE
int GetCachedSize() const { return _impl_._cached_size_.Get(); }
@ -203,16 +197,14 @@ class PROTOBUF_EXPORT Mixin final : public ::google::protobuf::Message
void InternalSwap(Mixin* PROTOBUF_NONNULL other);
private:
template <typename T>
friend ::absl::string_view(
::google::protobuf::internal::GetAnyMessageName)();
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
static ::absl::string_view FullMessageName() { return "google.protobuf.Mixin"; }
protected:
explicit Mixin(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
Mixin(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Mixin& from);
Mixin(
::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
Mixin&& from) noexcept
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, Mixin&& from) noexcept
: Mixin(arena) {
*this = ::std::move(from);
}
@ -267,9 +259,9 @@ class PROTOBUF_EXPORT Mixin final : public ::google::protobuf::Message
private:
class _Internal;
friend class ::google::protobuf::internal::TcParser;
static const ::google::protobuf::internal::TcParseTable<
1, 2, 0,
38, 2>
static const ::google::protobuf::internal::TcParseTable<1, 2,
0, 38,
2>
_table_;
friend class ::google::protobuf::MessageLite;
@ -279,8 +271,7 @@ class PROTOBUF_EXPORT Mixin final : public ::google::protobuf::Message
using InternalArenaConstructable_ = void;
using DestructorSkippable_ = void;
struct Impl_ {
inline explicit constexpr Impl_(
::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit constexpr Impl_(::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
@ -315,8 +306,7 @@ class PROTOBUF_EXPORT Method final : public ::google::protobuf::Message
#endif
template <typename = void>
explicit PROTOBUF_CONSTEXPR Method(
::google::protobuf::internal::ConstantInitialized);
explicit PROTOBUF_CONSTEXPR Method(::google::protobuf::internal::ConstantInitialized);
inline Method(const Method& from) : Method(nullptr, from) {}
inline Method(Method&& from) noexcept
@ -375,8 +365,7 @@ class PROTOBUF_EXPORT Method final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
Method* PROTOBUF_NONNULL
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
Method* PROTOBUF_NONNULL New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<Method>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -385,9 +374,8 @@ class PROTOBUF_EXPORT Method final : public ::google::protobuf::Message
void MergeFrom(const Method& from) { Method::MergeImpl(*this, from); }
private:
static void MergeImpl(
::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
@ -398,23 +386,21 @@ class PROTOBUF_EXPORT Method final : public ::google::protobuf::Message
private:
static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
const MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
public:
::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const {
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
return _InternalSerialize(*this, target, stream);
}
#else // PROTOBUF_CUSTOM_VTABLE
::size_t ByteSizeLong() const final;
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const final;
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
#endif // PROTOBUF_CUSTOM_VTABLE
int GetCachedSize() const { return _impl_._cached_size_.Get(); }
@ -424,16 +410,14 @@ class PROTOBUF_EXPORT Method final : public ::google::protobuf::Message
void InternalSwap(Method* PROTOBUF_NONNULL other);
private:
template <typename T>
friend ::absl::string_view(
::google::protobuf::internal::GetAnyMessageName)();
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
static ::absl::string_view FullMessageName() { return "google.protobuf.Method"; }
protected:
explicit Method(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
Method(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Method& from);
Method(
::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
Method&& from) noexcept
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, Method&& from) noexcept
: Method(arena) {
*this = ::std::move(from);
}
@ -555,9 +539,9 @@ class PROTOBUF_EXPORT Method final : public ::google::protobuf::Message
private:
class _Internal;
friend class ::google::protobuf::internal::TcParser;
static const ::google::protobuf::internal::TcParseTable<
3, 7, 1,
68, 2>
static const ::google::protobuf::internal::TcParseTable<3, 7,
1, 68,
2>
_table_;
friend class ::google::protobuf::MessageLite;
@ -567,8 +551,7 @@ class PROTOBUF_EXPORT Method final : public ::google::protobuf::Message
using InternalArenaConstructable_ = void;
using DestructorSkippable_ = void;
struct Impl_ {
inline explicit constexpr Impl_(
::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit constexpr Impl_(::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
@ -608,8 +591,7 @@ class PROTOBUF_EXPORT Api final : public ::google::protobuf::Message
#endif
template <typename = void>
explicit PROTOBUF_CONSTEXPR Api(
::google::protobuf::internal::ConstantInitialized);
explicit PROTOBUF_CONSTEXPR Api(::google::protobuf::internal::ConstantInitialized);
inline Api(const Api& from) : Api(nullptr, from) {}
inline Api(Api&& from) noexcept
@ -668,8 +650,7 @@ class PROTOBUF_EXPORT Api final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
Api* PROTOBUF_NONNULL
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
Api* PROTOBUF_NONNULL New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<Api>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -678,9 +659,8 @@ class PROTOBUF_EXPORT Api final : public ::google::protobuf::Message
void MergeFrom(const Api& from) { Api::MergeImpl(*this, from); }
private:
static void MergeImpl(
::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
@ -691,23 +671,21 @@ class PROTOBUF_EXPORT Api final : public ::google::protobuf::Message
private:
static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
const MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
public:
::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const {
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
return _InternalSerialize(*this, target, stream);
}
#else // PROTOBUF_CUSTOM_VTABLE
::size_t ByteSizeLong() const final;
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const final;
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
#endif // PROTOBUF_CUSTOM_VTABLE
int GetCachedSize() const { return _impl_._cached_size_.Get(); }
@ -717,16 +695,14 @@ class PROTOBUF_EXPORT Api final : public ::google::protobuf::Message
void InternalSwap(Api* PROTOBUF_NONNULL other);
private:
template <typename T>
friend ::absl::string_view(
::google::protobuf::internal::GetAnyMessageName)();
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
static ::absl::string_view FullMessageName() { return "google.protobuf.Api"; }
protected:
explicit Api(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
Api(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Api& from);
Api(
::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
Api&& from) noexcept
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, Api&& from) noexcept
: Api(arena) {
*this = ::std::move(from);
}
@ -862,9 +838,9 @@ class PROTOBUF_EXPORT Api final : public ::google::protobuf::Message
private:
class _Internal;
friend class ::google::protobuf::internal::TcParser;
static const ::google::protobuf::internal::TcParseTable<
3, 7, 4,
39, 2>
static const ::google::protobuf::internal::TcParseTable<3, 7,
4, 39,
2>
_table_;
friend class ::google::protobuf::MessageLite;
@ -874,8 +850,7 @@ class PROTOBUF_EXPORT Api final : public ::google::protobuf::Message
using InternalArenaConstructable_ = void;
using DestructorSkippable_ = void;
struct Impl_ {
inline explicit constexpr Impl_(
::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit constexpr Impl_(::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);

@ -266,7 +266,7 @@ PROTOBUF_NOINLINE void Duration::Clear() {
#if defined(PROTOBUF_CUSTOM_VTABLE)
::uint8_t* PROTOBUF_NONNULL Duration::_InternalSerialize(
const MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) {
const Duration& this_ = static_cast<const Duration&>(base);
#else // PROTOBUF_CUSTOM_VTABLE
@ -282,8 +282,8 @@ PROTOBUF_NOINLINE void Duration::Clear() {
// int64 seconds = 1;
if ((this_._impl_._has_bits_[0] & 0x00000001u) != 0) {
if (this_._internal_seconds() != 0) {
target = ::google::protobuf::internal::WireFormatLite::
WriteInt64ToArrayWithField<1>(
target =
::google::protobuf::internal::WireFormatLite::WriteInt64ToArrayWithField<1>(
stream, this_._internal_seconds(), target);
}
}
@ -291,8 +291,8 @@ PROTOBUF_NOINLINE void Duration::Clear() {
// int32 nanos = 2;
if ((this_._impl_._has_bits_[0] & 0x00000002u) != 0) {
if (this_._internal_nanos() != 0) {
target = ::google::protobuf::internal::WireFormatLite::
WriteInt32ToArrayWithField<2>(
target =
::google::protobuf::internal::WireFormatLite::WriteInt32ToArrayWithField<2>(
stream, this_._internal_nanos(), target);
}
}

@ -50,8 +50,7 @@ struct PROTOBUF_EXPORT TableStruct_google_2fprotobuf_2fduration_2eproto {
static const ::uint32_t offsets[];
};
extern "C" {
PROTOBUF_EXPORT extern const ::google::protobuf::internal::DescriptorTable
descriptor_table_google_2fprotobuf_2fduration_2eproto;
PROTOBUF_EXPORT extern const ::google::protobuf::internal::DescriptorTable descriptor_table_google_2fprotobuf_2fduration_2eproto;
} // extern "C"
namespace google {
namespace protobuf {
@ -84,8 +83,7 @@ class PROTOBUF_EXPORT Duration final : public ::google::protobuf::Message
#endif
template <typename = void>
explicit PROTOBUF_CONSTEXPR Duration(
::google::protobuf::internal::ConstantInitialized);
explicit PROTOBUF_CONSTEXPR Duration(::google::protobuf::internal::ConstantInitialized);
inline Duration(const Duration& from) : Duration(nullptr, from) {}
inline Duration(Duration&& from) noexcept
@ -144,8 +142,7 @@ class PROTOBUF_EXPORT Duration final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
Duration* PROTOBUF_NONNULL
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
Duration* PROTOBUF_NONNULL New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<Duration>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -154,9 +151,8 @@ class PROTOBUF_EXPORT Duration final : public ::google::protobuf::Message
void MergeFrom(const Duration& from) { Duration::MergeImpl(*this, from); }
private:
static void MergeImpl(
::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
@ -167,23 +163,21 @@ class PROTOBUF_EXPORT Duration final : public ::google::protobuf::Message
private:
static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
const MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
public:
::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const {
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
return _InternalSerialize(*this, target, stream);
}
#else // PROTOBUF_CUSTOM_VTABLE
::size_t ByteSizeLong() const final;
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const final;
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
#endif // PROTOBUF_CUSTOM_VTABLE
int GetCachedSize() const { return _impl_._cached_size_.Get(); }
@ -193,16 +187,14 @@ class PROTOBUF_EXPORT Duration final : public ::google::protobuf::Message
void InternalSwap(Duration* PROTOBUF_NONNULL other);
private:
template <typename T>
friend ::absl::string_view(
::google::protobuf::internal::GetAnyMessageName)();
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
static ::absl::string_view FullMessageName() { return "google.protobuf.Duration"; }
protected:
explicit Duration(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
Duration(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Duration& from);
Duration(
::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
Duration&& from) noexcept
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, Duration&& from) noexcept
: Duration(arena) {
*this = ::std::move(from);
}
@ -247,9 +239,9 @@ class PROTOBUF_EXPORT Duration final : public ::google::protobuf::Message
private:
class _Internal;
friend class ::google::protobuf::internal::TcParser;
static const ::google::protobuf::internal::TcParseTable<
1, 2, 0,
0, 2>
static const ::google::protobuf::internal::TcParseTable<1, 2,
0, 0,
2>
_table_;
friend class ::google::protobuf::MessageLite;
@ -259,8 +251,7 @@ class PROTOBUF_EXPORT Duration final : public ::google::protobuf::Message
using InternalArenaConstructable_ = void;
using DestructorSkippable_ = void;
struct Impl_ {
inline explicit constexpr Impl_(
::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit constexpr Impl_(::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);

@ -51,8 +51,7 @@ struct PROTOBUF_EXPORT TableStruct_google_2fprotobuf_2fempty_2eproto {
static const ::uint32_t offsets[];
};
extern "C" {
PROTOBUF_EXPORT extern const ::google::protobuf::internal::DescriptorTable
descriptor_table_google_2fprotobuf_2fempty_2eproto;
PROTOBUF_EXPORT extern const ::google::protobuf::internal::DescriptorTable descriptor_table_google_2fprotobuf_2fempty_2eproto;
} // extern "C"
namespace google {
namespace protobuf {
@ -84,8 +83,7 @@ class PROTOBUF_EXPORT Empty final : public ::google::protobuf::internal::ZeroFie
#endif
template <typename = void>
explicit PROTOBUF_CONSTEXPR Empty(
::google::protobuf::internal::ConstantInitialized);
explicit PROTOBUF_CONSTEXPR Empty(::google::protobuf::internal::ConstantInitialized);
inline Empty(const Empty& from) : Empty(nullptr, from) {}
inline Empty(Empty&& from) noexcept
@ -144,8 +142,7 @@ class PROTOBUF_EXPORT Empty final : public ::google::protobuf::internal::ZeroFie
// implements Message ----------------------------------------------
Empty* PROTOBUF_NONNULL
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
Empty* PROTOBUF_NONNULL New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
return ::google::protobuf::internal::ZeroFieldsBase::DefaultConstruct<Empty>(arena);
}
using ::google::protobuf::internal::ZeroFieldsBase::CopyFrom;
@ -163,16 +160,14 @@ class PROTOBUF_EXPORT Empty final : public ::google::protobuf::internal::ZeroFie
}
private:
template <typename T>
friend ::absl::string_view(
::google::protobuf::internal::GetAnyMessageName)();
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
static ::absl::string_view FullMessageName() { return "google.protobuf.Empty"; }
protected:
explicit Empty(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
Empty(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Empty& from);
Empty(
::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
Empty&& from) noexcept
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, Empty&& from) noexcept
: Empty(arena) {
*this = ::std::move(from);
}
@ -193,9 +188,9 @@ class PROTOBUF_EXPORT Empty final : public ::google::protobuf::internal::ZeroFie
private:
class _Internal;
friend class ::google::protobuf::internal::TcParser;
static const ::google::protobuf::internal::TcParseTable<
0, 0, 0,
0, 2>
static const ::google::protobuf::internal::TcParseTable<0, 0,
0, 0,
2>
_table_;
friend class ::google::protobuf::MessageLite;
@ -205,8 +200,7 @@ class PROTOBUF_EXPORT Empty final : public ::google::protobuf::internal::ZeroFie
using InternalArenaConstructable_ = void;
using DestructorSkippable_ = void;
struct Impl_ {
inline explicit constexpr Impl_(
::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit constexpr Impl_(::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);

@ -268,7 +268,7 @@ PROTOBUF_NOINLINE void FieldMask::Clear() {
#if defined(PROTOBUF_CUSTOM_VTABLE)
::uint8_t* PROTOBUF_NONNULL FieldMask::_InternalSerialize(
const MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) {
const FieldMask& this_ = static_cast<const FieldMask&>(base);
#else // PROTOBUF_CUSTOM_VTABLE

@ -50,8 +50,7 @@ struct PROTOBUF_EXPORT TableStruct_google_2fprotobuf_2ffield_5fmask_2eproto {
static const ::uint32_t offsets[];
};
extern "C" {
PROTOBUF_EXPORT extern const ::google::protobuf::internal::DescriptorTable
descriptor_table_google_2fprotobuf_2ffield_5fmask_2eproto;
PROTOBUF_EXPORT extern const ::google::protobuf::internal::DescriptorTable descriptor_table_google_2fprotobuf_2ffield_5fmask_2eproto;
} // extern "C"
namespace google {
namespace protobuf {
@ -84,8 +83,7 @@ class PROTOBUF_EXPORT FieldMask final : public ::google::protobuf::Message
#endif
template <typename = void>
explicit PROTOBUF_CONSTEXPR FieldMask(
::google::protobuf::internal::ConstantInitialized);
explicit PROTOBUF_CONSTEXPR FieldMask(::google::protobuf::internal::ConstantInitialized);
inline FieldMask(const FieldMask& from) : FieldMask(nullptr, from) {}
inline FieldMask(FieldMask&& from) noexcept
@ -144,8 +142,7 @@ class PROTOBUF_EXPORT FieldMask final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
FieldMask* PROTOBUF_NONNULL
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
FieldMask* PROTOBUF_NONNULL New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<FieldMask>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -154,9 +151,8 @@ class PROTOBUF_EXPORT FieldMask final : public ::google::protobuf::Message
void MergeFrom(const FieldMask& from) { FieldMask::MergeImpl(*this, from); }
private:
static void MergeImpl(
::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
@ -167,23 +163,21 @@ class PROTOBUF_EXPORT FieldMask final : public ::google::protobuf::Message
private:
static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
const MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
public:
::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const {
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
return _InternalSerialize(*this, target, stream);
}
#else // PROTOBUF_CUSTOM_VTABLE
::size_t ByteSizeLong() const final;
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const final;
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
#endif // PROTOBUF_CUSTOM_VTABLE
int GetCachedSize() const { return _impl_._cached_size_.Get(); }
@ -193,16 +187,14 @@ class PROTOBUF_EXPORT FieldMask final : public ::google::protobuf::Message
void InternalSwap(FieldMask* PROTOBUF_NONNULL other);
private:
template <typename T>
friend ::absl::string_view(
::google::protobuf::internal::GetAnyMessageName)();
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
static ::absl::string_view FullMessageName() { return "google.protobuf.FieldMask"; }
protected:
explicit FieldMask(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
FieldMask(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const FieldMask& from);
FieldMask(
::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
FieldMask&& from) noexcept
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, FieldMask&& from) noexcept
: FieldMask(arena) {
*this = ::std::move(from);
}
@ -248,9 +240,9 @@ class PROTOBUF_EXPORT FieldMask final : public ::google::protobuf::Message
private:
class _Internal;
friend class ::google::protobuf::internal::TcParser;
static const ::google::protobuf::internal::TcParseTable<
0, 1, 0,
39, 2>
static const ::google::protobuf::internal::TcParseTable<0, 1,
0, 39,
2>
_table_;
friend class ::google::protobuf::MessageLite;
@ -260,8 +252,7 @@ class PROTOBUF_EXPORT FieldMask final : public ::google::protobuf::Message
using InternalArenaConstructable_ = void;
using DestructorSkippable_ = void;
struct Impl_ {
inline explicit constexpr Impl_(
::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit constexpr Impl_(::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
@ -337,8 +328,8 @@ inline void FieldMask::add_paths(Arg_&& value, Args_... args) {
args... );
// @@protoc_insertion_point(field_add:google.protobuf.FieldMask.paths)
}
inline const ::google::protobuf::RepeatedPtrField<std::string>&
FieldMask::paths() const ABSL_ATTRIBUTE_LIFETIME_BOUND {
inline const ::google::protobuf::RepeatedPtrField<std::string>& FieldMask::paths() const
ABSL_ATTRIBUTE_LIFETIME_BOUND {
// @@protoc_insertion_point(field_list:google.protobuf.FieldMask.paths)
return _internal_paths();
}

@ -269,7 +269,7 @@ PROTOBUF_NOINLINE void SourceContext::Clear() {
#if defined(PROTOBUF_CUSTOM_VTABLE)
::uint8_t* PROTOBUF_NONNULL SourceContext::_InternalSerialize(
const MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) {
const SourceContext& this_ = static_cast<const SourceContext&>(base);
#else // PROTOBUF_CUSTOM_VTABLE

@ -50,8 +50,7 @@ struct PROTOBUF_EXPORT TableStruct_google_2fprotobuf_2fsource_5fcontext_2eproto
static const ::uint32_t offsets[];
};
extern "C" {
PROTOBUF_EXPORT extern const ::google::protobuf::internal::DescriptorTable
descriptor_table_google_2fprotobuf_2fsource_5fcontext_2eproto;
PROTOBUF_EXPORT extern const ::google::protobuf::internal::DescriptorTable descriptor_table_google_2fprotobuf_2fsource_5fcontext_2eproto;
} // extern "C"
namespace google {
namespace protobuf {
@ -84,8 +83,7 @@ class PROTOBUF_EXPORT SourceContext final : public ::google::protobuf::Message
#endif
template <typename = void>
explicit PROTOBUF_CONSTEXPR SourceContext(
::google::protobuf::internal::ConstantInitialized);
explicit PROTOBUF_CONSTEXPR SourceContext(::google::protobuf::internal::ConstantInitialized);
inline SourceContext(const SourceContext& from) : SourceContext(nullptr, from) {}
inline SourceContext(SourceContext&& from) noexcept
@ -144,8 +142,7 @@ class PROTOBUF_EXPORT SourceContext final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
SourceContext* PROTOBUF_NONNULL
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
SourceContext* PROTOBUF_NONNULL New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<SourceContext>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -154,9 +151,8 @@ class PROTOBUF_EXPORT SourceContext final : public ::google::protobuf::Message
void MergeFrom(const SourceContext& from) { SourceContext::MergeImpl(*this, from); }
private:
static void MergeImpl(
::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
@ -167,23 +163,21 @@ class PROTOBUF_EXPORT SourceContext final : public ::google::protobuf::Message
private:
static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
const MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
public:
::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const {
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
return _InternalSerialize(*this, target, stream);
}
#else // PROTOBUF_CUSTOM_VTABLE
::size_t ByteSizeLong() const final;
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const final;
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
#endif // PROTOBUF_CUSTOM_VTABLE
int GetCachedSize() const { return _impl_._cached_size_.Get(); }
@ -193,16 +187,14 @@ class PROTOBUF_EXPORT SourceContext final : public ::google::protobuf::Message
void InternalSwap(SourceContext* PROTOBUF_NONNULL other);
private:
template <typename T>
friend ::absl::string_view(
::google::protobuf::internal::GetAnyMessageName)();
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
static ::absl::string_view FullMessageName() { return "google.protobuf.SourceContext"; }
protected:
explicit SourceContext(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
SourceContext(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const SourceContext& from);
SourceContext(
::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
SourceContext&& from) noexcept
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, SourceContext&& from) noexcept
: SourceContext(arena) {
*this = ::std::move(from);
}
@ -241,9 +233,9 @@ class PROTOBUF_EXPORT SourceContext final : public ::google::protobuf::Message
private:
class _Internal;
friend class ::google::protobuf::internal::TcParser;
static const ::google::protobuf::internal::TcParseTable<
0, 1, 0,
47, 2>
static const ::google::protobuf::internal::TcParseTable<0, 1,
0, 47,
2>
_table_;
friend class ::google::protobuf::MessageLite;
@ -253,8 +245,7 @@ class PROTOBUF_EXPORT SourceContext final : public ::google::protobuf::Message
using InternalArenaConstructable_ = void;
using DestructorSkippable_ = void;
struct Impl_ {
inline explicit constexpr Impl_(
::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit constexpr Impl_(::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);

@ -242,8 +242,7 @@ Struct_FieldsEntry_DoNotUse::Struct_FieldsEntry_DoNotUse(::google::protobuf::Are
: SuperType(arena, Struct_FieldsEntry_DoNotUse_class_data_.base()) {}
#else // PROTOBUF_CUSTOM_VTABLE
Struct_FieldsEntry_DoNotUse::Struct_FieldsEntry_DoNotUse() : SuperType() {}
Struct_FieldsEntry_DoNotUse::Struct_FieldsEntry_DoNotUse(::google::protobuf::Arena* PROTOBUF_NULLABLE arena)
: SuperType(arena) {}
Struct_FieldsEntry_DoNotUse::Struct_FieldsEntry_DoNotUse(::google::protobuf::Arena* PROTOBUF_NULLABLE arena) : SuperType(arena) {}
#endif // PROTOBUF_CUSTOM_VTABLE
inline void* PROTOBUF_NONNULL Struct_FieldsEntry_DoNotUse::PlacementNew_(
const void* PROTOBUF_NONNULL, void* PROTOBUF_NONNULL mem,
@ -265,8 +264,7 @@ constexpr auto Struct_FieldsEntry_DoNotUse::InternalGenerateClassData_() {
::google::protobuf::Message::GetNewImpl<Struct_FieldsEntry_DoNotUse>(),
#if defined(PROTOBUF_CUSTOM_VTABLE)
&Struct_FieldsEntry_DoNotUse::SharedDtor,
static_cast<void (::google::protobuf::MessageLite::*)()>(
&Struct_FieldsEntry_DoNotUse::ClearImpl),
static_cast<void (::google::protobuf::MessageLite::*)()>(&Struct_FieldsEntry_DoNotUse::ClearImpl),
::google::protobuf::Message::ByteSizeLongImpl, ::google::protobuf::Message::_InternalSerializeImpl
,
#endif // PROTOBUF_CUSTOM_VTABLE
@ -503,7 +501,7 @@ PROTOBUF_NOINLINE void Struct::Clear() {
#if defined(PROTOBUF_CUSTOM_VTABLE)
::uint8_t* PROTOBUF_NONNULL Struct::_InternalSerialize(
const MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) {
const Struct& this_ = static_cast<const Struct&>(base);
#else // PROTOBUF_CUSTOM_VTABLE
@ -877,7 +875,7 @@ PROTOBUF_NOINLINE void Value::Clear() {
#if defined(PROTOBUF_CUSTOM_VTABLE)
::uint8_t* PROTOBUF_NONNULL Value::_InternalSerialize(
const MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) {
const Value& this_ = static_cast<const Value&>(base);
#else // PROTOBUF_CUSTOM_VTABLE
@ -1238,7 +1236,7 @@ PROTOBUF_NOINLINE void ListValue::Clear() {
#if defined(PROTOBUF_CUSTOM_VTABLE)
::uint8_t* PROTOBUF_NONNULL ListValue::_InternalSerialize(
const MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) {
const ListValue& this_ = static_cast<const ListValue&>(base);
#else // PROTOBUF_CUSTOM_VTABLE

@ -55,8 +55,7 @@ struct PROTOBUF_EXPORT TableStruct_google_2fprotobuf_2fstruct_2eproto {
static const ::uint32_t offsets[];
};
extern "C" {
PROTOBUF_EXPORT extern const ::google::protobuf::internal::DescriptorTable
descriptor_table_google_2fprotobuf_2fstruct_2eproto;
PROTOBUF_EXPORT extern const ::google::protobuf::internal::DescriptorTable descriptor_table_google_2fprotobuf_2fstruct_2eproto;
} // extern "C"
namespace google {
namespace protobuf {
@ -113,14 +112,13 @@ const std::string& NullValue_Name(T value) {
}
template <>
inline const std::string& NullValue_Name(NullValue value) {
return ::google::protobuf::internal::NameOfDenseEnum<NullValue_descriptor,
0, 0>(
return ::google::protobuf::internal::NameOfDenseEnum<NullValue_descriptor, 0, 0>(
static_cast<int>(value));
}
inline bool NullValue_Parse(
absl::string_view name, NullValue* PROTOBUF_NONNULL value) {
return ::google::protobuf::internal::ParseNamedEnum<NullValue>(
NullValue_descriptor(), name, value);
return ::google::protobuf::internal::ParseNamedEnum<NullValue>(NullValue_descriptor(), name,
value);
}
// ===================================================================
@ -142,8 +140,7 @@ class PROTOBUF_EXPORT ListValue final : public ::google::protobuf::Message
#endif
template <typename = void>
explicit PROTOBUF_CONSTEXPR ListValue(
::google::protobuf::internal::ConstantInitialized);
explicit PROTOBUF_CONSTEXPR ListValue(::google::protobuf::internal::ConstantInitialized);
inline ListValue(const ListValue& from) : ListValue(nullptr, from) {}
inline ListValue(ListValue&& from) noexcept
@ -202,8 +199,7 @@ class PROTOBUF_EXPORT ListValue final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
ListValue* PROTOBUF_NONNULL
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
ListValue* PROTOBUF_NONNULL New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<ListValue>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -212,9 +208,8 @@ class PROTOBUF_EXPORT ListValue final : public ::google::protobuf::Message
void MergeFrom(const ListValue& from) { ListValue::MergeImpl(*this, from); }
private:
static void MergeImpl(
::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
@ -225,23 +220,21 @@ class PROTOBUF_EXPORT ListValue final : public ::google::protobuf::Message
private:
static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
const MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
public:
::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const {
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
return _InternalSerialize(*this, target, stream);
}
#else // PROTOBUF_CUSTOM_VTABLE
::size_t ByteSizeLong() const final;
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const final;
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
#endif // PROTOBUF_CUSTOM_VTABLE
int GetCachedSize() const { return _impl_._cached_size_.Get(); }
@ -251,16 +244,14 @@ class PROTOBUF_EXPORT ListValue final : public ::google::protobuf::Message
void InternalSwap(ListValue* PROTOBUF_NONNULL other);
private:
template <typename T>
friend ::absl::string_view(
::google::protobuf::internal::GetAnyMessageName)();
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
static ::absl::string_view FullMessageName() { return "google.protobuf.ListValue"; }
protected:
explicit ListValue(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
ListValue(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const ListValue& from);
ListValue(
::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
ListValue&& from) noexcept
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, ListValue&& from) noexcept
: ListValue(arena) {
*this = ::std::move(from);
}
@ -301,9 +292,9 @@ class PROTOBUF_EXPORT ListValue final : public ::google::protobuf::Message
private:
class _Internal;
friend class ::google::protobuf::internal::TcParser;
static const ::google::protobuf::internal::TcParseTable<
0, 1, 1,
0, 2>
static const ::google::protobuf::internal::TcParseTable<0, 1,
1, 0,
2>
_table_;
friend class ::google::protobuf::MessageLite;
@ -313,8 +304,7 @@ class PROTOBUF_EXPORT ListValue final : public ::google::protobuf::Message
using InternalArenaConstructable_ = void;
using DestructorSkippable_ = void;
struct Impl_ {
inline explicit constexpr Impl_(
::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit constexpr Impl_(::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
@ -347,8 +337,7 @@ class PROTOBUF_EXPORT Struct final : public ::google::protobuf::Message
#endif
template <typename = void>
explicit PROTOBUF_CONSTEXPR Struct(
::google::protobuf::internal::ConstantInitialized);
explicit PROTOBUF_CONSTEXPR Struct(::google::protobuf::internal::ConstantInitialized);
inline Struct(const Struct& from) : Struct(nullptr, from) {}
inline Struct(Struct&& from) noexcept
@ -407,8 +396,7 @@ class PROTOBUF_EXPORT Struct final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
Struct* PROTOBUF_NONNULL
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
Struct* PROTOBUF_NONNULL New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<Struct>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -417,9 +405,8 @@ class PROTOBUF_EXPORT Struct final : public ::google::protobuf::Message
void MergeFrom(const Struct& from) { Struct::MergeImpl(*this, from); }
private:
static void MergeImpl(
::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
@ -430,23 +417,21 @@ class PROTOBUF_EXPORT Struct final : public ::google::protobuf::Message
private:
static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
const MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
public:
::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const {
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
return _InternalSerialize(*this, target, stream);
}
#else // PROTOBUF_CUSTOM_VTABLE
::size_t ByteSizeLong() const final;
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const final;
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
#endif // PROTOBUF_CUSTOM_VTABLE
int GetCachedSize() const { return _impl_._cached_size_.Get(); }
@ -456,16 +441,14 @@ class PROTOBUF_EXPORT Struct final : public ::google::protobuf::Message
void InternalSwap(Struct* PROTOBUF_NONNULL other);
private:
template <typename T>
friend ::absl::string_view(
::google::protobuf::internal::GetAnyMessageName)();
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
static ::absl::string_view FullMessageName() { return "google.protobuf.Struct"; }
protected:
explicit Struct(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
Struct(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Struct& from);
Struct(
::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
Struct&& from) noexcept
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, Struct&& from) noexcept
: Struct(arena) {
*this = ::std::move(from);
}
@ -504,9 +487,9 @@ class PROTOBUF_EXPORT Struct final : public ::google::protobuf::Message
private:
class _Internal;
friend class ::google::protobuf::internal::TcParser;
static const ::google::protobuf::internal::TcParseTable<
0, 1, 2,
37, 2>
static const ::google::protobuf::internal::TcParseTable<0, 1,
2, 37,
2>
_table_;
friend class ::google::protobuf::MessageLite;
@ -516,8 +499,7 @@ class PROTOBUF_EXPORT Struct final : public ::google::protobuf::Message
using InternalArenaConstructable_ = void;
using DestructorSkippable_ = void;
struct Impl_ {
inline explicit constexpr Impl_(
::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit constexpr Impl_(::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
@ -540,19 +522,17 @@ PROTOBUF_EXPORT extern const ::google::protobuf::internal::ClassDataFull Struct_
// -------------------------------------------------------------------
class Struct_FieldsEntry_DoNotUse final
: public ::google::protobuf::internal::MapEntry<
std::string, ::google::protobuf::Message,
::google::protobuf::internal::WireFormatLite::TYPE_STRING,
::google::protobuf::internal::WireFormatLite::TYPE_MESSAGE> {
: public ::google::protobuf::internal::MapEntry<std::string, ::google::protobuf::Message,
::google::protobuf::internal::WireFormatLite::TYPE_STRING,
::google::protobuf::internal::WireFormatLite::TYPE_MESSAGE> {
public:
using SuperType = ::google::protobuf::internal::MapEntry<
std::string, ::google::protobuf::Message,
::google::protobuf::internal::WireFormatLite::TYPE_STRING,
::google::protobuf::internal::WireFormatLite::TYPE_MESSAGE>;
using SuperType =
::google::protobuf::internal::MapEntry<std::string, ::google::protobuf::Message,
::google::protobuf::internal::WireFormatLite::TYPE_STRING,
::google::protobuf::internal::WireFormatLite::TYPE_MESSAGE>;
Struct_FieldsEntry_DoNotUse();
template <typename = void>
explicit PROTOBUF_CONSTEXPR Struct_FieldsEntry_DoNotUse(
::google::protobuf::internal::ConstantInitialized);
explicit PROTOBUF_CONSTEXPR Struct_FieldsEntry_DoNotUse(::google::protobuf::internal::ConstantInitialized);
explicit Struct_FieldsEntry_DoNotUse(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
static const Struct_FieldsEntry_DoNotUse* PROTOBUF_NONNULL internal_default_instance() {
return reinterpret_cast<const Struct_FieldsEntry_DoNotUse*>(
@ -567,9 +547,9 @@ class Struct_FieldsEntry_DoNotUse final
friend struct ::TableStruct_google_2fprotobuf_2fstruct_2eproto;
friend class ::google::protobuf::internal::TcParser;
static const ::google::protobuf::internal::TcParseTable<
1, 2, 1,
46, 2>
static const ::google::protobuf::internal::TcParseTable<1, 2,
1, 46,
2>
_table_;
const ::google::protobuf::internal::ClassData* PROTOBUF_NONNULL GetClassData() const PROTOBUF_FINAL;
@ -595,8 +575,7 @@ class PROTOBUF_EXPORT Value final : public ::google::protobuf::Message
#endif
template <typename = void>
explicit PROTOBUF_CONSTEXPR Value(
::google::protobuf::internal::ConstantInitialized);
explicit PROTOBUF_CONSTEXPR Value(::google::protobuf::internal::ConstantInitialized);
inline Value(const Value& from) : Value(nullptr, from) {}
inline Value(Value&& from) noexcept
@ -664,8 +643,7 @@ class PROTOBUF_EXPORT Value final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
Value* PROTOBUF_NONNULL
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
Value* PROTOBUF_NONNULL New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<Value>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -674,9 +652,8 @@ class PROTOBUF_EXPORT Value final : public ::google::protobuf::Message
void MergeFrom(const Value& from) { Value::MergeImpl(*this, from); }
private:
static void MergeImpl(
::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
@ -687,23 +664,21 @@ class PROTOBUF_EXPORT Value final : public ::google::protobuf::Message
private:
static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
const MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
public:
::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const {
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
return _InternalSerialize(*this, target, stream);
}
#else // PROTOBUF_CUSTOM_VTABLE
::size_t ByteSizeLong() const final;
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const final;
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
#endif // PROTOBUF_CUSTOM_VTABLE
int GetCachedSize() const { return _impl_._cached_size_.Get(); }
@ -713,16 +688,14 @@ class PROTOBUF_EXPORT Value final : public ::google::protobuf::Message
void InternalSwap(Value* PROTOBUF_NONNULL other);
private:
template <typename T>
friend ::absl::string_view(
::google::protobuf::internal::GetAnyMessageName)();
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
static ::absl::string_view FullMessageName() { return "google.protobuf.Value"; }
protected:
explicit Value(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
Value(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Value& from);
Value(
::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
Value&& from) noexcept
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, Value&& from) noexcept
: Value(arena) {
*this = ::std::move(from);
}
@ -848,9 +821,9 @@ class PROTOBUF_EXPORT Value final : public ::google::protobuf::Message
inline bool has_kind() const;
inline void clear_has_kind();
friend class ::google::protobuf::internal::TcParser;
static const ::google::protobuf::internal::TcParseTable<
0, 6, 2,
42, 2>
static const ::google::protobuf::internal::TcParseTable<0, 6,
2, 42,
2>
_table_;
friend class ::google::protobuf::MessageLite;
@ -860,8 +833,7 @@ class PROTOBUF_EXPORT Value final : public ::google::protobuf::Message
using InternalArenaConstructable_ = void;
using DestructorSkippable_ = void;
struct Impl_ {
inline explicit constexpr Impl_(
::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit constexpr Impl_(::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);

@ -266,7 +266,7 @@ PROTOBUF_NOINLINE void Timestamp::Clear() {
#if defined(PROTOBUF_CUSTOM_VTABLE)
::uint8_t* PROTOBUF_NONNULL Timestamp::_InternalSerialize(
const MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) {
const Timestamp& this_ = static_cast<const Timestamp&>(base);
#else // PROTOBUF_CUSTOM_VTABLE
@ -282,8 +282,8 @@ PROTOBUF_NOINLINE void Timestamp::Clear() {
// int64 seconds = 1;
if ((this_._impl_._has_bits_[0] & 0x00000001u) != 0) {
if (this_._internal_seconds() != 0) {
target = ::google::protobuf::internal::WireFormatLite::
WriteInt64ToArrayWithField<1>(
target =
::google::protobuf::internal::WireFormatLite::WriteInt64ToArrayWithField<1>(
stream, this_._internal_seconds(), target);
}
}
@ -291,8 +291,8 @@ PROTOBUF_NOINLINE void Timestamp::Clear() {
// int32 nanos = 2;
if ((this_._impl_._has_bits_[0] & 0x00000002u) != 0) {
if (this_._internal_nanos() != 0) {
target = ::google::protobuf::internal::WireFormatLite::
WriteInt32ToArrayWithField<2>(
target =
::google::protobuf::internal::WireFormatLite::WriteInt32ToArrayWithField<2>(
stream, this_._internal_nanos(), target);
}
}

@ -50,8 +50,7 @@ struct PROTOBUF_EXPORT TableStruct_google_2fprotobuf_2ftimestamp_2eproto {
static const ::uint32_t offsets[];
};
extern "C" {
PROTOBUF_EXPORT extern const ::google::protobuf::internal::DescriptorTable
descriptor_table_google_2fprotobuf_2ftimestamp_2eproto;
PROTOBUF_EXPORT extern const ::google::protobuf::internal::DescriptorTable descriptor_table_google_2fprotobuf_2ftimestamp_2eproto;
} // extern "C"
namespace google {
namespace protobuf {
@ -84,8 +83,7 @@ class PROTOBUF_EXPORT Timestamp final : public ::google::protobuf::Message
#endif
template <typename = void>
explicit PROTOBUF_CONSTEXPR Timestamp(
::google::protobuf::internal::ConstantInitialized);
explicit PROTOBUF_CONSTEXPR Timestamp(::google::protobuf::internal::ConstantInitialized);
inline Timestamp(const Timestamp& from) : Timestamp(nullptr, from) {}
inline Timestamp(Timestamp&& from) noexcept
@ -144,8 +142,7 @@ class PROTOBUF_EXPORT Timestamp final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
Timestamp* PROTOBUF_NONNULL
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
Timestamp* PROTOBUF_NONNULL New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<Timestamp>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -154,9 +151,8 @@ class PROTOBUF_EXPORT Timestamp final : public ::google::protobuf::Message
void MergeFrom(const Timestamp& from) { Timestamp::MergeImpl(*this, from); }
private:
static void MergeImpl(
::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
@ -167,23 +163,21 @@ class PROTOBUF_EXPORT Timestamp final : public ::google::protobuf::Message
private:
static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
const MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
public:
::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const {
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
return _InternalSerialize(*this, target, stream);
}
#else // PROTOBUF_CUSTOM_VTABLE
::size_t ByteSizeLong() const final;
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const final;
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
#endif // PROTOBUF_CUSTOM_VTABLE
int GetCachedSize() const { return _impl_._cached_size_.Get(); }
@ -193,16 +187,14 @@ class PROTOBUF_EXPORT Timestamp final : public ::google::protobuf::Message
void InternalSwap(Timestamp* PROTOBUF_NONNULL other);
private:
template <typename T>
friend ::absl::string_view(
::google::protobuf::internal::GetAnyMessageName)();
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
static ::absl::string_view FullMessageName() { return "google.protobuf.Timestamp"; }
protected:
explicit Timestamp(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
Timestamp(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Timestamp& from);
Timestamp(
::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
Timestamp&& from) noexcept
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, Timestamp&& from) noexcept
: Timestamp(arena) {
*this = ::std::move(from);
}
@ -247,9 +239,9 @@ class PROTOBUF_EXPORT Timestamp final : public ::google::protobuf::Message
private:
class _Internal;
friend class ::google::protobuf::internal::TcParser;
static const ::google::protobuf::internal::TcParseTable<
1, 2, 0,
0, 2>
static const ::google::protobuf::internal::TcParseTable<1, 2,
0, 0,
2>
_table_;
friend class ::google::protobuf::MessageLite;
@ -259,8 +251,7 @@ class PROTOBUF_EXPORT Timestamp final : public ::google::protobuf::Message
using InternalArenaConstructable_ = void;
using DestructorSkippable_ = void;
struct Impl_ {
inline explicit constexpr Impl_(
::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit constexpr Impl_(::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);

@ -665,7 +665,7 @@ PROTOBUF_NOINLINE void Type::Clear() {
#if defined(PROTOBUF_CUSTOM_VTABLE)
::uint8_t* PROTOBUF_NONNULL Type::_InternalSerialize(
const MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) {
const Type& this_ = static_cast<const Type&>(base);
#else // PROTOBUF_CUSTOM_VTABLE
@ -1188,7 +1188,7 @@ PROTOBUF_NOINLINE void Field::Clear() {
#if defined(PROTOBUF_CUSTOM_VTABLE)
::uint8_t* PROTOBUF_NONNULL Field::_InternalSerialize(
const MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) {
const Field& this_ = static_cast<const Field&>(base);
#else // PROTOBUF_CUSTOM_VTABLE
@ -1222,8 +1222,8 @@ PROTOBUF_NOINLINE void Field::Clear() {
// int32 number = 3;
if ((this_._impl_._has_bits_[0] & 0x00000040u) != 0) {
if (this_._internal_number() != 0) {
target = ::google::protobuf::internal::WireFormatLite::
WriteInt32ToArrayWithField<3>(
target =
::google::protobuf::internal::WireFormatLite::WriteInt32ToArrayWithField<3>(
stream, this_._internal_number(), target);
}
}
@ -1251,8 +1251,8 @@ PROTOBUF_NOINLINE void Field::Clear() {
// int32 oneof_index = 7;
if ((this_._impl_._has_bits_[0] & 0x00000080u) != 0) {
if (this_._internal_oneof_index() != 0) {
target = ::google::protobuf::internal::WireFormatLite::
WriteInt32ToArrayWithField<7>(
target =
::google::protobuf::internal::WireFormatLite::WriteInt32ToArrayWithField<7>(
stream, this_._internal_oneof_index(), target);
}
}
@ -1758,7 +1758,7 @@ PROTOBUF_NOINLINE void Enum::Clear() {
#if defined(PROTOBUF_CUSTOM_VTABLE)
::uint8_t* PROTOBUF_NONNULL Enum::_InternalSerialize(
const MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) {
const Enum& this_ = static_cast<const Enum&>(base);
#else // PROTOBUF_CUSTOM_VTABLE
@ -2176,7 +2176,7 @@ PROTOBUF_NOINLINE void EnumValue::Clear() {
#if defined(PROTOBUF_CUSTOM_VTABLE)
::uint8_t* PROTOBUF_NONNULL EnumValue::_InternalSerialize(
const MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) {
const EnumValue& this_ = static_cast<const EnumValue&>(base);
#else // PROTOBUF_CUSTOM_VTABLE
@ -2202,8 +2202,8 @@ PROTOBUF_NOINLINE void EnumValue::Clear() {
// int32 number = 2;
if ((this_._impl_._has_bits_[0] & 0x00000002u) != 0) {
if (this_._internal_number() != 0) {
target = ::google::protobuf::internal::WireFormatLite::
WriteInt32ToArrayWithField<2>(
target =
::google::protobuf::internal::WireFormatLite::WriteInt32ToArrayWithField<2>(
stream, this_._internal_number(), target);
}
}
@ -2511,7 +2511,7 @@ PROTOBUF_NOINLINE void Option::Clear() {
#if defined(PROTOBUF_CUSTOM_VTABLE)
::uint8_t* PROTOBUF_NONNULL Option::_InternalSerialize(
const MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) {
const Option& this_ = static_cast<const Option&>(base);
#else // PROTOBUF_CUSTOM_VTABLE

@ -53,8 +53,7 @@ struct PROTOBUF_EXPORT TableStruct_google_2fprotobuf_2ftype_2eproto {
static const ::uint32_t offsets[];
};
extern "C" {
PROTOBUF_EXPORT extern const ::google::protobuf::internal::DescriptorTable
descriptor_table_google_2fprotobuf_2ftype_2eproto;
PROTOBUF_EXPORT extern const ::google::protobuf::internal::DescriptorTable descriptor_table_google_2fprotobuf_2ftype_2eproto;
} // extern "C"
namespace google {
namespace protobuf {
@ -143,14 +142,13 @@ const std::string& Field_Kind_Name(T value) {
}
template <>
inline const std::string& Field_Kind_Name(Field_Kind value) {
return ::google::protobuf::internal::NameOfDenseEnum<Field_Kind_descriptor,
0, 18>(
return ::google::protobuf::internal::NameOfDenseEnum<Field_Kind_descriptor, 0, 18>(
static_cast<int>(value));
}
inline bool Field_Kind_Parse(
absl::string_view name, Field_Kind* PROTOBUF_NONNULL value) {
return ::google::protobuf::internal::ParseNamedEnum<Field_Kind>(
Field_Kind_descriptor(), name, value);
return ::google::protobuf::internal::ParseNamedEnum<Field_Kind>(Field_Kind_descriptor(), name,
value);
}
enum Field_Cardinality : int {
Field_Cardinality_CARDINALITY_UNKNOWN = 0,
@ -182,14 +180,13 @@ const std::string& Field_Cardinality_Name(T value) {
}
template <>
inline const std::string& Field_Cardinality_Name(Field_Cardinality value) {
return ::google::protobuf::internal::NameOfDenseEnum<Field_Cardinality_descriptor,
0, 3>(
return ::google::protobuf::internal::NameOfDenseEnum<Field_Cardinality_descriptor, 0, 3>(
static_cast<int>(value));
}
inline bool Field_Cardinality_Parse(
absl::string_view name, Field_Cardinality* PROTOBUF_NONNULL value) {
return ::google::protobuf::internal::ParseNamedEnum<Field_Cardinality>(
Field_Cardinality_descriptor(), name, value);
return ::google::protobuf::internal::ParseNamedEnum<Field_Cardinality>(Field_Cardinality_descriptor(), name,
value);
}
enum Syntax : int {
SYNTAX_PROTO2 = 0,
@ -220,14 +217,13 @@ const std::string& Syntax_Name(T value) {
}
template <>
inline const std::string& Syntax_Name(Syntax value) {
return ::google::protobuf::internal::NameOfDenseEnum<Syntax_descriptor,
0, 2>(
return ::google::protobuf::internal::NameOfDenseEnum<Syntax_descriptor, 0, 2>(
static_cast<int>(value));
}
inline bool Syntax_Parse(
absl::string_view name, Syntax* PROTOBUF_NONNULL value) {
return ::google::protobuf::internal::ParseNamedEnum<Syntax>(
Syntax_descriptor(), name, value);
return ::google::protobuf::internal::ParseNamedEnum<Syntax>(Syntax_descriptor(), name,
value);
}
// ===================================================================
@ -249,8 +245,7 @@ class PROTOBUF_EXPORT Option final : public ::google::protobuf::Message
#endif
template <typename = void>
explicit PROTOBUF_CONSTEXPR Option(
::google::protobuf::internal::ConstantInitialized);
explicit PROTOBUF_CONSTEXPR Option(::google::protobuf::internal::ConstantInitialized);
inline Option(const Option& from) : Option(nullptr, from) {}
inline Option(Option&& from) noexcept
@ -309,8 +304,7 @@ class PROTOBUF_EXPORT Option final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
Option* PROTOBUF_NONNULL
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
Option* PROTOBUF_NONNULL New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<Option>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -319,9 +313,8 @@ class PROTOBUF_EXPORT Option final : public ::google::protobuf::Message
void MergeFrom(const Option& from) { Option::MergeImpl(*this, from); }
private:
static void MergeImpl(
::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
@ -332,23 +325,21 @@ class PROTOBUF_EXPORT Option final : public ::google::protobuf::Message
private:
static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
const MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
public:
::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const {
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
return _InternalSerialize(*this, target, stream);
}
#else // PROTOBUF_CUSTOM_VTABLE
::size_t ByteSizeLong() const final;
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const final;
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
#endif // PROTOBUF_CUSTOM_VTABLE
int GetCachedSize() const { return _impl_._cached_size_.Get(); }
@ -358,16 +349,14 @@ class PROTOBUF_EXPORT Option final : public ::google::protobuf::Message
void InternalSwap(Option* PROTOBUF_NONNULL other);
private:
template <typename T>
friend ::absl::string_view(
::google::protobuf::internal::GetAnyMessageName)();
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
static ::absl::string_view FullMessageName() { return "google.protobuf.Option"; }
protected:
explicit Option(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
Option(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Option& from);
Option(
::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
Option&& from) noexcept
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, Option&& from) noexcept
: Option(arena) {
*this = ::std::move(from);
}
@ -422,9 +411,9 @@ class PROTOBUF_EXPORT Option final : public ::google::protobuf::Message
private:
class _Internal;
friend class ::google::protobuf::internal::TcParser;
static const ::google::protobuf::internal::TcParseTable<
1, 2, 1,
35, 2>
static const ::google::protobuf::internal::TcParseTable<1, 2,
1, 35,
2>
_table_;
friend class ::google::protobuf::MessageLite;
@ -434,8 +423,7 @@ class PROTOBUF_EXPORT Option final : public ::google::protobuf::Message
using InternalArenaConstructable_ = void;
using DestructorSkippable_ = void;
struct Impl_ {
inline explicit constexpr Impl_(
::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit constexpr Impl_(::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
@ -470,8 +458,7 @@ class PROTOBUF_EXPORT Field final : public ::google::protobuf::Message
#endif
template <typename = void>
explicit PROTOBUF_CONSTEXPR Field(
::google::protobuf::internal::ConstantInitialized);
explicit PROTOBUF_CONSTEXPR Field(::google::protobuf::internal::ConstantInitialized);
inline Field(const Field& from) : Field(nullptr, from) {}
inline Field(Field&& from) noexcept
@ -530,8 +517,7 @@ class PROTOBUF_EXPORT Field final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
Field* PROTOBUF_NONNULL
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
Field* PROTOBUF_NONNULL New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<Field>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -540,9 +526,8 @@ class PROTOBUF_EXPORT Field final : public ::google::protobuf::Message
void MergeFrom(const Field& from) { Field::MergeImpl(*this, from); }
private:
static void MergeImpl(
::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
@ -553,23 +538,21 @@ class PROTOBUF_EXPORT Field final : public ::google::protobuf::Message
private:
static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
const MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
public:
::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const {
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
return _InternalSerialize(*this, target, stream);
}
#else // PROTOBUF_CUSTOM_VTABLE
::size_t ByteSizeLong() const final;
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const final;
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
#endif // PROTOBUF_CUSTOM_VTABLE
int GetCachedSize() const { return _impl_._cached_size_.Get(); }
@ -579,16 +562,14 @@ class PROTOBUF_EXPORT Field final : public ::google::protobuf::Message
void InternalSwap(Field* PROTOBUF_NONNULL other);
private:
template <typename T>
friend ::absl::string_view(
::google::protobuf::internal::GetAnyMessageName)();
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
static ::absl::string_view FullMessageName() { return "google.protobuf.Field"; }
protected:
explicit Field(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
Field(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Field& from);
Field(
::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
Field&& from) noexcept
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, Field&& from) noexcept
: Field(arena) {
*this = ::std::move(from);
}
@ -807,9 +788,9 @@ class PROTOBUF_EXPORT Field final : public ::google::protobuf::Message
private:
class _Internal;
friend class ::google::protobuf::internal::TcParser;
static const ::google::protobuf::internal::TcParseTable<
4, 10, 1,
72, 2>
static const ::google::protobuf::internal::TcParseTable<4, 10,
1, 72,
2>
_table_;
friend class ::google::protobuf::MessageLite;
@ -819,8 +800,7 @@ class PROTOBUF_EXPORT Field final : public ::google::protobuf::Message
using InternalArenaConstructable_ = void;
using DestructorSkippable_ = void;
struct Impl_ {
inline explicit constexpr Impl_(
::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit constexpr Impl_(::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
@ -863,8 +843,7 @@ class PROTOBUF_EXPORT EnumValue final : public ::google::protobuf::Message
#endif
template <typename = void>
explicit PROTOBUF_CONSTEXPR EnumValue(
::google::protobuf::internal::ConstantInitialized);
explicit PROTOBUF_CONSTEXPR EnumValue(::google::protobuf::internal::ConstantInitialized);
inline EnumValue(const EnumValue& from) : EnumValue(nullptr, from) {}
inline EnumValue(EnumValue&& from) noexcept
@ -923,8 +902,7 @@ class PROTOBUF_EXPORT EnumValue final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
EnumValue* PROTOBUF_NONNULL
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
EnumValue* PROTOBUF_NONNULL New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<EnumValue>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -933,9 +911,8 @@ class PROTOBUF_EXPORT EnumValue final : public ::google::protobuf::Message
void MergeFrom(const EnumValue& from) { EnumValue::MergeImpl(*this, from); }
private:
static void MergeImpl(
::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
@ -946,23 +923,21 @@ class PROTOBUF_EXPORT EnumValue final : public ::google::protobuf::Message
private:
static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
const MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
public:
::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const {
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
return _InternalSerialize(*this, target, stream);
}
#else // PROTOBUF_CUSTOM_VTABLE
::size_t ByteSizeLong() const final;
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const final;
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
#endif // PROTOBUF_CUSTOM_VTABLE
int GetCachedSize() const { return _impl_._cached_size_.Get(); }
@ -972,16 +947,14 @@ class PROTOBUF_EXPORT EnumValue final : public ::google::protobuf::Message
void InternalSwap(EnumValue* PROTOBUF_NONNULL other);
private:
template <typename T>
friend ::absl::string_view(
::google::protobuf::internal::GetAnyMessageName)();
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
static ::absl::string_view FullMessageName() { return "google.protobuf.EnumValue"; }
protected:
explicit EnumValue(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
EnumValue(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const EnumValue& from);
EnumValue(
::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
EnumValue&& from) noexcept
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, EnumValue&& from) noexcept
: EnumValue(arena) {
*this = ::std::move(from);
}
@ -1049,9 +1022,9 @@ class PROTOBUF_EXPORT EnumValue final : public ::google::protobuf::Message
private:
class _Internal;
friend class ::google::protobuf::internal::TcParser;
static const ::google::protobuf::internal::TcParseTable<
2, 3, 1,
38, 2>
static const ::google::protobuf::internal::TcParseTable<2, 3,
1, 38,
2>
_table_;
friend class ::google::protobuf::MessageLite;
@ -1061,8 +1034,7 @@ class PROTOBUF_EXPORT EnumValue final : public ::google::protobuf::Message
using InternalArenaConstructable_ = void;
using DestructorSkippable_ = void;
struct Impl_ {
inline explicit constexpr Impl_(
::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit constexpr Impl_(::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
@ -1098,8 +1070,7 @@ class PROTOBUF_EXPORT Type final : public ::google::protobuf::Message
#endif
template <typename = void>
explicit PROTOBUF_CONSTEXPR Type(
::google::protobuf::internal::ConstantInitialized);
explicit PROTOBUF_CONSTEXPR Type(::google::protobuf::internal::ConstantInitialized);
inline Type(const Type& from) : Type(nullptr, from) {}
inline Type(Type&& from) noexcept
@ -1158,8 +1129,7 @@ class PROTOBUF_EXPORT Type final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
Type* PROTOBUF_NONNULL
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
Type* PROTOBUF_NONNULL New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<Type>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -1168,9 +1138,8 @@ class PROTOBUF_EXPORT Type final : public ::google::protobuf::Message
void MergeFrom(const Type& from) { Type::MergeImpl(*this, from); }
private:
static void MergeImpl(
::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
@ -1181,23 +1150,21 @@ class PROTOBUF_EXPORT Type final : public ::google::protobuf::Message
private:
static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
const MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
public:
::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const {
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
return _InternalSerialize(*this, target, stream);
}
#else // PROTOBUF_CUSTOM_VTABLE
::size_t ByteSizeLong() const final;
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const final;
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
#endif // PROTOBUF_CUSTOM_VTABLE
int GetCachedSize() const { return _impl_._cached_size_.Get(); }
@ -1207,16 +1174,14 @@ class PROTOBUF_EXPORT Type final : public ::google::protobuf::Message
void InternalSwap(Type* PROTOBUF_NONNULL other);
private:
template <typename T>
friend ::absl::string_view(
::google::protobuf::internal::GetAnyMessageName)();
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
static ::absl::string_view FullMessageName() { return "google.protobuf.Type"; }
protected:
explicit Type(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
Type(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Type& from);
Type(
::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
Type&& from) noexcept
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, Type&& from) noexcept
: Type(arena) {
*this = ::std::move(from);
}
@ -1357,9 +1322,9 @@ class PROTOBUF_EXPORT Type final : public ::google::protobuf::Message
private:
class _Internal;
friend class ::google::protobuf::internal::TcParser;
static const ::google::protobuf::internal::TcParseTable<
3, 7, 3,
46, 2>
static const ::google::protobuf::internal::TcParseTable<3, 7,
3, 46,
2>
_table_;
friend class ::google::protobuf::MessageLite;
@ -1369,8 +1334,7 @@ class PROTOBUF_EXPORT Type final : public ::google::protobuf::Message
using InternalArenaConstructable_ = void;
using DestructorSkippable_ = void;
struct Impl_ {
inline explicit constexpr Impl_(
::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit constexpr Impl_(::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
@ -1410,8 +1374,7 @@ class PROTOBUF_EXPORT Enum final : public ::google::protobuf::Message
#endif
template <typename = void>
explicit PROTOBUF_CONSTEXPR Enum(
::google::protobuf::internal::ConstantInitialized);
explicit PROTOBUF_CONSTEXPR Enum(::google::protobuf::internal::ConstantInitialized);
inline Enum(const Enum& from) : Enum(nullptr, from) {}
inline Enum(Enum&& from) noexcept
@ -1470,8 +1433,7 @@ class PROTOBUF_EXPORT Enum final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
Enum* PROTOBUF_NONNULL
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
Enum* PROTOBUF_NONNULL New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<Enum>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -1480,9 +1442,8 @@ class PROTOBUF_EXPORT Enum final : public ::google::protobuf::Message
void MergeFrom(const Enum& from) { Enum::MergeImpl(*this, from); }
private:
static void MergeImpl(
::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
@ -1493,23 +1454,21 @@ class PROTOBUF_EXPORT Enum final : public ::google::protobuf::Message
private:
static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
const MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
public:
::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const {
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
return _InternalSerialize(*this, target, stream);
}
#else // PROTOBUF_CUSTOM_VTABLE
::size_t ByteSizeLong() const final;
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const final;
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
#endif // PROTOBUF_CUSTOM_VTABLE
int GetCachedSize() const { return _impl_._cached_size_.Get(); }
@ -1519,16 +1478,14 @@ class PROTOBUF_EXPORT Enum final : public ::google::protobuf::Message
void InternalSwap(Enum* PROTOBUF_NONNULL other);
private:
template <typename T>
friend ::absl::string_view(
::google::protobuf::internal::GetAnyMessageName)();
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
static ::absl::string_view FullMessageName() { return "google.protobuf.Enum"; }
protected:
explicit Enum(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
Enum(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Enum& from);
Enum(
::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
Enum&& from) noexcept
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, Enum&& from) noexcept
: Enum(arena) {
*this = ::std::move(from);
}
@ -1646,9 +1603,9 @@ class PROTOBUF_EXPORT Enum final : public ::google::protobuf::Message
private:
class _Internal;
friend class ::google::protobuf::internal::TcParser;
static const ::google::protobuf::internal::TcParseTable<
3, 6, 3,
40, 2>
static const ::google::protobuf::internal::TcParseTable<3, 6,
3, 40,
2>
_table_;
friend class ::google::protobuf::MessageLite;
@ -1658,8 +1615,7 @@ class PROTOBUF_EXPORT Enum final : public ::google::protobuf::Message
using InternalArenaConstructable_ = void;
using DestructorSkippable_ = void;
struct Impl_ {
inline explicit constexpr Impl_(
::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit constexpr Impl_(::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
@ -1856,8 +1812,8 @@ inline void Type::add_oneofs(Arg_&& value, Args_... args) {
args... );
// @@protoc_insertion_point(field_add:google.protobuf.Type.oneofs)
}
inline const ::google::protobuf::RepeatedPtrField<std::string>&
Type::oneofs() const ABSL_ATTRIBUTE_LIFETIME_BOUND {
inline const ::google::protobuf::RepeatedPtrField<std::string>& Type::oneofs() const
ABSL_ATTRIBUTE_LIFETIME_BOUND {
// @@protoc_insertion_point(field_list:google.protobuf.Type.oneofs)
return _internal_oneofs();
}

@ -553,7 +553,7 @@ PROTOBUF_NOINLINE void DoubleValue::Clear() {
#if defined(PROTOBUF_CUSTOM_VTABLE)
::uint8_t* PROTOBUF_NONNULL DoubleValue::_InternalSerialize(
const MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) {
const DoubleValue& this_ = static_cast<const DoubleValue&>(base);
#else // PROTOBUF_CUSTOM_VTABLE
@ -787,7 +787,7 @@ PROTOBUF_NOINLINE void FloatValue::Clear() {
#if defined(PROTOBUF_CUSTOM_VTABLE)
::uint8_t* PROTOBUF_NONNULL FloatValue::_InternalSerialize(
const MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) {
const FloatValue& this_ = static_cast<const FloatValue&>(base);
#else // PROTOBUF_CUSTOM_VTABLE
@ -1021,7 +1021,7 @@ PROTOBUF_NOINLINE void Int64Value::Clear() {
#if defined(PROTOBUF_CUSTOM_VTABLE)
::uint8_t* PROTOBUF_NONNULL Int64Value::_InternalSerialize(
const MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) {
const Int64Value& this_ = static_cast<const Int64Value&>(base);
#else // PROTOBUF_CUSTOM_VTABLE
@ -1037,8 +1037,8 @@ PROTOBUF_NOINLINE void Int64Value::Clear() {
// int64 value = 1;
if ((this_._impl_._has_bits_[0] & 0x00000001u) != 0) {
if (this_._internal_value() != 0) {
target = ::google::protobuf::internal::WireFormatLite::
WriteInt64ToArrayWithField<1>(
target =
::google::protobuf::internal::WireFormatLite::WriteInt64ToArrayWithField<1>(
stream, this_._internal_value(), target);
}
}
@ -1256,7 +1256,7 @@ PROTOBUF_NOINLINE void UInt64Value::Clear() {
#if defined(PROTOBUF_CUSTOM_VTABLE)
::uint8_t* PROTOBUF_NONNULL UInt64Value::_InternalSerialize(
const MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) {
const UInt64Value& this_ = static_cast<const UInt64Value&>(base);
#else // PROTOBUF_CUSTOM_VTABLE
@ -1491,7 +1491,7 @@ PROTOBUF_NOINLINE void Int32Value::Clear() {
#if defined(PROTOBUF_CUSTOM_VTABLE)
::uint8_t* PROTOBUF_NONNULL Int32Value::_InternalSerialize(
const MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) {
const Int32Value& this_ = static_cast<const Int32Value&>(base);
#else // PROTOBUF_CUSTOM_VTABLE
@ -1507,8 +1507,8 @@ PROTOBUF_NOINLINE void Int32Value::Clear() {
// int32 value = 1;
if ((this_._impl_._has_bits_[0] & 0x00000001u) != 0) {
if (this_._internal_value() != 0) {
target = ::google::protobuf::internal::WireFormatLite::
WriteInt32ToArrayWithField<1>(
target =
::google::protobuf::internal::WireFormatLite::WriteInt32ToArrayWithField<1>(
stream, this_._internal_value(), target);
}
}
@ -1726,7 +1726,7 @@ PROTOBUF_NOINLINE void UInt32Value::Clear() {
#if defined(PROTOBUF_CUSTOM_VTABLE)
::uint8_t* PROTOBUF_NONNULL UInt32Value::_InternalSerialize(
const MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) {
const UInt32Value& this_ = static_cast<const UInt32Value&>(base);
#else // PROTOBUF_CUSTOM_VTABLE
@ -1961,7 +1961,7 @@ PROTOBUF_NOINLINE void BoolValue::Clear() {
#if defined(PROTOBUF_CUSTOM_VTABLE)
::uint8_t* PROTOBUF_NONNULL BoolValue::_InternalSerialize(
const MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) {
const BoolValue& this_ = static_cast<const BoolValue&>(base);
#else // PROTOBUF_CUSTOM_VTABLE
@ -2215,7 +2215,7 @@ PROTOBUF_NOINLINE void StringValue::Clear() {
#if defined(PROTOBUF_CUSTOM_VTABLE)
::uint8_t* PROTOBUF_NONNULL StringValue::_InternalSerialize(
const MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) {
const StringValue& this_ = static_cast<const StringValue&>(base);
#else // PROTOBUF_CUSTOM_VTABLE
@ -2474,7 +2474,7 @@ PROTOBUF_NOINLINE void BytesValue::Clear() {
#if defined(PROTOBUF_CUSTOM_VTABLE)
::uint8_t* PROTOBUF_NONNULL BytesValue::_InternalSerialize(
const MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& base, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) {
const BytesValue& this_ = static_cast<const BytesValue&>(base);
#else // PROTOBUF_CUSTOM_VTABLE

@ -50,8 +50,7 @@ struct PROTOBUF_EXPORT TableStruct_google_2fprotobuf_2fwrappers_2eproto {
static const ::uint32_t offsets[];
};
extern "C" {
PROTOBUF_EXPORT extern const ::google::protobuf::internal::DescriptorTable
descriptor_table_google_2fprotobuf_2fwrappers_2eproto;
PROTOBUF_EXPORT extern const ::google::protobuf::internal::DescriptorTable descriptor_table_google_2fprotobuf_2fwrappers_2eproto;
} // extern "C"
namespace google {
namespace protobuf {
@ -116,8 +115,7 @@ class PROTOBUF_EXPORT UInt64Value final : public ::google::protobuf::Message
#endif
template <typename = void>
explicit PROTOBUF_CONSTEXPR UInt64Value(
::google::protobuf::internal::ConstantInitialized);
explicit PROTOBUF_CONSTEXPR UInt64Value(::google::protobuf::internal::ConstantInitialized);
inline UInt64Value(const UInt64Value& from) : UInt64Value(nullptr, from) {}
inline UInt64Value(UInt64Value&& from) noexcept
@ -176,8 +174,7 @@ class PROTOBUF_EXPORT UInt64Value final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
UInt64Value* PROTOBUF_NONNULL
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
UInt64Value* PROTOBUF_NONNULL New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<UInt64Value>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -186,9 +183,8 @@ class PROTOBUF_EXPORT UInt64Value final : public ::google::protobuf::Message
void MergeFrom(const UInt64Value& from) { UInt64Value::MergeImpl(*this, from); }
private:
static void MergeImpl(
::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
@ -199,23 +195,21 @@ class PROTOBUF_EXPORT UInt64Value final : public ::google::protobuf::Message
private:
static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
const MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
public:
::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const {
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
return _InternalSerialize(*this, target, stream);
}
#else // PROTOBUF_CUSTOM_VTABLE
::size_t ByteSizeLong() const final;
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const final;
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
#endif // PROTOBUF_CUSTOM_VTABLE
int GetCachedSize() const { return _impl_._cached_size_.Get(); }
@ -225,16 +219,14 @@ class PROTOBUF_EXPORT UInt64Value final : public ::google::protobuf::Message
void InternalSwap(UInt64Value* PROTOBUF_NONNULL other);
private:
template <typename T>
friend ::absl::string_view(
::google::protobuf::internal::GetAnyMessageName)();
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
static ::absl::string_view FullMessageName() { return "google.protobuf.UInt64Value"; }
protected:
explicit UInt64Value(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
UInt64Value(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const UInt64Value& from);
UInt64Value(
::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
UInt64Value&& from) noexcept
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, UInt64Value&& from) noexcept
: UInt64Value(arena) {
*this = ::std::move(from);
}
@ -268,9 +260,9 @@ class PROTOBUF_EXPORT UInt64Value final : public ::google::protobuf::Message
private:
class _Internal;
friend class ::google::protobuf::internal::TcParser;
static const ::google::protobuf::internal::TcParseTable<
0, 1, 0,
0, 2>
static const ::google::protobuf::internal::TcParseTable<0, 1,
0, 0,
2>
_table_;
friend class ::google::protobuf::MessageLite;
@ -280,8 +272,7 @@ class PROTOBUF_EXPORT UInt64Value final : public ::google::protobuf::Message
using InternalArenaConstructable_ = void;
using DestructorSkippable_ = void;
struct Impl_ {
inline explicit constexpr Impl_(
::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit constexpr Impl_(::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
@ -315,8 +306,7 @@ class PROTOBUF_EXPORT UInt32Value final : public ::google::protobuf::Message
#endif
template <typename = void>
explicit PROTOBUF_CONSTEXPR UInt32Value(
::google::protobuf::internal::ConstantInitialized);
explicit PROTOBUF_CONSTEXPR UInt32Value(::google::protobuf::internal::ConstantInitialized);
inline UInt32Value(const UInt32Value& from) : UInt32Value(nullptr, from) {}
inline UInt32Value(UInt32Value&& from) noexcept
@ -375,8 +365,7 @@ class PROTOBUF_EXPORT UInt32Value final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
UInt32Value* PROTOBUF_NONNULL
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
UInt32Value* PROTOBUF_NONNULL New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<UInt32Value>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -385,9 +374,8 @@ class PROTOBUF_EXPORT UInt32Value final : public ::google::protobuf::Message
void MergeFrom(const UInt32Value& from) { UInt32Value::MergeImpl(*this, from); }
private:
static void MergeImpl(
::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
@ -398,23 +386,21 @@ class PROTOBUF_EXPORT UInt32Value final : public ::google::protobuf::Message
private:
static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
const MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
public:
::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const {
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
return _InternalSerialize(*this, target, stream);
}
#else // PROTOBUF_CUSTOM_VTABLE
::size_t ByteSizeLong() const final;
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const final;
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
#endif // PROTOBUF_CUSTOM_VTABLE
int GetCachedSize() const { return _impl_._cached_size_.Get(); }
@ -424,16 +410,14 @@ class PROTOBUF_EXPORT UInt32Value final : public ::google::protobuf::Message
void InternalSwap(UInt32Value* PROTOBUF_NONNULL other);
private:
template <typename T>
friend ::absl::string_view(
::google::protobuf::internal::GetAnyMessageName)();
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
static ::absl::string_view FullMessageName() { return "google.protobuf.UInt32Value"; }
protected:
explicit UInt32Value(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
UInt32Value(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const UInt32Value& from);
UInt32Value(
::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
UInt32Value&& from) noexcept
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, UInt32Value&& from) noexcept
: UInt32Value(arena) {
*this = ::std::move(from);
}
@ -467,9 +451,9 @@ class PROTOBUF_EXPORT UInt32Value final : public ::google::protobuf::Message
private:
class _Internal;
friend class ::google::protobuf::internal::TcParser;
static const ::google::protobuf::internal::TcParseTable<
0, 1, 0,
0, 2>
static const ::google::protobuf::internal::TcParseTable<0, 1,
0, 0,
2>
_table_;
friend class ::google::protobuf::MessageLite;
@ -479,8 +463,7 @@ class PROTOBUF_EXPORT UInt32Value final : public ::google::protobuf::Message
using InternalArenaConstructable_ = void;
using DestructorSkippable_ = void;
struct Impl_ {
inline explicit constexpr Impl_(
::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit constexpr Impl_(::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
@ -514,8 +497,7 @@ class PROTOBUF_EXPORT StringValue final : public ::google::protobuf::Message
#endif
template <typename = void>
explicit PROTOBUF_CONSTEXPR StringValue(
::google::protobuf::internal::ConstantInitialized);
explicit PROTOBUF_CONSTEXPR StringValue(::google::protobuf::internal::ConstantInitialized);
inline StringValue(const StringValue& from) : StringValue(nullptr, from) {}
inline StringValue(StringValue&& from) noexcept
@ -574,8 +556,7 @@ class PROTOBUF_EXPORT StringValue final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
StringValue* PROTOBUF_NONNULL
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
StringValue* PROTOBUF_NONNULL New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<StringValue>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -584,9 +565,8 @@ class PROTOBUF_EXPORT StringValue final : public ::google::protobuf::Message
void MergeFrom(const StringValue& from) { StringValue::MergeImpl(*this, from); }
private:
static void MergeImpl(
::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
@ -597,23 +577,21 @@ class PROTOBUF_EXPORT StringValue final : public ::google::protobuf::Message
private:
static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
const MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
public:
::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const {
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
return _InternalSerialize(*this, target, stream);
}
#else // PROTOBUF_CUSTOM_VTABLE
::size_t ByteSizeLong() const final;
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const final;
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
#endif // PROTOBUF_CUSTOM_VTABLE
int GetCachedSize() const { return _impl_._cached_size_.Get(); }
@ -623,16 +601,14 @@ class PROTOBUF_EXPORT StringValue final : public ::google::protobuf::Message
void InternalSwap(StringValue* PROTOBUF_NONNULL other);
private:
template <typename T>
friend ::absl::string_view(
::google::protobuf::internal::GetAnyMessageName)();
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
static ::absl::string_view FullMessageName() { return "google.protobuf.StringValue"; }
protected:
explicit StringValue(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
StringValue(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const StringValue& from);
StringValue(
::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
StringValue&& from) noexcept
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, StringValue&& from) noexcept
: StringValue(arena) {
*this = ::std::move(from);
}
@ -671,9 +647,9 @@ class PROTOBUF_EXPORT StringValue final : public ::google::protobuf::Message
private:
class _Internal;
friend class ::google::protobuf::internal::TcParser;
static const ::google::protobuf::internal::TcParseTable<
0, 1, 0,
41, 2>
static const ::google::protobuf::internal::TcParseTable<0, 1,
0, 41,
2>
_table_;
friend class ::google::protobuf::MessageLite;
@ -683,8 +659,7 @@ class PROTOBUF_EXPORT StringValue final : public ::google::protobuf::Message
using InternalArenaConstructable_ = void;
using DestructorSkippable_ = void;
struct Impl_ {
inline explicit constexpr Impl_(
::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit constexpr Impl_(::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
@ -718,8 +693,7 @@ class PROTOBUF_EXPORT Int64Value final : public ::google::protobuf::Message
#endif
template <typename = void>
explicit PROTOBUF_CONSTEXPR Int64Value(
::google::protobuf::internal::ConstantInitialized);
explicit PROTOBUF_CONSTEXPR Int64Value(::google::protobuf::internal::ConstantInitialized);
inline Int64Value(const Int64Value& from) : Int64Value(nullptr, from) {}
inline Int64Value(Int64Value&& from) noexcept
@ -778,8 +752,7 @@ class PROTOBUF_EXPORT Int64Value final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
Int64Value* PROTOBUF_NONNULL
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
Int64Value* PROTOBUF_NONNULL New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<Int64Value>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -788,9 +761,8 @@ class PROTOBUF_EXPORT Int64Value final : public ::google::protobuf::Message
void MergeFrom(const Int64Value& from) { Int64Value::MergeImpl(*this, from); }
private:
static void MergeImpl(
::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
@ -801,23 +773,21 @@ class PROTOBUF_EXPORT Int64Value final : public ::google::protobuf::Message
private:
static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
const MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
public:
::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const {
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
return _InternalSerialize(*this, target, stream);
}
#else // PROTOBUF_CUSTOM_VTABLE
::size_t ByteSizeLong() const final;
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const final;
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
#endif // PROTOBUF_CUSTOM_VTABLE
int GetCachedSize() const { return _impl_._cached_size_.Get(); }
@ -827,16 +797,14 @@ class PROTOBUF_EXPORT Int64Value final : public ::google::protobuf::Message
void InternalSwap(Int64Value* PROTOBUF_NONNULL other);
private:
template <typename T>
friend ::absl::string_view(
::google::protobuf::internal::GetAnyMessageName)();
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
static ::absl::string_view FullMessageName() { return "google.protobuf.Int64Value"; }
protected:
explicit Int64Value(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
Int64Value(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Int64Value& from);
Int64Value(
::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
Int64Value&& from) noexcept
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, Int64Value&& from) noexcept
: Int64Value(arena) {
*this = ::std::move(from);
}
@ -870,9 +838,9 @@ class PROTOBUF_EXPORT Int64Value final : public ::google::protobuf::Message
private:
class _Internal;
friend class ::google::protobuf::internal::TcParser;
static const ::google::protobuf::internal::TcParseTable<
0, 1, 0,
0, 2>
static const ::google::protobuf::internal::TcParseTable<0, 1,
0, 0,
2>
_table_;
friend class ::google::protobuf::MessageLite;
@ -882,8 +850,7 @@ class PROTOBUF_EXPORT Int64Value final : public ::google::protobuf::Message
using InternalArenaConstructable_ = void;
using DestructorSkippable_ = void;
struct Impl_ {
inline explicit constexpr Impl_(
::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit constexpr Impl_(::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
@ -917,8 +884,7 @@ class PROTOBUF_EXPORT Int32Value final : public ::google::protobuf::Message
#endif
template <typename = void>
explicit PROTOBUF_CONSTEXPR Int32Value(
::google::protobuf::internal::ConstantInitialized);
explicit PROTOBUF_CONSTEXPR Int32Value(::google::protobuf::internal::ConstantInitialized);
inline Int32Value(const Int32Value& from) : Int32Value(nullptr, from) {}
inline Int32Value(Int32Value&& from) noexcept
@ -977,8 +943,7 @@ class PROTOBUF_EXPORT Int32Value final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
Int32Value* PROTOBUF_NONNULL
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
Int32Value* PROTOBUF_NONNULL New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<Int32Value>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -987,9 +952,8 @@ class PROTOBUF_EXPORT Int32Value final : public ::google::protobuf::Message
void MergeFrom(const Int32Value& from) { Int32Value::MergeImpl(*this, from); }
private:
static void MergeImpl(
::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
@ -1000,23 +964,21 @@ class PROTOBUF_EXPORT Int32Value final : public ::google::protobuf::Message
private:
static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
const MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
public:
::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const {
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
return _InternalSerialize(*this, target, stream);
}
#else // PROTOBUF_CUSTOM_VTABLE
::size_t ByteSizeLong() const final;
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const final;
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
#endif // PROTOBUF_CUSTOM_VTABLE
int GetCachedSize() const { return _impl_._cached_size_.Get(); }
@ -1026,16 +988,14 @@ class PROTOBUF_EXPORT Int32Value final : public ::google::protobuf::Message
void InternalSwap(Int32Value* PROTOBUF_NONNULL other);
private:
template <typename T>
friend ::absl::string_view(
::google::protobuf::internal::GetAnyMessageName)();
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
static ::absl::string_view FullMessageName() { return "google.protobuf.Int32Value"; }
protected:
explicit Int32Value(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
Int32Value(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const Int32Value& from);
Int32Value(
::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
Int32Value&& from) noexcept
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, Int32Value&& from) noexcept
: Int32Value(arena) {
*this = ::std::move(from);
}
@ -1069,9 +1029,9 @@ class PROTOBUF_EXPORT Int32Value final : public ::google::protobuf::Message
private:
class _Internal;
friend class ::google::protobuf::internal::TcParser;
static const ::google::protobuf::internal::TcParseTable<
0, 1, 0,
0, 2>
static const ::google::protobuf::internal::TcParseTable<0, 1,
0, 0,
2>
_table_;
friend class ::google::protobuf::MessageLite;
@ -1081,8 +1041,7 @@ class PROTOBUF_EXPORT Int32Value final : public ::google::protobuf::Message
using InternalArenaConstructable_ = void;
using DestructorSkippable_ = void;
struct Impl_ {
inline explicit constexpr Impl_(
::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit constexpr Impl_(::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
@ -1116,8 +1075,7 @@ class PROTOBUF_EXPORT FloatValue final : public ::google::protobuf::Message
#endif
template <typename = void>
explicit PROTOBUF_CONSTEXPR FloatValue(
::google::protobuf::internal::ConstantInitialized);
explicit PROTOBUF_CONSTEXPR FloatValue(::google::protobuf::internal::ConstantInitialized);
inline FloatValue(const FloatValue& from) : FloatValue(nullptr, from) {}
inline FloatValue(FloatValue&& from) noexcept
@ -1176,8 +1134,7 @@ class PROTOBUF_EXPORT FloatValue final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
FloatValue* PROTOBUF_NONNULL
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
FloatValue* PROTOBUF_NONNULL New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<FloatValue>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -1186,9 +1143,8 @@ class PROTOBUF_EXPORT FloatValue final : public ::google::protobuf::Message
void MergeFrom(const FloatValue& from) { FloatValue::MergeImpl(*this, from); }
private:
static void MergeImpl(
::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
@ -1199,23 +1155,21 @@ class PROTOBUF_EXPORT FloatValue final : public ::google::protobuf::Message
private:
static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
const MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
public:
::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const {
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
return _InternalSerialize(*this, target, stream);
}
#else // PROTOBUF_CUSTOM_VTABLE
::size_t ByteSizeLong() const final;
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const final;
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
#endif // PROTOBUF_CUSTOM_VTABLE
int GetCachedSize() const { return _impl_._cached_size_.Get(); }
@ -1225,16 +1179,14 @@ class PROTOBUF_EXPORT FloatValue final : public ::google::protobuf::Message
void InternalSwap(FloatValue* PROTOBUF_NONNULL other);
private:
template <typename T>
friend ::absl::string_view(
::google::protobuf::internal::GetAnyMessageName)();
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
static ::absl::string_view FullMessageName() { return "google.protobuf.FloatValue"; }
protected:
explicit FloatValue(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
FloatValue(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const FloatValue& from);
FloatValue(
::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
FloatValue&& from) noexcept
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, FloatValue&& from) noexcept
: FloatValue(arena) {
*this = ::std::move(from);
}
@ -1268,9 +1220,9 @@ class PROTOBUF_EXPORT FloatValue final : public ::google::protobuf::Message
private:
class _Internal;
friend class ::google::protobuf::internal::TcParser;
static const ::google::protobuf::internal::TcParseTable<
0, 1, 0,
0, 2>
static const ::google::protobuf::internal::TcParseTable<0, 1,
0, 0,
2>
_table_;
friend class ::google::protobuf::MessageLite;
@ -1280,8 +1232,7 @@ class PROTOBUF_EXPORT FloatValue final : public ::google::protobuf::Message
using InternalArenaConstructable_ = void;
using DestructorSkippable_ = void;
struct Impl_ {
inline explicit constexpr Impl_(
::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit constexpr Impl_(::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
@ -1315,8 +1266,7 @@ class PROTOBUF_EXPORT DoubleValue final : public ::google::protobuf::Message
#endif
template <typename = void>
explicit PROTOBUF_CONSTEXPR DoubleValue(
::google::protobuf::internal::ConstantInitialized);
explicit PROTOBUF_CONSTEXPR DoubleValue(::google::protobuf::internal::ConstantInitialized);
inline DoubleValue(const DoubleValue& from) : DoubleValue(nullptr, from) {}
inline DoubleValue(DoubleValue&& from) noexcept
@ -1375,8 +1325,7 @@ class PROTOBUF_EXPORT DoubleValue final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
DoubleValue* PROTOBUF_NONNULL
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
DoubleValue* PROTOBUF_NONNULL New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<DoubleValue>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -1385,9 +1334,8 @@ class PROTOBUF_EXPORT DoubleValue final : public ::google::protobuf::Message
void MergeFrom(const DoubleValue& from) { DoubleValue::MergeImpl(*this, from); }
private:
static void MergeImpl(
::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
@ -1398,23 +1346,21 @@ class PROTOBUF_EXPORT DoubleValue final : public ::google::protobuf::Message
private:
static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
const MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
public:
::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const {
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
return _InternalSerialize(*this, target, stream);
}
#else // PROTOBUF_CUSTOM_VTABLE
::size_t ByteSizeLong() const final;
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const final;
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
#endif // PROTOBUF_CUSTOM_VTABLE
int GetCachedSize() const { return _impl_._cached_size_.Get(); }
@ -1424,16 +1370,14 @@ class PROTOBUF_EXPORT DoubleValue final : public ::google::protobuf::Message
void InternalSwap(DoubleValue* PROTOBUF_NONNULL other);
private:
template <typename T>
friend ::absl::string_view(
::google::protobuf::internal::GetAnyMessageName)();
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
static ::absl::string_view FullMessageName() { return "google.protobuf.DoubleValue"; }
protected:
explicit DoubleValue(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
DoubleValue(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const DoubleValue& from);
DoubleValue(
::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
DoubleValue&& from) noexcept
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, DoubleValue&& from) noexcept
: DoubleValue(arena) {
*this = ::std::move(from);
}
@ -1467,9 +1411,9 @@ class PROTOBUF_EXPORT DoubleValue final : public ::google::protobuf::Message
private:
class _Internal;
friend class ::google::protobuf::internal::TcParser;
static const ::google::protobuf::internal::TcParseTable<
0, 1, 0,
0, 2>
static const ::google::protobuf::internal::TcParseTable<0, 1,
0, 0,
2>
_table_;
friend class ::google::protobuf::MessageLite;
@ -1479,8 +1423,7 @@ class PROTOBUF_EXPORT DoubleValue final : public ::google::protobuf::Message
using InternalArenaConstructable_ = void;
using DestructorSkippable_ = void;
struct Impl_ {
inline explicit constexpr Impl_(
::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit constexpr Impl_(::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
@ -1514,8 +1457,7 @@ class PROTOBUF_EXPORT BytesValue final : public ::google::protobuf::Message
#endif
template <typename = void>
explicit PROTOBUF_CONSTEXPR BytesValue(
::google::protobuf::internal::ConstantInitialized);
explicit PROTOBUF_CONSTEXPR BytesValue(::google::protobuf::internal::ConstantInitialized);
inline BytesValue(const BytesValue& from) : BytesValue(nullptr, from) {}
inline BytesValue(BytesValue&& from) noexcept
@ -1574,8 +1516,7 @@ class PROTOBUF_EXPORT BytesValue final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
BytesValue* PROTOBUF_NONNULL
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
BytesValue* PROTOBUF_NONNULL New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<BytesValue>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -1584,9 +1525,8 @@ class PROTOBUF_EXPORT BytesValue final : public ::google::protobuf::Message
void MergeFrom(const BytesValue& from) { BytesValue::MergeImpl(*this, from); }
private:
static void MergeImpl(
::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
@ -1597,23 +1537,21 @@ class PROTOBUF_EXPORT BytesValue final : public ::google::protobuf::Message
private:
static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
const MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
public:
::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const {
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
return _InternalSerialize(*this, target, stream);
}
#else // PROTOBUF_CUSTOM_VTABLE
::size_t ByteSizeLong() const final;
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const final;
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
#endif // PROTOBUF_CUSTOM_VTABLE
int GetCachedSize() const { return _impl_._cached_size_.Get(); }
@ -1623,16 +1561,14 @@ class PROTOBUF_EXPORT BytesValue final : public ::google::protobuf::Message
void InternalSwap(BytesValue* PROTOBUF_NONNULL other);
private:
template <typename T>
friend ::absl::string_view(
::google::protobuf::internal::GetAnyMessageName)();
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
static ::absl::string_view FullMessageName() { return "google.protobuf.BytesValue"; }
protected:
explicit BytesValue(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
BytesValue(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const BytesValue& from);
BytesValue(
::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
BytesValue&& from) noexcept
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, BytesValue&& from) noexcept
: BytesValue(arena) {
*this = ::std::move(from);
}
@ -1671,9 +1607,9 @@ class PROTOBUF_EXPORT BytesValue final : public ::google::protobuf::Message
private:
class _Internal;
friend class ::google::protobuf::internal::TcParser;
static const ::google::protobuf::internal::TcParseTable<
0, 1, 0,
0, 2>
static const ::google::protobuf::internal::TcParseTable<0, 1,
0, 0,
2>
_table_;
friend class ::google::protobuf::MessageLite;
@ -1683,8 +1619,7 @@ class PROTOBUF_EXPORT BytesValue final : public ::google::protobuf::Message
using InternalArenaConstructable_ = void;
using DestructorSkippable_ = void;
struct Impl_ {
inline explicit constexpr Impl_(
::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit constexpr Impl_(::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
@ -1718,8 +1653,7 @@ class PROTOBUF_EXPORT BoolValue final : public ::google::protobuf::Message
#endif
template <typename = void>
explicit PROTOBUF_CONSTEXPR BoolValue(
::google::protobuf::internal::ConstantInitialized);
explicit PROTOBUF_CONSTEXPR BoolValue(::google::protobuf::internal::ConstantInitialized);
inline BoolValue(const BoolValue& from) : BoolValue(nullptr, from) {}
inline BoolValue(BoolValue&& from) noexcept
@ -1778,8 +1712,7 @@ class PROTOBUF_EXPORT BoolValue final : public ::google::protobuf::Message
// implements Message ----------------------------------------------
BoolValue* PROTOBUF_NONNULL
New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
BoolValue* PROTOBUF_NONNULL New(::google::protobuf::Arena* PROTOBUF_NULLABLE arena = nullptr) const {
return ::google::protobuf::Message::DefaultConstruct<BoolValue>(arena);
}
using ::google::protobuf::Message::CopyFrom;
@ -1788,9 +1721,8 @@ class PROTOBUF_EXPORT BoolValue final : public ::google::protobuf::Message
void MergeFrom(const BoolValue& from) { BoolValue::MergeImpl(*this, from); }
private:
static void MergeImpl(
::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
static void MergeImpl(::google::protobuf::MessageLite& to_msg,
const ::google::protobuf::MessageLite& from_msg);
public:
bool IsInitialized() const {
@ -1801,23 +1733,21 @@ class PROTOBUF_EXPORT BoolValue final : public ::google::protobuf::Message
private:
static ::size_t ByteSizeLong(const ::google::protobuf::MessageLite& msg);
static ::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
const MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
const ::google::protobuf::MessageLite& msg, ::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream);
public:
::size_t ByteSizeLong() const { return ByteSizeLong(*this); }
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const {
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const {
return _InternalSerialize(*this, target, stream);
}
#else // PROTOBUF_CUSTOM_VTABLE
::size_t ByteSizeLong() const final;
::uint8_t* PROTOBUF_NONNULL _InternalSerialize(
::uint8_t* PROTOBUF_NONNULL target,
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL
stream) const final;
::google::protobuf::io::EpsCopyOutputStream* PROTOBUF_NONNULL stream) const final;
#endif // PROTOBUF_CUSTOM_VTABLE
int GetCachedSize() const { return _impl_._cached_size_.Get(); }
@ -1827,16 +1757,14 @@ class PROTOBUF_EXPORT BoolValue final : public ::google::protobuf::Message
void InternalSwap(BoolValue* PROTOBUF_NONNULL other);
private:
template <typename T>
friend ::absl::string_view(
::google::protobuf::internal::GetAnyMessageName)();
friend ::absl::string_view(::google::protobuf::internal::GetAnyMessageName)();
static ::absl::string_view FullMessageName() { return "google.protobuf.BoolValue"; }
protected:
explicit BoolValue(::google::protobuf::Arena* PROTOBUF_NULLABLE arena);
BoolValue(::google::protobuf::Arena* PROTOBUF_NULLABLE arena, const BoolValue& from);
BoolValue(
::google::protobuf::Arena* PROTOBUF_NULLABLE arena,
BoolValue&& from) noexcept
::google::protobuf::Arena* PROTOBUF_NULLABLE arena, BoolValue&& from) noexcept
: BoolValue(arena) {
*this = ::std::move(from);
}
@ -1870,9 +1798,9 @@ class PROTOBUF_EXPORT BoolValue final : public ::google::protobuf::Message
private:
class _Internal;
friend class ::google::protobuf::internal::TcParser;
static const ::google::protobuf::internal::TcParseTable<
0, 1, 0,
0, 2>
static const ::google::protobuf::internal::TcParseTable<0, 1,
0, 0,
2>
_table_;
friend class ::google::protobuf::MessageLite;
@ -1882,8 +1810,7 @@ class PROTOBUF_EXPORT BoolValue final : public ::google::protobuf::Message
using InternalArenaConstructable_ = void;
using DestructorSkippable_ = void;
struct Impl_ {
inline explicit constexpr Impl_(
::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit constexpr Impl_(::google::protobuf::internal::ConstantInitialized) noexcept;
inline explicit Impl_(
::google::protobuf::internal::InternalVisibility visibility,
::google::protobuf::Arena* PROTOBUF_NULLABLE arena);

Loading…
Cancel
Save