|
|
|
@ -437,8 +437,9 @@ Type::Type(const Type& from) |
|
|
|
|
|
|
|
|
|
void Type::SharedCtor() { |
|
|
|
|
name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); |
|
|
|
|
::memset(&source_context_, 0, reinterpret_cast<char*>(&syntax_) - |
|
|
|
|
reinterpret_cast<char*>(&source_context_) + sizeof(syntax_)); |
|
|
|
|
::memset(&source_context_, 0, static_cast<size_t>( |
|
|
|
|
reinterpret_cast<char*>(&syntax_) - |
|
|
|
|
reinterpret_cast<char*>(&source_context_)) + sizeof(syntax_)); |
|
|
|
|
_cached_size_ = 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -514,7 +515,7 @@ bool Type::MergePartialFromCodedStream( |
|
|
|
|
DO_(::google::protobuf::internal::WireFormatLite::ReadString( |
|
|
|
|
input, this->mutable_name())); |
|
|
|
|
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( |
|
|
|
|
this->name().data(), this->name().length(), |
|
|
|
|
this->name().data(), static_cast<int>(this->name().length()), |
|
|
|
|
::google::protobuf::internal::WireFormatLite::PARSE, |
|
|
|
|
"google.protobuf.Type.name")); |
|
|
|
|
} else { |
|
|
|
@ -543,7 +544,7 @@ bool Type::MergePartialFromCodedStream( |
|
|
|
|
input, this->add_oneofs())); |
|
|
|
|
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( |
|
|
|
|
this->oneofs(this->oneofs_size() - 1).data(), |
|
|
|
|
this->oneofs(this->oneofs_size() - 1).length(), |
|
|
|
|
static_cast<int>(this->oneofs(this->oneofs_size() - 1).length()), |
|
|
|
|
::google::protobuf::internal::WireFormatLite::PARSE, |
|
|
|
|
"google.protobuf.Type.oneofs")); |
|
|
|
|
} else { |
|
|
|
@ -621,7 +622,7 @@ void Type::SerializeWithCachedSizes( |
|
|
|
|
// string name = 1;
|
|
|
|
|
if (this->name().size() > 0) { |
|
|
|
|
::google::protobuf::internal::WireFormatLite::VerifyUtf8String( |
|
|
|
|
this->name().data(), this->name().length(), |
|
|
|
|
this->name().data(), static_cast<int>(this->name().length()), |
|
|
|
|
::google::protobuf::internal::WireFormatLite::SERIALIZE, |
|
|
|
|
"google.protobuf.Type.name"); |
|
|
|
|
::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( |
|
|
|
@ -629,15 +630,16 @@ void Type::SerializeWithCachedSizes( |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// repeated .google.protobuf.Field fields = 2;
|
|
|
|
|
for (unsigned int i = 0, n = this->fields_size(); i < n; i++) { |
|
|
|
|
for (unsigned int i = 0, |
|
|
|
|
n = static_cast<unsigned int>(this->fields_size()); i < n; i++) { |
|
|
|
|
::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( |
|
|
|
|
2, this->fields(i), output); |
|
|
|
|
2, this->fields(static_cast<int>(i)), output); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// repeated string oneofs = 3;
|
|
|
|
|
for (int i = 0, n = this->oneofs_size(); i < n; i++) { |
|
|
|
|
::google::protobuf::internal::WireFormatLite::VerifyUtf8String( |
|
|
|
|
this->oneofs(i).data(), this->oneofs(i).length(), |
|
|
|
|
this->oneofs(i).data(), static_cast<int>(this->oneofs(i).length()), |
|
|
|
|
::google::protobuf::internal::WireFormatLite::SERIALIZE, |
|
|
|
|
"google.protobuf.Type.oneofs"); |
|
|
|
|
::google::protobuf::internal::WireFormatLite::WriteString( |
|
|
|
@ -645,9 +647,10 @@ void Type::SerializeWithCachedSizes( |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// repeated .google.protobuf.Option options = 4;
|
|
|
|
|
for (unsigned int i = 0, n = this->options_size(); i < n; i++) { |
|
|
|
|
for (unsigned int i = 0, |
|
|
|
|
n = static_cast<unsigned int>(this->options_size()); i < n; i++) { |
|
|
|
|
::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( |
|
|
|
|
4, this->options(i), output); |
|
|
|
|
4, this->options(static_cast<int>(i)), output); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// .google.protobuf.SourceContext source_context = 5;
|
|
|
|
@ -674,7 +677,7 @@ void Type::SerializeWithCachedSizes( |
|
|
|
|
// string name = 1;
|
|
|
|
|
if (this->name().size() > 0) { |
|
|
|
|
::google::protobuf::internal::WireFormatLite::VerifyUtf8String( |
|
|
|
|
this->name().data(), this->name().length(), |
|
|
|
|
this->name().data(), static_cast<int>(this->name().length()), |
|
|
|
|
::google::protobuf::internal::WireFormatLite::SERIALIZE, |
|
|
|
|
"google.protobuf.Type.name"); |
|
|
|
|
target = |
|
|
|
@ -683,16 +686,17 @@ void Type::SerializeWithCachedSizes( |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// repeated .google.protobuf.Field fields = 2;
|
|
|
|
|
for (unsigned int i = 0, n = this->fields_size(); i < n; i++) { |
|
|
|
|
for (unsigned int i = 0, |
|
|
|
|
n = static_cast<unsigned int>(this->fields_size()); i < n; i++) { |
|
|
|
|
target = ::google::protobuf::internal::WireFormatLite:: |
|
|
|
|
InternalWriteMessageNoVirtualToArray( |
|
|
|
|
2, this->fields(i), deterministic, target); |
|
|
|
|
2, this->fields(static_cast<int>(i)), deterministic, target); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// repeated string oneofs = 3;
|
|
|
|
|
for (int i = 0, n = this->oneofs_size(); i < n; i++) { |
|
|
|
|
::google::protobuf::internal::WireFormatLite::VerifyUtf8String( |
|
|
|
|
this->oneofs(i).data(), this->oneofs(i).length(), |
|
|
|
|
this->oneofs(i).data(), static_cast<int>(this->oneofs(i).length()), |
|
|
|
|
::google::protobuf::internal::WireFormatLite::SERIALIZE, |
|
|
|
|
"google.protobuf.Type.oneofs"); |
|
|
|
|
target = ::google::protobuf::internal::WireFormatLite:: |
|
|
|
@ -700,10 +704,11 @@ void Type::SerializeWithCachedSizes( |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// repeated .google.protobuf.Option options = 4;
|
|
|
|
|
for (unsigned int i = 0, n = this->options_size(); i < n; i++) { |
|
|
|
|
for (unsigned int i = 0, |
|
|
|
|
n = static_cast<unsigned int>(this->options_size()); i < n; i++) { |
|
|
|
|
target = ::google::protobuf::internal::WireFormatLite:: |
|
|
|
|
InternalWriteMessageNoVirtualToArray( |
|
|
|
|
4, this->options(i), deterministic, target); |
|
|
|
|
4, this->options(static_cast<int>(i)), deterministic, target); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// .google.protobuf.SourceContext source_context = 5;
|
|
|
|
@ -729,12 +734,12 @@ size_t Type::ByteSizeLong() const { |
|
|
|
|
|
|
|
|
|
// repeated .google.protobuf.Field fields = 2;
|
|
|
|
|
{ |
|
|
|
|
unsigned int count = this->fields_size(); |
|
|
|
|
unsigned int count = static_cast<unsigned int>(this->fields_size()); |
|
|
|
|
total_size += 1UL * count; |
|
|
|
|
for (unsigned int i = 0; i < count; i++) { |
|
|
|
|
total_size += |
|
|
|
|
::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual( |
|
|
|
|
this->fields(i)); |
|
|
|
|
this->fields(static_cast<int>(i))); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -748,12 +753,12 @@ size_t Type::ByteSizeLong() const { |
|
|
|
|
|
|
|
|
|
// repeated .google.protobuf.Option options = 4;
|
|
|
|
|
{ |
|
|
|
|
unsigned int count = this->options_size(); |
|
|
|
|
unsigned int count = static_cast<unsigned int>(this->options_size()); |
|
|
|
|
total_size += 1UL * count; |
|
|
|
|
for (unsigned int i = 0; i < count; i++) { |
|
|
|
|
total_size += |
|
|
|
|
::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual( |
|
|
|
|
this->options(i)); |
|
|
|
|
this->options(static_cast<int>(i))); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -1199,8 +1204,8 @@ Field::Field(const Field& from) |
|
|
|
|
GetArenaNoVirtual()); |
|
|
|
|
} |
|
|
|
|
::memcpy(&kind_, &from.kind_, |
|
|
|
|
reinterpret_cast<char*>(&packed_) - |
|
|
|
|
reinterpret_cast<char*>(&kind_) + sizeof(packed_)); |
|
|
|
|
static_cast<size_t>(reinterpret_cast<char*>(&packed_) - |
|
|
|
|
reinterpret_cast<char*>(&kind_)) + sizeof(packed_)); |
|
|
|
|
// @@protoc_insertion_point(copy_constructor:google.protobuf.Field)
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -1209,8 +1214,9 @@ void Field::SharedCtor() { |
|
|
|
|
type_url_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); |
|
|
|
|
json_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); |
|
|
|
|
default_value_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); |
|
|
|
|
::memset(&kind_, 0, reinterpret_cast<char*>(&packed_) - |
|
|
|
|
reinterpret_cast<char*>(&kind_) + sizeof(packed_)); |
|
|
|
|
::memset(&kind_, 0, static_cast<size_t>( |
|
|
|
|
reinterpret_cast<char*>(&packed_) - |
|
|
|
|
reinterpret_cast<char*>(&kind_)) + sizeof(packed_)); |
|
|
|
|
_cached_size_ = 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -1263,8 +1269,9 @@ void Field::Clear() { |
|
|
|
|
type_url_.ClearToEmpty(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); |
|
|
|
|
json_name_.ClearToEmpty(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); |
|
|
|
|
default_value_.ClearToEmpty(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); |
|
|
|
|
::memset(&kind_, 0, reinterpret_cast<char*>(&packed_) - |
|
|
|
|
reinterpret_cast<char*>(&kind_) + sizeof(packed_)); |
|
|
|
|
::memset(&kind_, 0, static_cast<size_t>( |
|
|
|
|
reinterpret_cast<char*>(&packed_) - |
|
|
|
|
reinterpret_cast<char*>(&kind_)) + sizeof(packed_)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
bool Field::MergePartialFromCodedStream( |
|
|
|
@ -1328,7 +1335,7 @@ bool Field::MergePartialFromCodedStream( |
|
|
|
|
DO_(::google::protobuf::internal::WireFormatLite::ReadString( |
|
|
|
|
input, this->mutable_name())); |
|
|
|
|
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( |
|
|
|
|
this->name().data(), this->name().length(), |
|
|
|
|
this->name().data(), static_cast<int>(this->name().length()), |
|
|
|
|
::google::protobuf::internal::WireFormatLite::PARSE, |
|
|
|
|
"google.protobuf.Field.name")); |
|
|
|
|
} else { |
|
|
|
@ -1344,7 +1351,7 @@ bool Field::MergePartialFromCodedStream( |
|
|
|
|
DO_(::google::protobuf::internal::WireFormatLite::ReadString( |
|
|
|
|
input, this->mutable_type_url())); |
|
|
|
|
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( |
|
|
|
|
this->type_url().data(), this->type_url().length(), |
|
|
|
|
this->type_url().data(), static_cast<int>(this->type_url().length()), |
|
|
|
|
::google::protobuf::internal::WireFormatLite::PARSE, |
|
|
|
|
"google.protobuf.Field.type_url")); |
|
|
|
|
} else { |
|
|
|
@ -1400,7 +1407,7 @@ bool Field::MergePartialFromCodedStream( |
|
|
|
|
DO_(::google::protobuf::internal::WireFormatLite::ReadString( |
|
|
|
|
input, this->mutable_json_name())); |
|
|
|
|
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( |
|
|
|
|
this->json_name().data(), this->json_name().length(), |
|
|
|
|
this->json_name().data(), static_cast<int>(this->json_name().length()), |
|
|
|
|
::google::protobuf::internal::WireFormatLite::PARSE, |
|
|
|
|
"google.protobuf.Field.json_name")); |
|
|
|
|
} else { |
|
|
|
@ -1416,7 +1423,7 @@ bool Field::MergePartialFromCodedStream( |
|
|
|
|
DO_(::google::protobuf::internal::WireFormatLite::ReadString( |
|
|
|
|
input, this->mutable_default_value())); |
|
|
|
|
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( |
|
|
|
|
this->default_value().data(), this->default_value().length(), |
|
|
|
|
this->default_value().data(), static_cast<int>(this->default_value().length()), |
|
|
|
|
::google::protobuf::internal::WireFormatLite::PARSE, |
|
|
|
|
"google.protobuf.Field.default_value")); |
|
|
|
|
} else { |
|
|
|
@ -1472,7 +1479,7 @@ void Field::SerializeWithCachedSizes( |
|
|
|
|
// string name = 4;
|
|
|
|
|
if (this->name().size() > 0) { |
|
|
|
|
::google::protobuf::internal::WireFormatLite::VerifyUtf8String( |
|
|
|
|
this->name().data(), this->name().length(), |
|
|
|
|
this->name().data(), static_cast<int>(this->name().length()), |
|
|
|
|
::google::protobuf::internal::WireFormatLite::SERIALIZE, |
|
|
|
|
"google.protobuf.Field.name"); |
|
|
|
|
::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( |
|
|
|
@ -1482,7 +1489,7 @@ void Field::SerializeWithCachedSizes( |
|
|
|
|
// string type_url = 6;
|
|
|
|
|
if (this->type_url().size() > 0) { |
|
|
|
|
::google::protobuf::internal::WireFormatLite::VerifyUtf8String( |
|
|
|
|
this->type_url().data(), this->type_url().length(), |
|
|
|
|
this->type_url().data(), static_cast<int>(this->type_url().length()), |
|
|
|
|
::google::protobuf::internal::WireFormatLite::SERIALIZE, |
|
|
|
|
"google.protobuf.Field.type_url"); |
|
|
|
|
::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( |
|
|
|
@ -1500,15 +1507,16 @@ void Field::SerializeWithCachedSizes( |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// repeated .google.protobuf.Option options = 9;
|
|
|
|
|
for (unsigned int i = 0, n = this->options_size(); i < n; i++) { |
|
|
|
|
for (unsigned int i = 0, |
|
|
|
|
n = static_cast<unsigned int>(this->options_size()); i < n; i++) { |
|
|
|
|
::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( |
|
|
|
|
9, this->options(i), output); |
|
|
|
|
9, this->options(static_cast<int>(i)), output); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// string json_name = 10;
|
|
|
|
|
if (this->json_name().size() > 0) { |
|
|
|
|
::google::protobuf::internal::WireFormatLite::VerifyUtf8String( |
|
|
|
|
this->json_name().data(), this->json_name().length(), |
|
|
|
|
this->json_name().data(), static_cast<int>(this->json_name().length()), |
|
|
|
|
::google::protobuf::internal::WireFormatLite::SERIALIZE, |
|
|
|
|
"google.protobuf.Field.json_name"); |
|
|
|
|
::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( |
|
|
|
@ -1518,7 +1526,7 @@ void Field::SerializeWithCachedSizes( |
|
|
|
|
// string default_value = 11;
|
|
|
|
|
if (this->default_value().size() > 0) { |
|
|
|
|
::google::protobuf::internal::WireFormatLite::VerifyUtf8String( |
|
|
|
|
this->default_value().data(), this->default_value().length(), |
|
|
|
|
this->default_value().data(), static_cast<int>(this->default_value().length()), |
|
|
|
|
::google::protobuf::internal::WireFormatLite::SERIALIZE, |
|
|
|
|
"google.protobuf.Field.default_value"); |
|
|
|
|
::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( |
|
|
|
@ -1554,7 +1562,7 @@ void Field::SerializeWithCachedSizes( |
|
|
|
|
// string name = 4;
|
|
|
|
|
if (this->name().size() > 0) { |
|
|
|
|
::google::protobuf::internal::WireFormatLite::VerifyUtf8String( |
|
|
|
|
this->name().data(), this->name().length(), |
|
|
|
|
this->name().data(), static_cast<int>(this->name().length()), |
|
|
|
|
::google::protobuf::internal::WireFormatLite::SERIALIZE, |
|
|
|
|
"google.protobuf.Field.name"); |
|
|
|
|
target = |
|
|
|
@ -1565,7 +1573,7 @@ void Field::SerializeWithCachedSizes( |
|
|
|
|
// string type_url = 6;
|
|
|
|
|
if (this->type_url().size() > 0) { |
|
|
|
|
::google::protobuf::internal::WireFormatLite::VerifyUtf8String( |
|
|
|
|
this->type_url().data(), this->type_url().length(), |
|
|
|
|
this->type_url().data(), static_cast<int>(this->type_url().length()), |
|
|
|
|
::google::protobuf::internal::WireFormatLite::SERIALIZE, |
|
|
|
|
"google.protobuf.Field.type_url"); |
|
|
|
|
target = |
|
|
|
@ -1584,16 +1592,17 @@ void Field::SerializeWithCachedSizes( |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// repeated .google.protobuf.Option options = 9;
|
|
|
|
|
for (unsigned int i = 0, n = this->options_size(); i < n; i++) { |
|
|
|
|
for (unsigned int i = 0, |
|
|
|
|
n = static_cast<unsigned int>(this->options_size()); i < n; i++) { |
|
|
|
|
target = ::google::protobuf::internal::WireFormatLite:: |
|
|
|
|
InternalWriteMessageNoVirtualToArray( |
|
|
|
|
9, this->options(i), deterministic, target); |
|
|
|
|
9, this->options(static_cast<int>(i)), deterministic, target); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// string json_name = 10;
|
|
|
|
|
if (this->json_name().size() > 0) { |
|
|
|
|
::google::protobuf::internal::WireFormatLite::VerifyUtf8String( |
|
|
|
|
this->json_name().data(), this->json_name().length(), |
|
|
|
|
this->json_name().data(), static_cast<int>(this->json_name().length()), |
|
|
|
|
::google::protobuf::internal::WireFormatLite::SERIALIZE, |
|
|
|
|
"google.protobuf.Field.json_name"); |
|
|
|
|
target = |
|
|
|
@ -1604,7 +1613,7 @@ void Field::SerializeWithCachedSizes( |
|
|
|
|
// string default_value = 11;
|
|
|
|
|
if (this->default_value().size() > 0) { |
|
|
|
|
::google::protobuf::internal::WireFormatLite::VerifyUtf8String( |
|
|
|
|
this->default_value().data(), this->default_value().length(), |
|
|
|
|
this->default_value().data(), static_cast<int>(this->default_value().length()), |
|
|
|
|
::google::protobuf::internal::WireFormatLite::SERIALIZE, |
|
|
|
|
"google.protobuf.Field.default_value"); |
|
|
|
|
target = |
|
|
|
@ -1622,12 +1631,12 @@ size_t Field::ByteSizeLong() const { |
|
|
|
|
|
|
|
|
|
// repeated .google.protobuf.Option options = 9;
|
|
|
|
|
{ |
|
|
|
|
unsigned int count = this->options_size(); |
|
|
|
|
unsigned int count = static_cast<unsigned int>(this->options_size()); |
|
|
|
|
total_size += 1UL * count; |
|
|
|
|
for (unsigned int i = 0; i < count; i++) { |
|
|
|
|
total_size += |
|
|
|
|
::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual( |
|
|
|
|
this->options(i)); |
|
|
|
|
this->options(static_cast<int>(i))); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -2264,8 +2273,9 @@ Enum::Enum(const Enum& from) |
|
|
|
|
|
|
|
|
|
void Enum::SharedCtor() { |
|
|
|
|
name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); |
|
|
|
|
::memset(&source_context_, 0, reinterpret_cast<char*>(&syntax_) - |
|
|
|
|
reinterpret_cast<char*>(&source_context_) + sizeof(syntax_)); |
|
|
|
|
::memset(&source_context_, 0, static_cast<size_t>( |
|
|
|
|
reinterpret_cast<char*>(&syntax_) - |
|
|
|
|
reinterpret_cast<char*>(&source_context_)) + sizeof(syntax_)); |
|
|
|
|
_cached_size_ = 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -2340,7 +2350,7 @@ bool Enum::MergePartialFromCodedStream( |
|
|
|
|
DO_(::google::protobuf::internal::WireFormatLite::ReadString( |
|
|
|
|
input, this->mutable_name())); |
|
|
|
|
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( |
|
|
|
|
this->name().data(), this->name().length(), |
|
|
|
|
this->name().data(), static_cast<int>(this->name().length()), |
|
|
|
|
::google::protobuf::internal::WireFormatLite::PARSE, |
|
|
|
|
"google.protobuf.Enum.name")); |
|
|
|
|
} else { |
|
|
|
@ -2430,7 +2440,7 @@ void Enum::SerializeWithCachedSizes( |
|
|
|
|
// string name = 1;
|
|
|
|
|
if (this->name().size() > 0) { |
|
|
|
|
::google::protobuf::internal::WireFormatLite::VerifyUtf8String( |
|
|
|
|
this->name().data(), this->name().length(), |
|
|
|
|
this->name().data(), static_cast<int>(this->name().length()), |
|
|
|
|
::google::protobuf::internal::WireFormatLite::SERIALIZE, |
|
|
|
|
"google.protobuf.Enum.name"); |
|
|
|
|
::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( |
|
|
|
@ -2438,15 +2448,17 @@ void Enum::SerializeWithCachedSizes( |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// repeated .google.protobuf.EnumValue enumvalue = 2;
|
|
|
|
|
for (unsigned int i = 0, n = this->enumvalue_size(); i < n; i++) { |
|
|
|
|
for (unsigned int i = 0, |
|
|
|
|
n = static_cast<unsigned int>(this->enumvalue_size()); i < n; i++) { |
|
|
|
|
::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( |
|
|
|
|
2, this->enumvalue(i), output); |
|
|
|
|
2, this->enumvalue(static_cast<int>(i)), output); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// repeated .google.protobuf.Option options = 3;
|
|
|
|
|
for (unsigned int i = 0, n = this->options_size(); i < n; i++) { |
|
|
|
|
for (unsigned int i = 0, |
|
|
|
|
n = static_cast<unsigned int>(this->options_size()); i < n; i++) { |
|
|
|
|
::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( |
|
|
|
|
3, this->options(i), output); |
|
|
|
|
3, this->options(static_cast<int>(i)), output); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// .google.protobuf.SourceContext source_context = 4;
|
|
|
|
@ -2473,7 +2485,7 @@ void Enum::SerializeWithCachedSizes( |
|
|
|
|
// string name = 1;
|
|
|
|
|
if (this->name().size() > 0) { |
|
|
|
|
::google::protobuf::internal::WireFormatLite::VerifyUtf8String( |
|
|
|
|
this->name().data(), this->name().length(), |
|
|
|
|
this->name().data(), static_cast<int>(this->name().length()), |
|
|
|
|
::google::protobuf::internal::WireFormatLite::SERIALIZE, |
|
|
|
|
"google.protobuf.Enum.name"); |
|
|
|
|
target = |
|
|
|
@ -2482,17 +2494,19 @@ void Enum::SerializeWithCachedSizes( |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// repeated .google.protobuf.EnumValue enumvalue = 2;
|
|
|
|
|
for (unsigned int i = 0, n = this->enumvalue_size(); i < n; i++) { |
|
|
|
|
for (unsigned int i = 0, |
|
|
|
|
n = static_cast<unsigned int>(this->enumvalue_size()); i < n; i++) { |
|
|
|
|
target = ::google::protobuf::internal::WireFormatLite:: |
|
|
|
|
InternalWriteMessageNoVirtualToArray( |
|
|
|
|
2, this->enumvalue(i), deterministic, target); |
|
|
|
|
2, this->enumvalue(static_cast<int>(i)), deterministic, target); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// repeated .google.protobuf.Option options = 3;
|
|
|
|
|
for (unsigned int i = 0, n = this->options_size(); i < n; i++) { |
|
|
|
|
for (unsigned int i = 0, |
|
|
|
|
n = static_cast<unsigned int>(this->options_size()); i < n; i++) { |
|
|
|
|
target = ::google::protobuf::internal::WireFormatLite:: |
|
|
|
|
InternalWriteMessageNoVirtualToArray( |
|
|
|
|
3, this->options(i), deterministic, target); |
|
|
|
|
3, this->options(static_cast<int>(i)), deterministic, target); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// .google.protobuf.SourceContext source_context = 4;
|
|
|
|
@ -2518,23 +2532,23 @@ size_t Enum::ByteSizeLong() const { |
|
|
|
|
|
|
|
|
|
// repeated .google.protobuf.EnumValue enumvalue = 2;
|
|
|
|
|
{ |
|
|
|
|
unsigned int count = this->enumvalue_size(); |
|
|
|
|
unsigned int count = static_cast<unsigned int>(this->enumvalue_size()); |
|
|
|
|
total_size += 1UL * count; |
|
|
|
|
for (unsigned int i = 0; i < count; i++) { |
|
|
|
|
total_size += |
|
|
|
|
::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual( |
|
|
|
|
this->enumvalue(i)); |
|
|
|
|
this->enumvalue(static_cast<int>(i))); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// repeated .google.protobuf.Option options = 3;
|
|
|
|
|
{ |
|
|
|
|
unsigned int count = this->options_size(); |
|
|
|
|
unsigned int count = static_cast<unsigned int>(this->options_size()); |
|
|
|
|
total_size += 1UL * count; |
|
|
|
|
for (unsigned int i = 0; i < count; i++) { |
|
|
|
|
total_size += |
|
|
|
|
::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual( |
|
|
|
|
this->options(i)); |
|
|
|
|
this->options(static_cast<int>(i))); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -2959,7 +2973,7 @@ bool EnumValue::MergePartialFromCodedStream( |
|
|
|
|
DO_(::google::protobuf::internal::WireFormatLite::ReadString( |
|
|
|
|
input, this->mutable_name())); |
|
|
|
|
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( |
|
|
|
|
this->name().data(), this->name().length(), |
|
|
|
|
this->name().data(), static_cast<int>(this->name().length()), |
|
|
|
|
::google::protobuf::internal::WireFormatLite::PARSE, |
|
|
|
|
"google.protobuf.EnumValue.name")); |
|
|
|
|
} else { |
|
|
|
@ -3024,7 +3038,7 @@ void EnumValue::SerializeWithCachedSizes( |
|
|
|
|
// string name = 1;
|
|
|
|
|
if (this->name().size() > 0) { |
|
|
|
|
::google::protobuf::internal::WireFormatLite::VerifyUtf8String( |
|
|
|
|
this->name().data(), this->name().length(), |
|
|
|
|
this->name().data(), static_cast<int>(this->name().length()), |
|
|
|
|
::google::protobuf::internal::WireFormatLite::SERIALIZE, |
|
|
|
|
"google.protobuf.EnumValue.name"); |
|
|
|
|
::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( |
|
|
|
@ -3037,9 +3051,10 @@ void EnumValue::SerializeWithCachedSizes( |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// repeated .google.protobuf.Option options = 3;
|
|
|
|
|
for (unsigned int i = 0, n = this->options_size(); i < n; i++) { |
|
|
|
|
for (unsigned int i = 0, |
|
|
|
|
n = static_cast<unsigned int>(this->options_size()); i < n; i++) { |
|
|
|
|
::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( |
|
|
|
|
3, this->options(i), output); |
|
|
|
|
3, this->options(static_cast<int>(i)), output); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// @@protoc_insertion_point(serialize_end:google.protobuf.EnumValue)
|
|
|
|
@ -3054,7 +3069,7 @@ void EnumValue::SerializeWithCachedSizes( |
|
|
|
|
// string name = 1;
|
|
|
|
|
if (this->name().size() > 0) { |
|
|
|
|
::google::protobuf::internal::WireFormatLite::VerifyUtf8String( |
|
|
|
|
this->name().data(), this->name().length(), |
|
|
|
|
this->name().data(), static_cast<int>(this->name().length()), |
|
|
|
|
::google::protobuf::internal::WireFormatLite::SERIALIZE, |
|
|
|
|
"google.protobuf.EnumValue.name"); |
|
|
|
|
target = |
|
|
|
@ -3068,10 +3083,11 @@ void EnumValue::SerializeWithCachedSizes( |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// repeated .google.protobuf.Option options = 3;
|
|
|
|
|
for (unsigned int i = 0, n = this->options_size(); i < n; i++) { |
|
|
|
|
for (unsigned int i = 0, |
|
|
|
|
n = static_cast<unsigned int>(this->options_size()); i < n; i++) { |
|
|
|
|
target = ::google::protobuf::internal::WireFormatLite:: |
|
|
|
|
InternalWriteMessageNoVirtualToArray( |
|
|
|
|
3, this->options(i), deterministic, target); |
|
|
|
|
3, this->options(static_cast<int>(i)), deterministic, target); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// @@protoc_insertion_point(serialize_to_array_end:google.protobuf.EnumValue)
|
|
|
|
@ -3084,12 +3100,12 @@ size_t EnumValue::ByteSizeLong() const { |
|
|
|
|
|
|
|
|
|
// repeated .google.protobuf.Option options = 3;
|
|
|
|
|
{ |
|
|
|
|
unsigned int count = this->options_size(); |
|
|
|
|
unsigned int count = static_cast<unsigned int>(this->options_size()); |
|
|
|
|
total_size += 1UL * count; |
|
|
|
|
for (unsigned int i = 0; i < count; i++) { |
|
|
|
|
total_size += |
|
|
|
|
::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual( |
|
|
|
|
this->options(i)); |
|
|
|
|
this->options(static_cast<int>(i))); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -3460,7 +3476,7 @@ bool Option::MergePartialFromCodedStream( |
|
|
|
|
DO_(::google::protobuf::internal::WireFormatLite::ReadString( |
|
|
|
|
input, this->mutable_name())); |
|
|
|
|
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( |
|
|
|
|
this->name().data(), this->name().length(), |
|
|
|
|
this->name().data(), static_cast<int>(this->name().length()), |
|
|
|
|
::google::protobuf::internal::WireFormatLite::PARSE, |
|
|
|
|
"google.protobuf.Option.name")); |
|
|
|
|
} else { |
|
|
|
@ -3511,7 +3527,7 @@ void Option::SerializeWithCachedSizes( |
|
|
|
|
// string name = 1;
|
|
|
|
|
if (this->name().size() > 0) { |
|
|
|
|
::google::protobuf::internal::WireFormatLite::VerifyUtf8String( |
|
|
|
|
this->name().data(), this->name().length(), |
|
|
|
|
this->name().data(), static_cast<int>(this->name().length()), |
|
|
|
|
::google::protobuf::internal::WireFormatLite::SERIALIZE, |
|
|
|
|
"google.protobuf.Option.name"); |
|
|
|
|
::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( |
|
|
|
@ -3536,7 +3552,7 @@ void Option::SerializeWithCachedSizes( |
|
|
|
|
// string name = 1;
|
|
|
|
|
if (this->name().size() > 0) { |
|
|
|
|
::google::protobuf::internal::WireFormatLite::VerifyUtf8String( |
|
|
|
|
this->name().data(), this->name().length(), |
|
|
|
|
this->name().data(), static_cast<int>(this->name().length()), |
|
|
|
|
::google::protobuf::internal::WireFormatLite::SERIALIZE, |
|
|
|
|
"google.protobuf.Option.name"); |
|
|
|
|
target = |
|
|
|
|