123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024 |
- // Generated by the protocol buffer compiler. DO NOT EDIT!
- // source: google/protobuf/unittest_no_field_presence.proto
- #ifndef PROTOBUF_INCLUDED_google_2fprotobuf_2funittest_5fno_5ffield_5fpresence_2eproto
- #define PROTOBUF_INCLUDED_google_2fprotobuf_2funittest_5fno_5ffield_5fpresence_2eproto
- #include <string>
- #include <google/protobuf/stubs/common.h>
- #if GOOGLE_PROTOBUF_VERSION < 3006001
- #error This file was generated by a newer version of protoc which is
- #error incompatible with your Protocol Buffer headers. Please update
- #error your headers.
- #endif
- #if 3006001 < GOOGLE_PROTOBUF_MIN_PROTOC_VERSION
- #error This file was generated by an older version of protoc which is
- #error incompatible with your Protocol Buffer headers. Please
- #error regenerate this file with a newer version of protoc.
- #endif
- #include <google/protobuf/io/coded_stream.h>
- #include <google/protobuf/arena.h>
- #include <google/protobuf/arenastring.h>
- #include <google/protobuf/generated_message_table_driven.h>
- #include <google/protobuf/generated_message_util.h>
- #include <google/protobuf/inlined_string_field.h>
- #include <google/protobuf/metadata.h>
- #include <google/protobuf/message.h>
- #include <google/protobuf/repeated_field.h> // IWYU pragma: export
- #include <google/protobuf/extension_set.h> // IWYU pragma: export
- #include <google/protobuf/generated_enum_reflection.h>
- #include <google/protobuf/unknown_field_set.h>
- #include <google/protobuf/unittest.pb.h>
- // @@protoc_insertion_point(includes)
- #define PROTOBUF_INTERNAL_EXPORT_protobuf_google_2fprotobuf_2funittest_5fno_5ffield_5fpresence_2eproto
- namespace protobuf_google_2fprotobuf_2funittest_5fno_5ffield_5fpresence_2eproto {
- // Internal implementation detail -- do not use these members.
- struct TableStruct {
- static const ::google::protobuf::internal::ParseTableField entries[];
- static const ::google::protobuf::internal::AuxillaryParseTableField aux[];
- static const ::google::protobuf::internal::ParseTable schema[4];
- static const ::google::protobuf::internal::FieldMetadata field_metadata[];
- static const ::google::protobuf::internal::SerializationTable serialization_table[];
- static const ::google::protobuf::uint32 offsets[];
- };
- void AddDescriptors();
- } // namespace protobuf_google_2fprotobuf_2funittest_5fno_5ffield_5fpresence_2eproto
- namespace proto2_nofieldpresence_unittest {
- class ForeignMessage;
- class ForeignMessageDefaultTypeInternal;
- extern ForeignMessageDefaultTypeInternal _ForeignMessage_default_instance_;
- class TestAllTypes;
- class TestAllTypesDefaultTypeInternal;
- extern TestAllTypesDefaultTypeInternal _TestAllTypes_default_instance_;
- class TestAllTypes_NestedMessage;
- class TestAllTypes_NestedMessageDefaultTypeInternal;
- extern TestAllTypes_NestedMessageDefaultTypeInternal _TestAllTypes_NestedMessage_default_instance_;
- class TestProto2Required;
- class TestProto2RequiredDefaultTypeInternal;
- extern TestProto2RequiredDefaultTypeInternal _TestProto2Required_default_instance_;
- } // namespace proto2_nofieldpresence_unittest
- namespace google {
- namespace protobuf {
- template<> ::proto2_nofieldpresence_unittest::ForeignMessage* Arena::CreateMaybeMessage<::proto2_nofieldpresence_unittest::ForeignMessage>(Arena*);
- template<> ::proto2_nofieldpresence_unittest::TestAllTypes* Arena::CreateMaybeMessage<::proto2_nofieldpresence_unittest::TestAllTypes>(Arena*);
- template<> ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* Arena::CreateMaybeMessage<::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage>(Arena*);
- template<> ::proto2_nofieldpresence_unittest::TestProto2Required* Arena::CreateMaybeMessage<::proto2_nofieldpresence_unittest::TestProto2Required>(Arena*);
- } // namespace protobuf
- } // namespace google
- namespace proto2_nofieldpresence_unittest {
- enum TestAllTypes_NestedEnum {
- TestAllTypes_NestedEnum_FOO = 0,
- TestAllTypes_NestedEnum_BAR = 1,
- TestAllTypes_NestedEnum_BAZ = 2,
- TestAllTypes_NestedEnum_TestAllTypes_NestedEnum_INT_MIN_SENTINEL_DO_NOT_USE_ = ::google::protobuf::kint32min,
- TestAllTypes_NestedEnum_TestAllTypes_NestedEnum_INT_MAX_SENTINEL_DO_NOT_USE_ = ::google::protobuf::kint32max
- };
- bool TestAllTypes_NestedEnum_IsValid(int value);
- const TestAllTypes_NestedEnum TestAllTypes_NestedEnum_NestedEnum_MIN = TestAllTypes_NestedEnum_FOO;
- const TestAllTypes_NestedEnum TestAllTypes_NestedEnum_NestedEnum_MAX = TestAllTypes_NestedEnum_BAZ;
- const int TestAllTypes_NestedEnum_NestedEnum_ARRAYSIZE = TestAllTypes_NestedEnum_NestedEnum_MAX + 1;
- const ::google::protobuf::EnumDescriptor* TestAllTypes_NestedEnum_descriptor();
- inline const ::std::string& TestAllTypes_NestedEnum_Name(TestAllTypes_NestedEnum value) {
- return ::google::protobuf::internal::NameOfEnum(
- TestAllTypes_NestedEnum_descriptor(), value);
- }
- inline bool TestAllTypes_NestedEnum_Parse(
- const ::std::string& name, TestAllTypes_NestedEnum* value) {
- return ::google::protobuf::internal::ParseNamedEnum<TestAllTypes_NestedEnum>(
- TestAllTypes_NestedEnum_descriptor(), name, value);
- }
- enum ForeignEnum {
- FOREIGN_FOO = 0,
- FOREIGN_BAR = 1,
- FOREIGN_BAZ = 2,
- ForeignEnum_INT_MIN_SENTINEL_DO_NOT_USE_ = ::google::protobuf::kint32min,
- ForeignEnum_INT_MAX_SENTINEL_DO_NOT_USE_ = ::google::protobuf::kint32max
- };
- bool ForeignEnum_IsValid(int value);
- const ForeignEnum ForeignEnum_MIN = FOREIGN_FOO;
- const ForeignEnum ForeignEnum_MAX = FOREIGN_BAZ;
- const int ForeignEnum_ARRAYSIZE = ForeignEnum_MAX + 1;
- const ::google::protobuf::EnumDescriptor* ForeignEnum_descriptor();
- inline const ::std::string& ForeignEnum_Name(ForeignEnum value) {
- return ::google::protobuf::internal::NameOfEnum(
- ForeignEnum_descriptor(), value);
- }
- inline bool ForeignEnum_Parse(
- const ::std::string& name, ForeignEnum* value) {
- return ::google::protobuf::internal::ParseNamedEnum<ForeignEnum>(
- ForeignEnum_descriptor(), name, value);
- }
- // ===================================================================
- class TestAllTypes_NestedMessage : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:proto2_nofieldpresence_unittest.TestAllTypes.NestedMessage) */ {
- public:
- TestAllTypes_NestedMessage();
- virtual ~TestAllTypes_NestedMessage();
- TestAllTypes_NestedMessage(const TestAllTypes_NestedMessage& from);
- inline TestAllTypes_NestedMessage& operator=(const TestAllTypes_NestedMessage& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- TestAllTypes_NestedMessage(TestAllTypes_NestedMessage&& from) noexcept
- : TestAllTypes_NestedMessage() {
- *this = ::std::move(from);
- }
- inline TestAllTypes_NestedMessage& operator=(TestAllTypes_NestedMessage&& from) noexcept {
- if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
- if (this != &from) InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- #endif
- static const ::google::protobuf::Descriptor* descriptor();
- static const TestAllTypes_NestedMessage& default_instance();
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const TestAllTypes_NestedMessage* internal_default_instance() {
- return reinterpret_cast<const TestAllTypes_NestedMessage*>(
- &_TestAllTypes_NestedMessage_default_instance_);
- }
- static constexpr int kIndexInFileMessages =
- 0;
- void Swap(TestAllTypes_NestedMessage* other);
- friend void swap(TestAllTypes_NestedMessage& a, TestAllTypes_NestedMessage& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline TestAllTypes_NestedMessage* New() const final {
- return CreateMaybeMessage<TestAllTypes_NestedMessage>(NULL);
- }
- TestAllTypes_NestedMessage* New(::google::protobuf::Arena* arena) const final {
- return CreateMaybeMessage<TestAllTypes_NestedMessage>(arena);
- }
- void CopyFrom(const ::google::protobuf::Message& from) final;
- void MergeFrom(const ::google::protobuf::Message& from) final;
- void CopyFrom(const TestAllTypes_NestedMessage& from);
- void MergeFrom(const TestAllTypes_NestedMessage& from);
- void Clear() final;
- bool IsInitialized() const final;
- size_t ByteSizeLong() const final;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) final;
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const final;
- ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const final;
- int GetCachedSize() const final { return _cached_size_.Get(); }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const final;
- void InternalSwap(TestAllTypes_NestedMessage* other);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return NULL;
- }
- inline void* MaybeArenaPtr() const {
- return NULL;
- }
- public:
- ::google::protobuf::Metadata GetMetadata() const final;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // int32 bb = 1;
- void clear_bb();
- static const int kBbFieldNumber = 1;
- ::google::protobuf::int32 bb() const;
- void set_bb(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:proto2_nofieldpresence_unittest.TestAllTypes.NestedMessage)
- private:
- ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
- ::google::protobuf::int32 bb_;
- mutable ::google::protobuf::internal::CachedSize _cached_size_;
- friend struct ::protobuf_google_2fprotobuf_2funittest_5fno_5ffield_5fpresence_2eproto::TableStruct;
- };
- // -------------------------------------------------------------------
- class TestAllTypes : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:proto2_nofieldpresence_unittest.TestAllTypes) */ {
- public:
- TestAllTypes();
- virtual ~TestAllTypes();
- TestAllTypes(const TestAllTypes& from);
- inline TestAllTypes& operator=(const TestAllTypes& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- TestAllTypes(TestAllTypes&& from) noexcept
- : TestAllTypes() {
- *this = ::std::move(from);
- }
- inline TestAllTypes& operator=(TestAllTypes&& from) noexcept {
- if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
- if (this != &from) InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- #endif
- static const ::google::protobuf::Descriptor* descriptor();
- static const TestAllTypes& default_instance();
- enum OneofFieldCase {
- kOneofUint32 = 111,
- kOneofNestedMessage = 112,
- kOneofString = 113,
- kOneofEnum = 114,
- ONEOF_FIELD_NOT_SET = 0,
- };
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const TestAllTypes* internal_default_instance() {
- return reinterpret_cast<const TestAllTypes*>(
- &_TestAllTypes_default_instance_);
- }
- static constexpr int kIndexInFileMessages =
- 1;
- void Swap(TestAllTypes* other);
- friend void swap(TestAllTypes& a, TestAllTypes& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline TestAllTypes* New() const final {
- return CreateMaybeMessage<TestAllTypes>(NULL);
- }
- TestAllTypes* New(::google::protobuf::Arena* arena) const final {
- return CreateMaybeMessage<TestAllTypes>(arena);
- }
- void CopyFrom(const ::google::protobuf::Message& from) final;
- void MergeFrom(const ::google::protobuf::Message& from) final;
- void CopyFrom(const TestAllTypes& from);
- void MergeFrom(const TestAllTypes& from);
- void Clear() final;
- bool IsInitialized() const final;
- size_t ByteSizeLong() const final;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) final;
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const final;
- ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const final;
- int GetCachedSize() const final { return _cached_size_.Get(); }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const final;
- void InternalSwap(TestAllTypes* other);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return NULL;
- }
- inline void* MaybeArenaPtr() const {
- return NULL;
- }
- public:
- ::google::protobuf::Metadata GetMetadata() const final;
- // nested types ----------------------------------------------------
- typedef TestAllTypes_NestedMessage NestedMessage;
- typedef TestAllTypes_NestedEnum NestedEnum;
- static const NestedEnum FOO =
- TestAllTypes_NestedEnum_FOO;
- static const NestedEnum BAR =
- TestAllTypes_NestedEnum_BAR;
- static const NestedEnum BAZ =
- TestAllTypes_NestedEnum_BAZ;
- static inline bool NestedEnum_IsValid(int value) {
- return TestAllTypes_NestedEnum_IsValid(value);
- }
- static const NestedEnum NestedEnum_MIN =
- TestAllTypes_NestedEnum_NestedEnum_MIN;
- static const NestedEnum NestedEnum_MAX =
- TestAllTypes_NestedEnum_NestedEnum_MAX;
- static const int NestedEnum_ARRAYSIZE =
- TestAllTypes_NestedEnum_NestedEnum_ARRAYSIZE;
- static inline const ::google::protobuf::EnumDescriptor*
- NestedEnum_descriptor() {
- return TestAllTypes_NestedEnum_descriptor();
- }
- static inline const ::std::string& NestedEnum_Name(NestedEnum value) {
- return TestAllTypes_NestedEnum_Name(value);
- }
- static inline bool NestedEnum_Parse(const ::std::string& name,
- NestedEnum* value) {
- return TestAllTypes_NestedEnum_Parse(name, value);
- }
- // accessors -------------------------------------------------------
- // repeated int32 repeated_int32 = 31;
- int repeated_int32_size() const;
- void clear_repeated_int32();
- static const int kRepeatedInt32FieldNumber = 31;
- ::google::protobuf::int32 repeated_int32(int index) const;
- void set_repeated_int32(int index, ::google::protobuf::int32 value);
- void add_repeated_int32(::google::protobuf::int32 value);
- const ::google::protobuf::RepeatedField< ::google::protobuf::int32 >&
- repeated_int32() const;
- ::google::protobuf::RepeatedField< ::google::protobuf::int32 >*
- mutable_repeated_int32();
- // repeated int64 repeated_int64 = 32;
- int repeated_int64_size() const;
- void clear_repeated_int64();
- static const int kRepeatedInt64FieldNumber = 32;
- ::google::protobuf::int64 repeated_int64(int index) const;
- void set_repeated_int64(int index, ::google::protobuf::int64 value);
- void add_repeated_int64(::google::protobuf::int64 value);
- const ::google::protobuf::RepeatedField< ::google::protobuf::int64 >&
- repeated_int64() const;
- ::google::protobuf::RepeatedField< ::google::protobuf::int64 >*
- mutable_repeated_int64();
- // repeated uint32 repeated_uint32 = 33;
- int repeated_uint32_size() const;
- void clear_repeated_uint32();
- static const int kRepeatedUint32FieldNumber = 33;
- ::google::protobuf::uint32 repeated_uint32(int index) const;
- void set_repeated_uint32(int index, ::google::protobuf::uint32 value);
- void add_repeated_uint32(::google::protobuf::uint32 value);
- const ::google::protobuf::RepeatedField< ::google::protobuf::uint32 >&
- repeated_uint32() const;
- ::google::protobuf::RepeatedField< ::google::protobuf::uint32 >*
- mutable_repeated_uint32();
- // repeated uint64 repeated_uint64 = 34;
- int repeated_uint64_size() const;
- void clear_repeated_uint64();
- static const int kRepeatedUint64FieldNumber = 34;
- ::google::protobuf::uint64 repeated_uint64(int index) const;
- void set_repeated_uint64(int index, ::google::protobuf::uint64 value);
- void add_repeated_uint64(::google::protobuf::uint64 value);
- const ::google::protobuf::RepeatedField< ::google::protobuf::uint64 >&
- repeated_uint64() const;
- ::google::protobuf::RepeatedField< ::google::protobuf::uint64 >*
- mutable_repeated_uint64();
- // repeated sint32 repeated_sint32 = 35;
- int repeated_sint32_size() const;
- void clear_repeated_sint32();
- static const int kRepeatedSint32FieldNumber = 35;
- ::google::protobuf::int32 repeated_sint32(int index) const;
- void set_repeated_sint32(int index, ::google::protobuf::int32 value);
- void add_repeated_sint32(::google::protobuf::int32 value);
- const ::google::protobuf::RepeatedField< ::google::protobuf::int32 >&
- repeated_sint32() const;
- ::google::protobuf::RepeatedField< ::google::protobuf::int32 >*
- mutable_repeated_sint32();
- // repeated sint64 repeated_sint64 = 36;
- int repeated_sint64_size() const;
- void clear_repeated_sint64();
- static const int kRepeatedSint64FieldNumber = 36;
- ::google::protobuf::int64 repeated_sint64(int index) const;
- void set_repeated_sint64(int index, ::google::protobuf::int64 value);
- void add_repeated_sint64(::google::protobuf::int64 value);
- const ::google::protobuf::RepeatedField< ::google::protobuf::int64 >&
- repeated_sint64() const;
- ::google::protobuf::RepeatedField< ::google::protobuf::int64 >*
- mutable_repeated_sint64();
- // repeated fixed32 repeated_fixed32 = 37;
- int repeated_fixed32_size() const;
- void clear_repeated_fixed32();
- static const int kRepeatedFixed32FieldNumber = 37;
- ::google::protobuf::uint32 repeated_fixed32(int index) const;
- void set_repeated_fixed32(int index, ::google::protobuf::uint32 value);
- void add_repeated_fixed32(::google::protobuf::uint32 value);
- const ::google::protobuf::RepeatedField< ::google::protobuf::uint32 >&
- repeated_fixed32() const;
- ::google::protobuf::RepeatedField< ::google::protobuf::uint32 >*
- mutable_repeated_fixed32();
- // repeated fixed64 repeated_fixed64 = 38;
- int repeated_fixed64_size() const;
- void clear_repeated_fixed64();
- static const int kRepeatedFixed64FieldNumber = 38;
- ::google::protobuf::uint64 repeated_fixed64(int index) const;
- void set_repeated_fixed64(int index, ::google::protobuf::uint64 value);
- void add_repeated_fixed64(::google::protobuf::uint64 value);
- const ::google::protobuf::RepeatedField< ::google::protobuf::uint64 >&
- repeated_fixed64() const;
- ::google::protobuf::RepeatedField< ::google::protobuf::uint64 >*
- mutable_repeated_fixed64();
- // repeated sfixed32 repeated_sfixed32 = 39;
- int repeated_sfixed32_size() const;
- void clear_repeated_sfixed32();
- static const int kRepeatedSfixed32FieldNumber = 39;
- ::google::protobuf::int32 repeated_sfixed32(int index) const;
- void set_repeated_sfixed32(int index, ::google::protobuf::int32 value);
- void add_repeated_sfixed32(::google::protobuf::int32 value);
- const ::google::protobuf::RepeatedField< ::google::protobuf::int32 >&
- repeated_sfixed32() const;
- ::google::protobuf::RepeatedField< ::google::protobuf::int32 >*
- mutable_repeated_sfixed32();
- // repeated sfixed64 repeated_sfixed64 = 40;
- int repeated_sfixed64_size() const;
- void clear_repeated_sfixed64();
- static const int kRepeatedSfixed64FieldNumber = 40;
- ::google::protobuf::int64 repeated_sfixed64(int index) const;
- void set_repeated_sfixed64(int index, ::google::protobuf::int64 value);
- void add_repeated_sfixed64(::google::protobuf::int64 value);
- const ::google::protobuf::RepeatedField< ::google::protobuf::int64 >&
- repeated_sfixed64() const;
- ::google::protobuf::RepeatedField< ::google::protobuf::int64 >*
- mutable_repeated_sfixed64();
- // repeated float repeated_float = 41;
- int repeated_float_size() const;
- void clear_repeated_float();
- static const int kRepeatedFloatFieldNumber = 41;
- float repeated_float(int index) const;
- void set_repeated_float(int index, float value);
- void add_repeated_float(float value);
- const ::google::protobuf::RepeatedField< float >&
- repeated_float() const;
- ::google::protobuf::RepeatedField< float >*
- mutable_repeated_float();
- // repeated double repeated_double = 42;
- int repeated_double_size() const;
- void clear_repeated_double();
- static const int kRepeatedDoubleFieldNumber = 42;
- double repeated_double(int index) const;
- void set_repeated_double(int index, double value);
- void add_repeated_double(double value);
- const ::google::protobuf::RepeatedField< double >&
- repeated_double() const;
- ::google::protobuf::RepeatedField< double >*
- mutable_repeated_double();
- // repeated bool repeated_bool = 43;
- int repeated_bool_size() const;
- void clear_repeated_bool();
- static const int kRepeatedBoolFieldNumber = 43;
- bool repeated_bool(int index) const;
- void set_repeated_bool(int index, bool value);
- void add_repeated_bool(bool value);
- const ::google::protobuf::RepeatedField< bool >&
- repeated_bool() const;
- ::google::protobuf::RepeatedField< bool >*
- mutable_repeated_bool();
- // repeated string repeated_string = 44;
- int repeated_string_size() const;
- void clear_repeated_string();
- static const int kRepeatedStringFieldNumber = 44;
- const ::std::string& repeated_string(int index) const;
- ::std::string* mutable_repeated_string(int index);
- void set_repeated_string(int index, const ::std::string& value);
- #if LANG_CXX11
- void set_repeated_string(int index, ::std::string&& value);
- #endif
- void set_repeated_string(int index, const char* value);
- void set_repeated_string(int index, const char* value, size_t size);
- ::std::string* add_repeated_string();
- void add_repeated_string(const ::std::string& value);
- #if LANG_CXX11
- void add_repeated_string(::std::string&& value);
- #endif
- void add_repeated_string(const char* value);
- void add_repeated_string(const char* value, size_t size);
- const ::google::protobuf::RepeatedPtrField< ::std::string>& repeated_string() const;
- ::google::protobuf::RepeatedPtrField< ::std::string>* mutable_repeated_string();
- // repeated bytes repeated_bytes = 45;
- int repeated_bytes_size() const;
- void clear_repeated_bytes();
- static const int kRepeatedBytesFieldNumber = 45;
- const ::std::string& repeated_bytes(int index) const;
- ::std::string* mutable_repeated_bytes(int index);
- void set_repeated_bytes(int index, const ::std::string& value);
- #if LANG_CXX11
- void set_repeated_bytes(int index, ::std::string&& value);
- #endif
- void set_repeated_bytes(int index, const char* value);
- void set_repeated_bytes(int index, const void* value, size_t size);
- ::std::string* add_repeated_bytes();
- void add_repeated_bytes(const ::std::string& value);
- #if LANG_CXX11
- void add_repeated_bytes(::std::string&& value);
- #endif
- void add_repeated_bytes(const char* value);
- void add_repeated_bytes(const void* value, size_t size);
- const ::google::protobuf::RepeatedPtrField< ::std::string>& repeated_bytes() const;
- ::google::protobuf::RepeatedPtrField< ::std::string>* mutable_repeated_bytes();
- // repeated .proto2_nofieldpresence_unittest.TestAllTypes.NestedMessage repeated_nested_message = 48;
- int repeated_nested_message_size() const;
- void clear_repeated_nested_message();
- static const int kRepeatedNestedMessageFieldNumber = 48;
- ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* mutable_repeated_nested_message(int index);
- ::google::protobuf::RepeatedPtrField< ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage >*
- mutable_repeated_nested_message();
- const ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage& repeated_nested_message(int index) const;
- ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* add_repeated_nested_message();
- const ::google::protobuf::RepeatedPtrField< ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage >&
- repeated_nested_message() const;
- // repeated .proto2_nofieldpresence_unittest.ForeignMessage repeated_foreign_message = 49;
- int repeated_foreign_message_size() const;
- void clear_repeated_foreign_message();
- static const int kRepeatedForeignMessageFieldNumber = 49;
- ::proto2_nofieldpresence_unittest::ForeignMessage* mutable_repeated_foreign_message(int index);
- ::google::protobuf::RepeatedPtrField< ::proto2_nofieldpresence_unittest::ForeignMessage >*
- mutable_repeated_foreign_message();
- const ::proto2_nofieldpresence_unittest::ForeignMessage& repeated_foreign_message(int index) const;
- ::proto2_nofieldpresence_unittest::ForeignMessage* add_repeated_foreign_message();
- const ::google::protobuf::RepeatedPtrField< ::proto2_nofieldpresence_unittest::ForeignMessage >&
- repeated_foreign_message() const;
- // repeated .protobuf_unittest.TestAllTypes repeated_proto2_message = 50;
- int repeated_proto2_message_size() const;
- void clear_repeated_proto2_message();
- static const int kRepeatedProto2MessageFieldNumber = 50;
- ::protobuf_unittest::TestAllTypes* mutable_repeated_proto2_message(int index);
- ::google::protobuf::RepeatedPtrField< ::protobuf_unittest::TestAllTypes >*
- mutable_repeated_proto2_message();
- const ::protobuf_unittest::TestAllTypes& repeated_proto2_message(int index) const;
- ::protobuf_unittest::TestAllTypes* add_repeated_proto2_message();
- const ::google::protobuf::RepeatedPtrField< ::protobuf_unittest::TestAllTypes >&
- repeated_proto2_message() const;
- // repeated .proto2_nofieldpresence_unittest.TestAllTypes.NestedEnum repeated_nested_enum = 51;
- int repeated_nested_enum_size() const;
- void clear_repeated_nested_enum();
- static const int kRepeatedNestedEnumFieldNumber = 51;
- ::proto2_nofieldpresence_unittest::TestAllTypes_NestedEnum repeated_nested_enum(int index) const;
- void set_repeated_nested_enum(int index, ::proto2_nofieldpresence_unittest::TestAllTypes_NestedEnum value);
- void add_repeated_nested_enum(::proto2_nofieldpresence_unittest::TestAllTypes_NestedEnum value);
- const ::google::protobuf::RepeatedField<int>& repeated_nested_enum() const;
- ::google::protobuf::RepeatedField<int>* mutable_repeated_nested_enum();
- // repeated .proto2_nofieldpresence_unittest.ForeignEnum repeated_foreign_enum = 52;
- int repeated_foreign_enum_size() const;
- void clear_repeated_foreign_enum();
- static const int kRepeatedForeignEnumFieldNumber = 52;
- ::proto2_nofieldpresence_unittest::ForeignEnum repeated_foreign_enum(int index) const;
- void set_repeated_foreign_enum(int index, ::proto2_nofieldpresence_unittest::ForeignEnum value);
- void add_repeated_foreign_enum(::proto2_nofieldpresence_unittest::ForeignEnum value);
- const ::google::protobuf::RepeatedField<int>& repeated_foreign_enum() const;
- ::google::protobuf::RepeatedField<int>* mutable_repeated_foreign_enum();
- // repeated string repeated_string_piece = 54 [ctype = STRING_PIECE];
- int repeated_string_piece_size() const;
- void clear_repeated_string_piece();
- static const int kRepeatedStringPieceFieldNumber = 54;
- private:
- // Hidden due to unknown ctype option.
- const ::std::string& repeated_string_piece(int index) const;
- ::std::string* mutable_repeated_string_piece(int index);
- void set_repeated_string_piece(int index, const ::std::string& value);
- #if LANG_CXX11
- void set_repeated_string_piece(int index, ::std::string&& value);
- #endif
- void set_repeated_string_piece(int index, const char* value);
- void set_repeated_string_piece(int index, const char* value, size_t size);
- ::std::string* add_repeated_string_piece();
- void add_repeated_string_piece(const ::std::string& value);
- #if LANG_CXX11
- void add_repeated_string_piece(::std::string&& value);
- #endif
- void add_repeated_string_piece(const char* value);
- void add_repeated_string_piece(const char* value, size_t size);
- const ::google::protobuf::RepeatedPtrField< ::std::string>& repeated_string_piece() const;
- ::google::protobuf::RepeatedPtrField< ::std::string>* mutable_repeated_string_piece();
- public:
- // repeated string repeated_cord = 55 [ctype = CORD];
- int repeated_cord_size() const;
- void clear_repeated_cord();
- static const int kRepeatedCordFieldNumber = 55;
- private:
- // Hidden due to unknown ctype option.
- const ::std::string& repeated_cord(int index) const;
- ::std::string* mutable_repeated_cord(int index);
- void set_repeated_cord(int index, const ::std::string& value);
- #if LANG_CXX11
- void set_repeated_cord(int index, ::std::string&& value);
- #endif
- void set_repeated_cord(int index, const char* value);
- void set_repeated_cord(int index, const char* value, size_t size);
- ::std::string* add_repeated_cord();
- void add_repeated_cord(const ::std::string& value);
- #if LANG_CXX11
- void add_repeated_cord(::std::string&& value);
- #endif
- void add_repeated_cord(const char* value);
- void add_repeated_cord(const char* value, size_t size);
- const ::google::protobuf::RepeatedPtrField< ::std::string>& repeated_cord() const;
- ::google::protobuf::RepeatedPtrField< ::std::string>* mutable_repeated_cord();
- public:
- // repeated .proto2_nofieldpresence_unittest.TestAllTypes.NestedMessage repeated_lazy_message = 57 [lazy = true];
- int repeated_lazy_message_size() const;
- void clear_repeated_lazy_message();
- static const int kRepeatedLazyMessageFieldNumber = 57;
- ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* mutable_repeated_lazy_message(int index);
- ::google::protobuf::RepeatedPtrField< ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage >*
- mutable_repeated_lazy_message();
- const ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage& repeated_lazy_message(int index) const;
- ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* add_repeated_lazy_message();
- const ::google::protobuf::RepeatedPtrField< ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage >&
- repeated_lazy_message() const;
- // string optional_string = 14;
- void clear_optional_string();
- static const int kOptionalStringFieldNumber = 14;
- const ::std::string& optional_string() const;
- void set_optional_string(const ::std::string& value);
- #if LANG_CXX11
- void set_optional_string(::std::string&& value);
- #endif
- void set_optional_string(const char* value);
- void set_optional_string(const char* value, size_t size);
- ::std::string* mutable_optional_string();
- ::std::string* release_optional_string();
- void set_allocated_optional_string(::std::string* optional_string);
- // bytes optional_bytes = 15;
- void clear_optional_bytes();
- static const int kOptionalBytesFieldNumber = 15;
- const ::std::string& optional_bytes() const;
- void set_optional_bytes(const ::std::string& value);
- #if LANG_CXX11
- void set_optional_bytes(::std::string&& value);
- #endif
- void set_optional_bytes(const char* value);
- void set_optional_bytes(const void* value, size_t size);
- ::std::string* mutable_optional_bytes();
- ::std::string* release_optional_bytes();
- void set_allocated_optional_bytes(::std::string* optional_bytes);
- // string optional_string_piece = 24 [ctype = STRING_PIECE];
- void clear_optional_string_piece();
- static const int kOptionalStringPieceFieldNumber = 24;
- private:
- // Hidden due to unknown ctype option.
- const ::std::string& optional_string_piece() const;
- void set_optional_string_piece(const ::std::string& value);
- #if LANG_CXX11
- void set_optional_string_piece(::std::string&& value);
- #endif
- void set_optional_string_piece(const char* value);
- void set_optional_string_piece(const char* value, size_t size);
- ::std::string* mutable_optional_string_piece();
- ::std::string* release_optional_string_piece();
- void set_allocated_optional_string_piece(::std::string* optional_string_piece);
- public:
- // string optional_cord = 25 [ctype = CORD];
- void clear_optional_cord();
- static const int kOptionalCordFieldNumber = 25;
- private:
- // Hidden due to unknown ctype option.
- const ::std::string& optional_cord() const;
- void set_optional_cord(const ::std::string& value);
- #if LANG_CXX11
- void set_optional_cord(::std::string&& value);
- #endif
- void set_optional_cord(const char* value);
- void set_optional_cord(const char* value, size_t size);
- ::std::string* mutable_optional_cord();
- ::std::string* release_optional_cord();
- void set_allocated_optional_cord(::std::string* optional_cord);
- public:
- // .proto2_nofieldpresence_unittest.TestAllTypes.NestedMessage optional_nested_message = 18;
- bool has_optional_nested_message() const;
- void clear_optional_nested_message();
- static const int kOptionalNestedMessageFieldNumber = 18;
- private:
- const ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage& _internal_optional_nested_message() const;
- public:
- const ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage& optional_nested_message() const;
- ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* release_optional_nested_message();
- ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* mutable_optional_nested_message();
- void set_allocated_optional_nested_message(::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* optional_nested_message);
- // .proto2_nofieldpresence_unittest.ForeignMessage optional_foreign_message = 19;
- bool has_optional_foreign_message() const;
- void clear_optional_foreign_message();
- static const int kOptionalForeignMessageFieldNumber = 19;
- private:
- const ::proto2_nofieldpresence_unittest::ForeignMessage& _internal_optional_foreign_message() const;
- public:
- const ::proto2_nofieldpresence_unittest::ForeignMessage& optional_foreign_message() const;
- ::proto2_nofieldpresence_unittest::ForeignMessage* release_optional_foreign_message();
- ::proto2_nofieldpresence_unittest::ForeignMessage* mutable_optional_foreign_message();
- void set_allocated_optional_foreign_message(::proto2_nofieldpresence_unittest::ForeignMessage* optional_foreign_message);
- // .protobuf_unittest.TestAllTypes optional_proto2_message = 20;
- bool has_optional_proto2_message() const;
- void clear_optional_proto2_message();
- static const int kOptionalProto2MessageFieldNumber = 20;
- private:
- const ::protobuf_unittest::TestAllTypes& _internal_optional_proto2_message() const;
- public:
- const ::protobuf_unittest::TestAllTypes& optional_proto2_message() const;
- ::protobuf_unittest::TestAllTypes* release_optional_proto2_message();
- ::protobuf_unittest::TestAllTypes* mutable_optional_proto2_message();
- void set_allocated_optional_proto2_message(::protobuf_unittest::TestAllTypes* optional_proto2_message);
- // .proto2_nofieldpresence_unittest.TestAllTypes.NestedMessage optional_lazy_message = 30 [lazy = true];
- bool has_optional_lazy_message() const;
- void clear_optional_lazy_message();
- static const int kOptionalLazyMessageFieldNumber = 30;
- private:
- const ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage& _internal_optional_lazy_message() const;
- public:
- const ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage& optional_lazy_message() const;
- ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* release_optional_lazy_message();
- ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* mutable_optional_lazy_message();
- void set_allocated_optional_lazy_message(::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* optional_lazy_message);
- // int64 optional_int64 = 2;
- void clear_optional_int64();
- static const int kOptionalInt64FieldNumber = 2;
- ::google::protobuf::int64 optional_int64() const;
- void set_optional_int64(::google::protobuf::int64 value);
- // int32 optional_int32 = 1;
- void clear_optional_int32();
- static const int kOptionalInt32FieldNumber = 1;
- ::google::protobuf::int32 optional_int32() const;
- void set_optional_int32(::google::protobuf::int32 value);
- // uint32 optional_uint32 = 3;
- void clear_optional_uint32();
- static const int kOptionalUint32FieldNumber = 3;
- ::google::protobuf::uint32 optional_uint32() const;
- void set_optional_uint32(::google::protobuf::uint32 value);
- // uint64 optional_uint64 = 4;
- void clear_optional_uint64();
- static const int kOptionalUint64FieldNumber = 4;
- ::google::protobuf::uint64 optional_uint64() const;
- void set_optional_uint64(::google::protobuf::uint64 value);
- // sint64 optional_sint64 = 6;
- void clear_optional_sint64();
- static const int kOptionalSint64FieldNumber = 6;
- ::google::protobuf::int64 optional_sint64() const;
- void set_optional_sint64(::google::protobuf::int64 value);
- // sint32 optional_sint32 = 5;
- void clear_optional_sint32();
- static const int kOptionalSint32FieldNumber = 5;
- ::google::protobuf::int32 optional_sint32() const;
- void set_optional_sint32(::google::protobuf::int32 value);
- // fixed32 optional_fixed32 = 7;
- void clear_optional_fixed32();
- static const int kOptionalFixed32FieldNumber = 7;
- ::google::protobuf::uint32 optional_fixed32() const;
- void set_optional_fixed32(::google::protobuf::uint32 value);
- // fixed64 optional_fixed64 = 8;
- void clear_optional_fixed64();
- static const int kOptionalFixed64FieldNumber = 8;
- ::google::protobuf::uint64 optional_fixed64() const;
- void set_optional_fixed64(::google::protobuf::uint64 value);
- // sfixed64 optional_sfixed64 = 10;
- void clear_optional_sfixed64();
- static const int kOptionalSfixed64FieldNumber = 10;
- ::google::protobuf::int64 optional_sfixed64() const;
- void set_optional_sfixed64(::google::protobuf::int64 value);
- // sfixed32 optional_sfixed32 = 9;
- void clear_optional_sfixed32();
- static const int kOptionalSfixed32FieldNumber = 9;
- ::google::protobuf::int32 optional_sfixed32() const;
- void set_optional_sfixed32(::google::protobuf::int32 value);
- // float optional_float = 11;
- void clear_optional_float();
- static const int kOptionalFloatFieldNumber = 11;
- float optional_float() const;
- void set_optional_float(float value);
- // double optional_double = 12;
- void clear_optional_double();
- static const int kOptionalDoubleFieldNumber = 12;
- double optional_double() const;
- void set_optional_double(double value);
- // bool optional_bool = 13;
- void clear_optional_bool();
- static const int kOptionalBoolFieldNumber = 13;
- bool optional_bool() const;
- void set_optional_bool(bool value);
- // .proto2_nofieldpresence_unittest.TestAllTypes.NestedEnum optional_nested_enum = 21;
- void clear_optional_nested_enum();
- static const int kOptionalNestedEnumFieldNumber = 21;
- ::proto2_nofieldpresence_unittest::TestAllTypes_NestedEnum optional_nested_enum() const;
- void set_optional_nested_enum(::proto2_nofieldpresence_unittest::TestAllTypes_NestedEnum value);
- // .proto2_nofieldpresence_unittest.ForeignEnum optional_foreign_enum = 22;
- void clear_optional_foreign_enum();
- static const int kOptionalForeignEnumFieldNumber = 22;
- ::proto2_nofieldpresence_unittest::ForeignEnum optional_foreign_enum() const;
- void set_optional_foreign_enum(::proto2_nofieldpresence_unittest::ForeignEnum value);
- // uint32 oneof_uint32 = 111;
- private:
- bool has_oneof_uint32() const;
- public:
- void clear_oneof_uint32();
- static const int kOneofUint32FieldNumber = 111;
- ::google::protobuf::uint32 oneof_uint32() const;
- void set_oneof_uint32(::google::protobuf::uint32 value);
- // .proto2_nofieldpresence_unittest.TestAllTypes.NestedMessage oneof_nested_message = 112;
- bool has_oneof_nested_message() const;
- void clear_oneof_nested_message();
- static const int kOneofNestedMessageFieldNumber = 112;
- private:
- const ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage& _internal_oneof_nested_message() const;
- public:
- const ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage& oneof_nested_message() const;
- ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* release_oneof_nested_message();
- ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* mutable_oneof_nested_message();
- void set_allocated_oneof_nested_message(::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* oneof_nested_message);
- // string oneof_string = 113;
- private:
- bool has_oneof_string() const;
- public:
- void clear_oneof_string();
- static const int kOneofStringFieldNumber = 113;
- const ::std::string& oneof_string() const;
- void set_oneof_string(const ::std::string& value);
- #if LANG_CXX11
- void set_oneof_string(::std::string&& value);
- #endif
- void set_oneof_string(const char* value);
- void set_oneof_string(const char* value, size_t size);
- ::std::string* mutable_oneof_string();
- ::std::string* release_oneof_string();
- void set_allocated_oneof_string(::std::string* oneof_string);
- // .proto2_nofieldpresence_unittest.TestAllTypes.NestedEnum oneof_enum = 114;
- private:
- bool has_oneof_enum() const;
- public:
- void clear_oneof_enum();
- static const int kOneofEnumFieldNumber = 114;
- ::proto2_nofieldpresence_unittest::TestAllTypes_NestedEnum oneof_enum() const;
- void set_oneof_enum(::proto2_nofieldpresence_unittest::TestAllTypes_NestedEnum value);
- void clear_oneof_field();
- OneofFieldCase oneof_field_case() const;
- // @@protoc_insertion_point(class_scope:proto2_nofieldpresence_unittest.TestAllTypes)
- private:
- void set_has_oneof_uint32();
- void set_has_oneof_nested_message();
- void set_has_oneof_string();
- void set_has_oneof_enum();
- inline bool has_oneof_field() const;
- inline void clear_has_oneof_field();
- ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
- ::google::protobuf::RepeatedField< ::google::protobuf::int32 > repeated_int32_;
- mutable int _repeated_int32_cached_byte_size_;
- ::google::protobuf::RepeatedField< ::google::protobuf::int64 > repeated_int64_;
- mutable int _repeated_int64_cached_byte_size_;
- ::google::protobuf::RepeatedField< ::google::protobuf::uint32 > repeated_uint32_;
- mutable int _repeated_uint32_cached_byte_size_;
- ::google::protobuf::RepeatedField< ::google::protobuf::uint64 > repeated_uint64_;
- mutable int _repeated_uint64_cached_byte_size_;
- ::google::protobuf::RepeatedField< ::google::protobuf::int32 > repeated_sint32_;
- mutable int _repeated_sint32_cached_byte_size_;
- ::google::protobuf::RepeatedField< ::google::protobuf::int64 > repeated_sint64_;
- mutable int _repeated_sint64_cached_byte_size_;
- ::google::protobuf::RepeatedField< ::google::protobuf::uint32 > repeated_fixed32_;
- mutable int _repeated_fixed32_cached_byte_size_;
- ::google::protobuf::RepeatedField< ::google::protobuf::uint64 > repeated_fixed64_;
- mutable int _repeated_fixed64_cached_byte_size_;
- ::google::protobuf::RepeatedField< ::google::protobuf::int32 > repeated_sfixed32_;
- mutable int _repeated_sfixed32_cached_byte_size_;
- ::google::protobuf::RepeatedField< ::google::protobuf::int64 > repeated_sfixed64_;
- mutable int _repeated_sfixed64_cached_byte_size_;
- ::google::protobuf::RepeatedField< float > repeated_float_;
- mutable int _repeated_float_cached_byte_size_;
- ::google::protobuf::RepeatedField< double > repeated_double_;
- mutable int _repeated_double_cached_byte_size_;
- ::google::protobuf::RepeatedField< bool > repeated_bool_;
- mutable int _repeated_bool_cached_byte_size_;
- ::google::protobuf::RepeatedPtrField< ::std::string> repeated_string_;
- ::google::protobuf::RepeatedPtrField< ::std::string> repeated_bytes_;
- ::google::protobuf::RepeatedPtrField< ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage > repeated_nested_message_;
- ::google::protobuf::RepeatedPtrField< ::proto2_nofieldpresence_unittest::ForeignMessage > repeated_foreign_message_;
- ::google::protobuf::RepeatedPtrField< ::protobuf_unittest::TestAllTypes > repeated_proto2_message_;
- ::google::protobuf::RepeatedField<int> repeated_nested_enum_;
- mutable int _repeated_nested_enum_cached_byte_size_;
- ::google::protobuf::RepeatedField<int> repeated_foreign_enum_;
- mutable int _repeated_foreign_enum_cached_byte_size_;
- ::google::protobuf::RepeatedPtrField< ::std::string> repeated_string_piece_;
- ::google::protobuf::RepeatedPtrField< ::std::string> repeated_cord_;
- ::google::protobuf::RepeatedPtrField< ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage > repeated_lazy_message_;
- ::google::protobuf::internal::ArenaStringPtr optional_string_;
- ::google::protobuf::internal::ArenaStringPtr optional_bytes_;
- ::google::protobuf::internal::ArenaStringPtr optional_string_piece_;
- ::google::protobuf::internal::ArenaStringPtr optional_cord_;
- ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* optional_nested_message_;
- ::proto2_nofieldpresence_unittest::ForeignMessage* optional_foreign_message_;
- ::protobuf_unittest::TestAllTypes* optional_proto2_message_;
- ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* optional_lazy_message_;
- ::google::protobuf::int64 optional_int64_;
- ::google::protobuf::int32 optional_int32_;
- ::google::protobuf::uint32 optional_uint32_;
- ::google::protobuf::uint64 optional_uint64_;
- ::google::protobuf::int64 optional_sint64_;
- ::google::protobuf::int32 optional_sint32_;
- ::google::protobuf::uint32 optional_fixed32_;
- ::google::protobuf::uint64 optional_fixed64_;
- ::google::protobuf::int64 optional_sfixed64_;
- ::google::protobuf::int32 optional_sfixed32_;
- float optional_float_;
- double optional_double_;
- bool optional_bool_;
- int optional_nested_enum_;
- int optional_foreign_enum_;
- union OneofFieldUnion {
- OneofFieldUnion() {}
- ::google::protobuf::uint32 oneof_uint32_;
- ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* oneof_nested_message_;
- ::google::protobuf::internal::ArenaStringPtr oneof_string_;
- int oneof_enum_;
- } oneof_field_;
- mutable ::google::protobuf::internal::CachedSize _cached_size_;
- ::google::protobuf::uint32 _oneof_case_[1];
- friend struct ::protobuf_google_2fprotobuf_2funittest_5fno_5ffield_5fpresence_2eproto::TableStruct;
- };
- // -------------------------------------------------------------------
- class TestProto2Required : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:proto2_nofieldpresence_unittest.TestProto2Required) */ {
- public:
- TestProto2Required();
- virtual ~TestProto2Required();
- TestProto2Required(const TestProto2Required& from);
- inline TestProto2Required& operator=(const TestProto2Required& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- TestProto2Required(TestProto2Required&& from) noexcept
- : TestProto2Required() {
- *this = ::std::move(from);
- }
- inline TestProto2Required& operator=(TestProto2Required&& from) noexcept {
- if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
- if (this != &from) InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- #endif
- static const ::google::protobuf::Descriptor* descriptor();
- static const TestProto2Required& default_instance();
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const TestProto2Required* internal_default_instance() {
- return reinterpret_cast<const TestProto2Required*>(
- &_TestProto2Required_default_instance_);
- }
- static constexpr int kIndexInFileMessages =
- 2;
- void Swap(TestProto2Required* other);
- friend void swap(TestProto2Required& a, TestProto2Required& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline TestProto2Required* New() const final {
- return CreateMaybeMessage<TestProto2Required>(NULL);
- }
- TestProto2Required* New(::google::protobuf::Arena* arena) const final {
- return CreateMaybeMessage<TestProto2Required>(arena);
- }
- void CopyFrom(const ::google::protobuf::Message& from) final;
- void MergeFrom(const ::google::protobuf::Message& from) final;
- void CopyFrom(const TestProto2Required& from);
- void MergeFrom(const TestProto2Required& from);
- void Clear() final;
- bool IsInitialized() const final;
- size_t ByteSizeLong() const final;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) final;
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const final;
- ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const final;
- int GetCachedSize() const final { return _cached_size_.Get(); }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const final;
- void InternalSwap(TestProto2Required* other);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return NULL;
- }
- inline void* MaybeArenaPtr() const {
- return NULL;
- }
- public:
- ::google::protobuf::Metadata GetMetadata() const final;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // .protobuf_unittest.TestRequired proto2 = 1;
- bool has_proto2() const;
- void clear_proto2();
- static const int kProto2FieldNumber = 1;
- private:
- const ::protobuf_unittest::TestRequired& _internal_proto2() const;
- public:
- const ::protobuf_unittest::TestRequired& proto2() const;
- ::protobuf_unittest::TestRequired* release_proto2();
- ::protobuf_unittest::TestRequired* mutable_proto2();
- void set_allocated_proto2(::protobuf_unittest::TestRequired* proto2);
- // @@protoc_insertion_point(class_scope:proto2_nofieldpresence_unittest.TestProto2Required)
- private:
- ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
- ::protobuf_unittest::TestRequired* proto2_;
- mutable ::google::protobuf::internal::CachedSize _cached_size_;
- friend struct ::protobuf_google_2fprotobuf_2funittest_5fno_5ffield_5fpresence_2eproto::TableStruct;
- };
- // -------------------------------------------------------------------
- class ForeignMessage : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:proto2_nofieldpresence_unittest.ForeignMessage) */ {
- public:
- ForeignMessage();
- virtual ~ForeignMessage();
- ForeignMessage(const ForeignMessage& from);
- inline ForeignMessage& operator=(const ForeignMessage& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- ForeignMessage(ForeignMessage&& from) noexcept
- : ForeignMessage() {
- *this = ::std::move(from);
- }
- inline ForeignMessage& operator=(ForeignMessage&& from) noexcept {
- if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
- if (this != &from) InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- #endif
- static const ::google::protobuf::Descriptor* descriptor();
- static const ForeignMessage& default_instance();
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const ForeignMessage* internal_default_instance() {
- return reinterpret_cast<const ForeignMessage*>(
- &_ForeignMessage_default_instance_);
- }
- static constexpr int kIndexInFileMessages =
- 3;
- void Swap(ForeignMessage* other);
- friend void swap(ForeignMessage& a, ForeignMessage& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline ForeignMessage* New() const final {
- return CreateMaybeMessage<ForeignMessage>(NULL);
- }
- ForeignMessage* New(::google::protobuf::Arena* arena) const final {
- return CreateMaybeMessage<ForeignMessage>(arena);
- }
- void CopyFrom(const ::google::protobuf::Message& from) final;
- void MergeFrom(const ::google::protobuf::Message& from) final;
- void CopyFrom(const ForeignMessage& from);
- void MergeFrom(const ForeignMessage& from);
- void Clear() final;
- bool IsInitialized() const final;
- size_t ByteSizeLong() const final;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) final;
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const final;
- ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const final;
- int GetCachedSize() const final { return _cached_size_.Get(); }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const final;
- void InternalSwap(ForeignMessage* other);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return NULL;
- }
- inline void* MaybeArenaPtr() const {
- return NULL;
- }
- public:
- ::google::protobuf::Metadata GetMetadata() const final;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // int32 c = 1;
- void clear_c();
- static const int kCFieldNumber = 1;
- ::google::protobuf::int32 c() const;
- void set_c(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:proto2_nofieldpresence_unittest.ForeignMessage)
- private:
- ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
- ::google::protobuf::int32 c_;
- mutable ::google::protobuf::internal::CachedSize _cached_size_;
- friend struct ::protobuf_google_2fprotobuf_2funittest_5fno_5ffield_5fpresence_2eproto::TableStruct;
- };
- // ===================================================================
- // ===================================================================
- #ifdef __GNUC__
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wstrict-aliasing"
- #endif // __GNUC__
- // TestAllTypes_NestedMessage
- // int32 bb = 1;
- inline void TestAllTypes_NestedMessage::clear_bb() {
- bb_ = 0;
- }
- inline ::google::protobuf::int32 TestAllTypes_NestedMessage::bb() const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.NestedMessage.bb)
- return bb_;
- }
- inline void TestAllTypes_NestedMessage::set_bb(::google::protobuf::int32 value) {
-
- bb_ = value;
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.NestedMessage.bb)
- }
- // -------------------------------------------------------------------
- // TestAllTypes
- // int32 optional_int32 = 1;
- inline void TestAllTypes::clear_optional_int32() {
- optional_int32_ = 0;
- }
- inline ::google::protobuf::int32 TestAllTypes::optional_int32() const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.optional_int32)
- return optional_int32_;
- }
- inline void TestAllTypes::set_optional_int32(::google::protobuf::int32 value) {
-
- optional_int32_ = value;
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.optional_int32)
- }
- // int64 optional_int64 = 2;
- inline void TestAllTypes::clear_optional_int64() {
- optional_int64_ = GOOGLE_LONGLONG(0);
- }
- inline ::google::protobuf::int64 TestAllTypes::optional_int64() const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.optional_int64)
- return optional_int64_;
- }
- inline void TestAllTypes::set_optional_int64(::google::protobuf::int64 value) {
-
- optional_int64_ = value;
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.optional_int64)
- }
- // uint32 optional_uint32 = 3;
- inline void TestAllTypes::clear_optional_uint32() {
- optional_uint32_ = 0u;
- }
- inline ::google::protobuf::uint32 TestAllTypes::optional_uint32() const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.optional_uint32)
- return optional_uint32_;
- }
- inline void TestAllTypes::set_optional_uint32(::google::protobuf::uint32 value) {
-
- optional_uint32_ = value;
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.optional_uint32)
- }
- // uint64 optional_uint64 = 4;
- inline void TestAllTypes::clear_optional_uint64() {
- optional_uint64_ = GOOGLE_ULONGLONG(0);
- }
- inline ::google::protobuf::uint64 TestAllTypes::optional_uint64() const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.optional_uint64)
- return optional_uint64_;
- }
- inline void TestAllTypes::set_optional_uint64(::google::protobuf::uint64 value) {
-
- optional_uint64_ = value;
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.optional_uint64)
- }
- // sint32 optional_sint32 = 5;
- inline void TestAllTypes::clear_optional_sint32() {
- optional_sint32_ = 0;
- }
- inline ::google::protobuf::int32 TestAllTypes::optional_sint32() const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.optional_sint32)
- return optional_sint32_;
- }
- inline void TestAllTypes::set_optional_sint32(::google::protobuf::int32 value) {
-
- optional_sint32_ = value;
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.optional_sint32)
- }
- // sint64 optional_sint64 = 6;
- inline void TestAllTypes::clear_optional_sint64() {
- optional_sint64_ = GOOGLE_LONGLONG(0);
- }
- inline ::google::protobuf::int64 TestAllTypes::optional_sint64() const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.optional_sint64)
- return optional_sint64_;
- }
- inline void TestAllTypes::set_optional_sint64(::google::protobuf::int64 value) {
-
- optional_sint64_ = value;
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.optional_sint64)
- }
- // fixed32 optional_fixed32 = 7;
- inline void TestAllTypes::clear_optional_fixed32() {
- optional_fixed32_ = 0u;
- }
- inline ::google::protobuf::uint32 TestAllTypes::optional_fixed32() const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.optional_fixed32)
- return optional_fixed32_;
- }
- inline void TestAllTypes::set_optional_fixed32(::google::protobuf::uint32 value) {
-
- optional_fixed32_ = value;
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.optional_fixed32)
- }
- // fixed64 optional_fixed64 = 8;
- inline void TestAllTypes::clear_optional_fixed64() {
- optional_fixed64_ = GOOGLE_ULONGLONG(0);
- }
- inline ::google::protobuf::uint64 TestAllTypes::optional_fixed64() const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.optional_fixed64)
- return optional_fixed64_;
- }
- inline void TestAllTypes::set_optional_fixed64(::google::protobuf::uint64 value) {
-
- optional_fixed64_ = value;
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.optional_fixed64)
- }
- // sfixed32 optional_sfixed32 = 9;
- inline void TestAllTypes::clear_optional_sfixed32() {
- optional_sfixed32_ = 0;
- }
- inline ::google::protobuf::int32 TestAllTypes::optional_sfixed32() const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.optional_sfixed32)
- return optional_sfixed32_;
- }
- inline void TestAllTypes::set_optional_sfixed32(::google::protobuf::int32 value) {
-
- optional_sfixed32_ = value;
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.optional_sfixed32)
- }
- // sfixed64 optional_sfixed64 = 10;
- inline void TestAllTypes::clear_optional_sfixed64() {
- optional_sfixed64_ = GOOGLE_LONGLONG(0);
- }
- inline ::google::protobuf::int64 TestAllTypes::optional_sfixed64() const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.optional_sfixed64)
- return optional_sfixed64_;
- }
- inline void TestAllTypes::set_optional_sfixed64(::google::protobuf::int64 value) {
-
- optional_sfixed64_ = value;
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.optional_sfixed64)
- }
- // float optional_float = 11;
- inline void TestAllTypes::clear_optional_float() {
- optional_float_ = 0;
- }
- inline float TestAllTypes::optional_float() const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.optional_float)
- return optional_float_;
- }
- inline void TestAllTypes::set_optional_float(float value) {
-
- optional_float_ = value;
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.optional_float)
- }
- // double optional_double = 12;
- inline void TestAllTypes::clear_optional_double() {
- optional_double_ = 0;
- }
- inline double TestAllTypes::optional_double() const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.optional_double)
- return optional_double_;
- }
- inline void TestAllTypes::set_optional_double(double value) {
-
- optional_double_ = value;
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.optional_double)
- }
- // bool optional_bool = 13;
- inline void TestAllTypes::clear_optional_bool() {
- optional_bool_ = false;
- }
- inline bool TestAllTypes::optional_bool() const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.optional_bool)
- return optional_bool_;
- }
- inline void TestAllTypes::set_optional_bool(bool value) {
-
- optional_bool_ = value;
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.optional_bool)
- }
- // string optional_string = 14;
- inline void TestAllTypes::clear_optional_string() {
- optional_string_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline const ::std::string& TestAllTypes::optional_string() const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.optional_string)
- return optional_string_.GetNoArena();
- }
- inline void TestAllTypes::set_optional_string(const ::std::string& value) {
-
- optional_string_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.optional_string)
- }
- #if LANG_CXX11
- inline void TestAllTypes::set_optional_string(::std::string&& value) {
-
- optional_string_.SetNoArena(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
- // @@protoc_insertion_point(field_set_rvalue:proto2_nofieldpresence_unittest.TestAllTypes.optional_string)
- }
- #endif
- inline void TestAllTypes::set_optional_string(const char* value) {
- GOOGLE_DCHECK(value != NULL);
-
- optional_string_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
- // @@protoc_insertion_point(field_set_char:proto2_nofieldpresence_unittest.TestAllTypes.optional_string)
- }
- inline void TestAllTypes::set_optional_string(const char* value, size_t size) {
-
- optional_string_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- ::std::string(reinterpret_cast<const char*>(value), size));
- // @@protoc_insertion_point(field_set_pointer:proto2_nofieldpresence_unittest.TestAllTypes.optional_string)
- }
- inline ::std::string* TestAllTypes::mutable_optional_string() {
-
- // @@protoc_insertion_point(field_mutable:proto2_nofieldpresence_unittest.TestAllTypes.optional_string)
- return optional_string_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline ::std::string* TestAllTypes::release_optional_string() {
- // @@protoc_insertion_point(field_release:proto2_nofieldpresence_unittest.TestAllTypes.optional_string)
-
- return optional_string_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline void TestAllTypes::set_allocated_optional_string(::std::string* optional_string) {
- if (optional_string != NULL) {
-
- } else {
-
- }
- optional_string_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), optional_string);
- // @@protoc_insertion_point(field_set_allocated:proto2_nofieldpresence_unittest.TestAllTypes.optional_string)
- }
- // bytes optional_bytes = 15;
- inline void TestAllTypes::clear_optional_bytes() {
- optional_bytes_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline const ::std::string& TestAllTypes::optional_bytes() const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.optional_bytes)
- return optional_bytes_.GetNoArena();
- }
- inline void TestAllTypes::set_optional_bytes(const ::std::string& value) {
-
- optional_bytes_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.optional_bytes)
- }
- #if LANG_CXX11
- inline void TestAllTypes::set_optional_bytes(::std::string&& value) {
-
- optional_bytes_.SetNoArena(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
- // @@protoc_insertion_point(field_set_rvalue:proto2_nofieldpresence_unittest.TestAllTypes.optional_bytes)
- }
- #endif
- inline void TestAllTypes::set_optional_bytes(const char* value) {
- GOOGLE_DCHECK(value != NULL);
-
- optional_bytes_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
- // @@protoc_insertion_point(field_set_char:proto2_nofieldpresence_unittest.TestAllTypes.optional_bytes)
- }
- inline void TestAllTypes::set_optional_bytes(const void* value, size_t size) {
-
- optional_bytes_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- ::std::string(reinterpret_cast<const char*>(value), size));
- // @@protoc_insertion_point(field_set_pointer:proto2_nofieldpresence_unittest.TestAllTypes.optional_bytes)
- }
- inline ::std::string* TestAllTypes::mutable_optional_bytes() {
-
- // @@protoc_insertion_point(field_mutable:proto2_nofieldpresence_unittest.TestAllTypes.optional_bytes)
- return optional_bytes_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline ::std::string* TestAllTypes::release_optional_bytes() {
- // @@protoc_insertion_point(field_release:proto2_nofieldpresence_unittest.TestAllTypes.optional_bytes)
-
- return optional_bytes_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline void TestAllTypes::set_allocated_optional_bytes(::std::string* optional_bytes) {
- if (optional_bytes != NULL) {
-
- } else {
-
- }
- optional_bytes_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), optional_bytes);
- // @@protoc_insertion_point(field_set_allocated:proto2_nofieldpresence_unittest.TestAllTypes.optional_bytes)
- }
- // .proto2_nofieldpresence_unittest.TestAllTypes.NestedMessage optional_nested_message = 18;
- inline bool TestAllTypes::has_optional_nested_message() const {
- return this != internal_default_instance() && optional_nested_message_ != NULL;
- }
- inline void TestAllTypes::clear_optional_nested_message() {
- if (GetArenaNoVirtual() == NULL && optional_nested_message_ != NULL) {
- delete optional_nested_message_;
- }
- optional_nested_message_ = NULL;
- }
- inline const ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage& TestAllTypes::_internal_optional_nested_message() const {
- return *optional_nested_message_;
- }
- inline const ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage& TestAllTypes::optional_nested_message() const {
- const ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* p = optional_nested_message_;
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.optional_nested_message)
- return p != NULL ? *p : *reinterpret_cast<const ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage*>(
- &::proto2_nofieldpresence_unittest::_TestAllTypes_NestedMessage_default_instance_);
- }
- inline ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* TestAllTypes::release_optional_nested_message() {
- // @@protoc_insertion_point(field_release:proto2_nofieldpresence_unittest.TestAllTypes.optional_nested_message)
-
- ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* temp = optional_nested_message_;
- optional_nested_message_ = NULL;
- return temp;
- }
- inline ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* TestAllTypes::mutable_optional_nested_message() {
-
- if (optional_nested_message_ == NULL) {
- auto* p = CreateMaybeMessage<::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage>(GetArenaNoVirtual());
- optional_nested_message_ = p;
- }
- // @@protoc_insertion_point(field_mutable:proto2_nofieldpresence_unittest.TestAllTypes.optional_nested_message)
- return optional_nested_message_;
- }
- inline void TestAllTypes::set_allocated_optional_nested_message(::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* optional_nested_message) {
- ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
- if (message_arena == NULL) {
- delete optional_nested_message_;
- }
- if (optional_nested_message) {
- ::google::protobuf::Arena* submessage_arena = NULL;
- if (message_arena != submessage_arena) {
- optional_nested_message = ::google::protobuf::internal::GetOwnedMessage(
- message_arena, optional_nested_message, submessage_arena);
- }
-
- } else {
-
- }
- optional_nested_message_ = optional_nested_message;
- // @@protoc_insertion_point(field_set_allocated:proto2_nofieldpresence_unittest.TestAllTypes.optional_nested_message)
- }
- // .proto2_nofieldpresence_unittest.ForeignMessage optional_foreign_message = 19;
- inline bool TestAllTypes::has_optional_foreign_message() const {
- return this != internal_default_instance() && optional_foreign_message_ != NULL;
- }
- inline void TestAllTypes::clear_optional_foreign_message() {
- if (GetArenaNoVirtual() == NULL && optional_foreign_message_ != NULL) {
- delete optional_foreign_message_;
- }
- optional_foreign_message_ = NULL;
- }
- inline const ::proto2_nofieldpresence_unittest::ForeignMessage& TestAllTypes::_internal_optional_foreign_message() const {
- return *optional_foreign_message_;
- }
- inline const ::proto2_nofieldpresence_unittest::ForeignMessage& TestAllTypes::optional_foreign_message() const {
- const ::proto2_nofieldpresence_unittest::ForeignMessage* p = optional_foreign_message_;
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.optional_foreign_message)
- return p != NULL ? *p : *reinterpret_cast<const ::proto2_nofieldpresence_unittest::ForeignMessage*>(
- &::proto2_nofieldpresence_unittest::_ForeignMessage_default_instance_);
- }
- inline ::proto2_nofieldpresence_unittest::ForeignMessage* TestAllTypes::release_optional_foreign_message() {
- // @@protoc_insertion_point(field_release:proto2_nofieldpresence_unittest.TestAllTypes.optional_foreign_message)
-
- ::proto2_nofieldpresence_unittest::ForeignMessage* temp = optional_foreign_message_;
- optional_foreign_message_ = NULL;
- return temp;
- }
- inline ::proto2_nofieldpresence_unittest::ForeignMessage* TestAllTypes::mutable_optional_foreign_message() {
-
- if (optional_foreign_message_ == NULL) {
- auto* p = CreateMaybeMessage<::proto2_nofieldpresence_unittest::ForeignMessage>(GetArenaNoVirtual());
- optional_foreign_message_ = p;
- }
- // @@protoc_insertion_point(field_mutable:proto2_nofieldpresence_unittest.TestAllTypes.optional_foreign_message)
- return optional_foreign_message_;
- }
- inline void TestAllTypes::set_allocated_optional_foreign_message(::proto2_nofieldpresence_unittest::ForeignMessage* optional_foreign_message) {
- ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
- if (message_arena == NULL) {
- delete optional_foreign_message_;
- }
- if (optional_foreign_message) {
- ::google::protobuf::Arena* submessage_arena = NULL;
- if (message_arena != submessage_arena) {
- optional_foreign_message = ::google::protobuf::internal::GetOwnedMessage(
- message_arena, optional_foreign_message, submessage_arena);
- }
-
- } else {
-
- }
- optional_foreign_message_ = optional_foreign_message;
- // @@protoc_insertion_point(field_set_allocated:proto2_nofieldpresence_unittest.TestAllTypes.optional_foreign_message)
- }
- // .protobuf_unittest.TestAllTypes optional_proto2_message = 20;
- inline bool TestAllTypes::has_optional_proto2_message() const {
- return this != internal_default_instance() && optional_proto2_message_ != NULL;
- }
- inline const ::protobuf_unittest::TestAllTypes& TestAllTypes::_internal_optional_proto2_message() const {
- return *optional_proto2_message_;
- }
- inline const ::protobuf_unittest::TestAllTypes& TestAllTypes::optional_proto2_message() const {
- const ::protobuf_unittest::TestAllTypes* p = optional_proto2_message_;
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.optional_proto2_message)
- return p != NULL ? *p : *reinterpret_cast<const ::protobuf_unittest::TestAllTypes*>(
- &::protobuf_unittest::_TestAllTypes_default_instance_);
- }
- inline ::protobuf_unittest::TestAllTypes* TestAllTypes::release_optional_proto2_message() {
- // @@protoc_insertion_point(field_release:proto2_nofieldpresence_unittest.TestAllTypes.optional_proto2_message)
-
- ::protobuf_unittest::TestAllTypes* temp = optional_proto2_message_;
- optional_proto2_message_ = NULL;
- return temp;
- }
- inline ::protobuf_unittest::TestAllTypes* TestAllTypes::mutable_optional_proto2_message() {
-
- if (optional_proto2_message_ == NULL) {
- auto* p = CreateMaybeMessage<::protobuf_unittest::TestAllTypes>(GetArenaNoVirtual());
- optional_proto2_message_ = p;
- }
- // @@protoc_insertion_point(field_mutable:proto2_nofieldpresence_unittest.TestAllTypes.optional_proto2_message)
- return optional_proto2_message_;
- }
- inline void TestAllTypes::set_allocated_optional_proto2_message(::protobuf_unittest::TestAllTypes* optional_proto2_message) {
- ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
- if (message_arena == NULL) {
- delete reinterpret_cast< ::google::protobuf::MessageLite*>(optional_proto2_message_);
- }
- if (optional_proto2_message) {
- ::google::protobuf::Arena* submessage_arena =
- reinterpret_cast<::google::protobuf::MessageLite*>(optional_proto2_message)->GetArena();
- if (message_arena != submessage_arena) {
- optional_proto2_message = ::google::protobuf::internal::GetOwnedMessage(
- message_arena, optional_proto2_message, submessage_arena);
- }
-
- } else {
-
- }
- optional_proto2_message_ = optional_proto2_message;
- // @@protoc_insertion_point(field_set_allocated:proto2_nofieldpresence_unittest.TestAllTypes.optional_proto2_message)
- }
- // .proto2_nofieldpresence_unittest.TestAllTypes.NestedEnum optional_nested_enum = 21;
- inline void TestAllTypes::clear_optional_nested_enum() {
- optional_nested_enum_ = 0;
- }
- inline ::proto2_nofieldpresence_unittest::TestAllTypes_NestedEnum TestAllTypes::optional_nested_enum() const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.optional_nested_enum)
- return static_cast< ::proto2_nofieldpresence_unittest::TestAllTypes_NestedEnum >(optional_nested_enum_);
- }
- inline void TestAllTypes::set_optional_nested_enum(::proto2_nofieldpresence_unittest::TestAllTypes_NestedEnum value) {
-
- optional_nested_enum_ = value;
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.optional_nested_enum)
- }
- // .proto2_nofieldpresence_unittest.ForeignEnum optional_foreign_enum = 22;
- inline void TestAllTypes::clear_optional_foreign_enum() {
- optional_foreign_enum_ = 0;
- }
- inline ::proto2_nofieldpresence_unittest::ForeignEnum TestAllTypes::optional_foreign_enum() const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.optional_foreign_enum)
- return static_cast< ::proto2_nofieldpresence_unittest::ForeignEnum >(optional_foreign_enum_);
- }
- inline void TestAllTypes::set_optional_foreign_enum(::proto2_nofieldpresence_unittest::ForeignEnum value) {
-
- optional_foreign_enum_ = value;
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.optional_foreign_enum)
- }
- // string optional_string_piece = 24 [ctype = STRING_PIECE];
- inline void TestAllTypes::clear_optional_string_piece() {
- optional_string_piece_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline const ::std::string& TestAllTypes::optional_string_piece() const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.optional_string_piece)
- return optional_string_piece_.GetNoArena();
- }
- inline void TestAllTypes::set_optional_string_piece(const ::std::string& value) {
-
- optional_string_piece_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.optional_string_piece)
- }
- #if LANG_CXX11
- inline void TestAllTypes::set_optional_string_piece(::std::string&& value) {
-
- optional_string_piece_.SetNoArena(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
- // @@protoc_insertion_point(field_set_rvalue:proto2_nofieldpresence_unittest.TestAllTypes.optional_string_piece)
- }
- #endif
- inline void TestAllTypes::set_optional_string_piece(const char* value) {
- GOOGLE_DCHECK(value != NULL);
-
- optional_string_piece_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
- // @@protoc_insertion_point(field_set_char:proto2_nofieldpresence_unittest.TestAllTypes.optional_string_piece)
- }
- inline void TestAllTypes::set_optional_string_piece(const char* value, size_t size) {
-
- optional_string_piece_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- ::std::string(reinterpret_cast<const char*>(value), size));
- // @@protoc_insertion_point(field_set_pointer:proto2_nofieldpresence_unittest.TestAllTypes.optional_string_piece)
- }
- inline ::std::string* TestAllTypes::mutable_optional_string_piece() {
-
- // @@protoc_insertion_point(field_mutable:proto2_nofieldpresence_unittest.TestAllTypes.optional_string_piece)
- return optional_string_piece_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline ::std::string* TestAllTypes::release_optional_string_piece() {
- // @@protoc_insertion_point(field_release:proto2_nofieldpresence_unittest.TestAllTypes.optional_string_piece)
-
- return optional_string_piece_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline void TestAllTypes::set_allocated_optional_string_piece(::std::string* optional_string_piece) {
- if (optional_string_piece != NULL) {
-
- } else {
-
- }
- optional_string_piece_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), optional_string_piece);
- // @@protoc_insertion_point(field_set_allocated:proto2_nofieldpresence_unittest.TestAllTypes.optional_string_piece)
- }
- // string optional_cord = 25 [ctype = CORD];
- inline void TestAllTypes::clear_optional_cord() {
- optional_cord_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline const ::std::string& TestAllTypes::optional_cord() const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.optional_cord)
- return optional_cord_.GetNoArena();
- }
- inline void TestAllTypes::set_optional_cord(const ::std::string& value) {
-
- optional_cord_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.optional_cord)
- }
- #if LANG_CXX11
- inline void TestAllTypes::set_optional_cord(::std::string&& value) {
-
- optional_cord_.SetNoArena(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
- // @@protoc_insertion_point(field_set_rvalue:proto2_nofieldpresence_unittest.TestAllTypes.optional_cord)
- }
- #endif
- inline void TestAllTypes::set_optional_cord(const char* value) {
- GOOGLE_DCHECK(value != NULL);
-
- optional_cord_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
- // @@protoc_insertion_point(field_set_char:proto2_nofieldpresence_unittest.TestAllTypes.optional_cord)
- }
- inline void TestAllTypes::set_optional_cord(const char* value, size_t size) {
-
- optional_cord_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- ::std::string(reinterpret_cast<const char*>(value), size));
- // @@protoc_insertion_point(field_set_pointer:proto2_nofieldpresence_unittest.TestAllTypes.optional_cord)
- }
- inline ::std::string* TestAllTypes::mutable_optional_cord() {
-
- // @@protoc_insertion_point(field_mutable:proto2_nofieldpresence_unittest.TestAllTypes.optional_cord)
- return optional_cord_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline ::std::string* TestAllTypes::release_optional_cord() {
- // @@protoc_insertion_point(field_release:proto2_nofieldpresence_unittest.TestAllTypes.optional_cord)
-
- return optional_cord_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline void TestAllTypes::set_allocated_optional_cord(::std::string* optional_cord) {
- if (optional_cord != NULL) {
-
- } else {
-
- }
- optional_cord_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), optional_cord);
- // @@protoc_insertion_point(field_set_allocated:proto2_nofieldpresence_unittest.TestAllTypes.optional_cord)
- }
- // .proto2_nofieldpresence_unittest.TestAllTypes.NestedMessage optional_lazy_message = 30 [lazy = true];
- inline bool TestAllTypes::has_optional_lazy_message() const {
- return this != internal_default_instance() && optional_lazy_message_ != NULL;
- }
- inline void TestAllTypes::clear_optional_lazy_message() {
- if (GetArenaNoVirtual() == NULL && optional_lazy_message_ != NULL) {
- delete optional_lazy_message_;
- }
- optional_lazy_message_ = NULL;
- }
- inline const ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage& TestAllTypes::_internal_optional_lazy_message() const {
- return *optional_lazy_message_;
- }
- inline const ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage& TestAllTypes::optional_lazy_message() const {
- const ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* p = optional_lazy_message_;
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.optional_lazy_message)
- return p != NULL ? *p : *reinterpret_cast<const ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage*>(
- &::proto2_nofieldpresence_unittest::_TestAllTypes_NestedMessage_default_instance_);
- }
- inline ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* TestAllTypes::release_optional_lazy_message() {
- // @@protoc_insertion_point(field_release:proto2_nofieldpresence_unittest.TestAllTypes.optional_lazy_message)
-
- ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* temp = optional_lazy_message_;
- optional_lazy_message_ = NULL;
- return temp;
- }
- inline ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* TestAllTypes::mutable_optional_lazy_message() {
-
- if (optional_lazy_message_ == NULL) {
- auto* p = CreateMaybeMessage<::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage>(GetArenaNoVirtual());
- optional_lazy_message_ = p;
- }
- // @@protoc_insertion_point(field_mutable:proto2_nofieldpresence_unittest.TestAllTypes.optional_lazy_message)
- return optional_lazy_message_;
- }
- inline void TestAllTypes::set_allocated_optional_lazy_message(::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* optional_lazy_message) {
- ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
- if (message_arena == NULL) {
- delete optional_lazy_message_;
- }
- if (optional_lazy_message) {
- ::google::protobuf::Arena* submessage_arena = NULL;
- if (message_arena != submessage_arena) {
- optional_lazy_message = ::google::protobuf::internal::GetOwnedMessage(
- message_arena, optional_lazy_message, submessage_arena);
- }
-
- } else {
-
- }
- optional_lazy_message_ = optional_lazy_message;
- // @@protoc_insertion_point(field_set_allocated:proto2_nofieldpresence_unittest.TestAllTypes.optional_lazy_message)
- }
- // repeated int32 repeated_int32 = 31;
- inline int TestAllTypes::repeated_int32_size() const {
- return repeated_int32_.size();
- }
- inline void TestAllTypes::clear_repeated_int32() {
- repeated_int32_.Clear();
- }
- inline ::google::protobuf::int32 TestAllTypes::repeated_int32(int index) const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.repeated_int32)
- return repeated_int32_.Get(index);
- }
- inline void TestAllTypes::set_repeated_int32(int index, ::google::protobuf::int32 value) {
- repeated_int32_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.repeated_int32)
- }
- inline void TestAllTypes::add_repeated_int32(::google::protobuf::int32 value) {
- repeated_int32_.Add(value);
- // @@protoc_insertion_point(field_add:proto2_nofieldpresence_unittest.TestAllTypes.repeated_int32)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::int32 >&
- TestAllTypes::repeated_int32() const {
- // @@protoc_insertion_point(field_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_int32)
- return repeated_int32_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::int32 >*
- TestAllTypes::mutable_repeated_int32() {
- // @@protoc_insertion_point(field_mutable_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_int32)
- return &repeated_int32_;
- }
- // repeated int64 repeated_int64 = 32;
- inline int TestAllTypes::repeated_int64_size() const {
- return repeated_int64_.size();
- }
- inline void TestAllTypes::clear_repeated_int64() {
- repeated_int64_.Clear();
- }
- inline ::google::protobuf::int64 TestAllTypes::repeated_int64(int index) const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.repeated_int64)
- return repeated_int64_.Get(index);
- }
- inline void TestAllTypes::set_repeated_int64(int index, ::google::protobuf::int64 value) {
- repeated_int64_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.repeated_int64)
- }
- inline void TestAllTypes::add_repeated_int64(::google::protobuf::int64 value) {
- repeated_int64_.Add(value);
- // @@protoc_insertion_point(field_add:proto2_nofieldpresence_unittest.TestAllTypes.repeated_int64)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::int64 >&
- TestAllTypes::repeated_int64() const {
- // @@protoc_insertion_point(field_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_int64)
- return repeated_int64_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::int64 >*
- TestAllTypes::mutable_repeated_int64() {
- // @@protoc_insertion_point(field_mutable_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_int64)
- return &repeated_int64_;
- }
- // repeated uint32 repeated_uint32 = 33;
- inline int TestAllTypes::repeated_uint32_size() const {
- return repeated_uint32_.size();
- }
- inline void TestAllTypes::clear_repeated_uint32() {
- repeated_uint32_.Clear();
- }
- inline ::google::protobuf::uint32 TestAllTypes::repeated_uint32(int index) const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.repeated_uint32)
- return repeated_uint32_.Get(index);
- }
- inline void TestAllTypes::set_repeated_uint32(int index, ::google::protobuf::uint32 value) {
- repeated_uint32_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.repeated_uint32)
- }
- inline void TestAllTypes::add_repeated_uint32(::google::protobuf::uint32 value) {
- repeated_uint32_.Add(value);
- // @@protoc_insertion_point(field_add:proto2_nofieldpresence_unittest.TestAllTypes.repeated_uint32)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::uint32 >&
- TestAllTypes::repeated_uint32() const {
- // @@protoc_insertion_point(field_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_uint32)
- return repeated_uint32_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::uint32 >*
- TestAllTypes::mutable_repeated_uint32() {
- // @@protoc_insertion_point(field_mutable_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_uint32)
- return &repeated_uint32_;
- }
- // repeated uint64 repeated_uint64 = 34;
- inline int TestAllTypes::repeated_uint64_size() const {
- return repeated_uint64_.size();
- }
- inline void TestAllTypes::clear_repeated_uint64() {
- repeated_uint64_.Clear();
- }
- inline ::google::protobuf::uint64 TestAllTypes::repeated_uint64(int index) const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.repeated_uint64)
- return repeated_uint64_.Get(index);
- }
- inline void TestAllTypes::set_repeated_uint64(int index, ::google::protobuf::uint64 value) {
- repeated_uint64_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.repeated_uint64)
- }
- inline void TestAllTypes::add_repeated_uint64(::google::protobuf::uint64 value) {
- repeated_uint64_.Add(value);
- // @@protoc_insertion_point(field_add:proto2_nofieldpresence_unittest.TestAllTypes.repeated_uint64)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::uint64 >&
- TestAllTypes::repeated_uint64() const {
- // @@protoc_insertion_point(field_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_uint64)
- return repeated_uint64_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::uint64 >*
- TestAllTypes::mutable_repeated_uint64() {
- // @@protoc_insertion_point(field_mutable_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_uint64)
- return &repeated_uint64_;
- }
- // repeated sint32 repeated_sint32 = 35;
- inline int TestAllTypes::repeated_sint32_size() const {
- return repeated_sint32_.size();
- }
- inline void TestAllTypes::clear_repeated_sint32() {
- repeated_sint32_.Clear();
- }
- inline ::google::protobuf::int32 TestAllTypes::repeated_sint32(int index) const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.repeated_sint32)
- return repeated_sint32_.Get(index);
- }
- inline void TestAllTypes::set_repeated_sint32(int index, ::google::protobuf::int32 value) {
- repeated_sint32_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.repeated_sint32)
- }
- inline void TestAllTypes::add_repeated_sint32(::google::protobuf::int32 value) {
- repeated_sint32_.Add(value);
- // @@protoc_insertion_point(field_add:proto2_nofieldpresence_unittest.TestAllTypes.repeated_sint32)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::int32 >&
- TestAllTypes::repeated_sint32() const {
- // @@protoc_insertion_point(field_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_sint32)
- return repeated_sint32_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::int32 >*
- TestAllTypes::mutable_repeated_sint32() {
- // @@protoc_insertion_point(field_mutable_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_sint32)
- return &repeated_sint32_;
- }
- // repeated sint64 repeated_sint64 = 36;
- inline int TestAllTypes::repeated_sint64_size() const {
- return repeated_sint64_.size();
- }
- inline void TestAllTypes::clear_repeated_sint64() {
- repeated_sint64_.Clear();
- }
- inline ::google::protobuf::int64 TestAllTypes::repeated_sint64(int index) const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.repeated_sint64)
- return repeated_sint64_.Get(index);
- }
- inline void TestAllTypes::set_repeated_sint64(int index, ::google::protobuf::int64 value) {
- repeated_sint64_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.repeated_sint64)
- }
- inline void TestAllTypes::add_repeated_sint64(::google::protobuf::int64 value) {
- repeated_sint64_.Add(value);
- // @@protoc_insertion_point(field_add:proto2_nofieldpresence_unittest.TestAllTypes.repeated_sint64)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::int64 >&
- TestAllTypes::repeated_sint64() const {
- // @@protoc_insertion_point(field_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_sint64)
- return repeated_sint64_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::int64 >*
- TestAllTypes::mutable_repeated_sint64() {
- // @@protoc_insertion_point(field_mutable_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_sint64)
- return &repeated_sint64_;
- }
- // repeated fixed32 repeated_fixed32 = 37;
- inline int TestAllTypes::repeated_fixed32_size() const {
- return repeated_fixed32_.size();
- }
- inline void TestAllTypes::clear_repeated_fixed32() {
- repeated_fixed32_.Clear();
- }
- inline ::google::protobuf::uint32 TestAllTypes::repeated_fixed32(int index) const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.repeated_fixed32)
- return repeated_fixed32_.Get(index);
- }
- inline void TestAllTypes::set_repeated_fixed32(int index, ::google::protobuf::uint32 value) {
- repeated_fixed32_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.repeated_fixed32)
- }
- inline void TestAllTypes::add_repeated_fixed32(::google::protobuf::uint32 value) {
- repeated_fixed32_.Add(value);
- // @@protoc_insertion_point(field_add:proto2_nofieldpresence_unittest.TestAllTypes.repeated_fixed32)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::uint32 >&
- TestAllTypes::repeated_fixed32() const {
- // @@protoc_insertion_point(field_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_fixed32)
- return repeated_fixed32_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::uint32 >*
- TestAllTypes::mutable_repeated_fixed32() {
- // @@protoc_insertion_point(field_mutable_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_fixed32)
- return &repeated_fixed32_;
- }
- // repeated fixed64 repeated_fixed64 = 38;
- inline int TestAllTypes::repeated_fixed64_size() const {
- return repeated_fixed64_.size();
- }
- inline void TestAllTypes::clear_repeated_fixed64() {
- repeated_fixed64_.Clear();
- }
- inline ::google::protobuf::uint64 TestAllTypes::repeated_fixed64(int index) const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.repeated_fixed64)
- return repeated_fixed64_.Get(index);
- }
- inline void TestAllTypes::set_repeated_fixed64(int index, ::google::protobuf::uint64 value) {
- repeated_fixed64_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.repeated_fixed64)
- }
- inline void TestAllTypes::add_repeated_fixed64(::google::protobuf::uint64 value) {
- repeated_fixed64_.Add(value);
- // @@protoc_insertion_point(field_add:proto2_nofieldpresence_unittest.TestAllTypes.repeated_fixed64)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::uint64 >&
- TestAllTypes::repeated_fixed64() const {
- // @@protoc_insertion_point(field_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_fixed64)
- return repeated_fixed64_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::uint64 >*
- TestAllTypes::mutable_repeated_fixed64() {
- // @@protoc_insertion_point(field_mutable_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_fixed64)
- return &repeated_fixed64_;
- }
- // repeated sfixed32 repeated_sfixed32 = 39;
- inline int TestAllTypes::repeated_sfixed32_size() const {
- return repeated_sfixed32_.size();
- }
- inline void TestAllTypes::clear_repeated_sfixed32() {
- repeated_sfixed32_.Clear();
- }
- inline ::google::protobuf::int32 TestAllTypes::repeated_sfixed32(int index) const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.repeated_sfixed32)
- return repeated_sfixed32_.Get(index);
- }
- inline void TestAllTypes::set_repeated_sfixed32(int index, ::google::protobuf::int32 value) {
- repeated_sfixed32_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.repeated_sfixed32)
- }
- inline void TestAllTypes::add_repeated_sfixed32(::google::protobuf::int32 value) {
- repeated_sfixed32_.Add(value);
- // @@protoc_insertion_point(field_add:proto2_nofieldpresence_unittest.TestAllTypes.repeated_sfixed32)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::int32 >&
- TestAllTypes::repeated_sfixed32() const {
- // @@protoc_insertion_point(field_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_sfixed32)
- return repeated_sfixed32_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::int32 >*
- TestAllTypes::mutable_repeated_sfixed32() {
- // @@protoc_insertion_point(field_mutable_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_sfixed32)
- return &repeated_sfixed32_;
- }
- // repeated sfixed64 repeated_sfixed64 = 40;
- inline int TestAllTypes::repeated_sfixed64_size() const {
- return repeated_sfixed64_.size();
- }
- inline void TestAllTypes::clear_repeated_sfixed64() {
- repeated_sfixed64_.Clear();
- }
- inline ::google::protobuf::int64 TestAllTypes::repeated_sfixed64(int index) const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.repeated_sfixed64)
- return repeated_sfixed64_.Get(index);
- }
- inline void TestAllTypes::set_repeated_sfixed64(int index, ::google::protobuf::int64 value) {
- repeated_sfixed64_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.repeated_sfixed64)
- }
- inline void TestAllTypes::add_repeated_sfixed64(::google::protobuf::int64 value) {
- repeated_sfixed64_.Add(value);
- // @@protoc_insertion_point(field_add:proto2_nofieldpresence_unittest.TestAllTypes.repeated_sfixed64)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::int64 >&
- TestAllTypes::repeated_sfixed64() const {
- // @@protoc_insertion_point(field_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_sfixed64)
- return repeated_sfixed64_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::int64 >*
- TestAllTypes::mutable_repeated_sfixed64() {
- // @@protoc_insertion_point(field_mutable_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_sfixed64)
- return &repeated_sfixed64_;
- }
- // repeated float repeated_float = 41;
- inline int TestAllTypes::repeated_float_size() const {
- return repeated_float_.size();
- }
- inline void TestAllTypes::clear_repeated_float() {
- repeated_float_.Clear();
- }
- inline float TestAllTypes::repeated_float(int index) const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.repeated_float)
- return repeated_float_.Get(index);
- }
- inline void TestAllTypes::set_repeated_float(int index, float value) {
- repeated_float_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.repeated_float)
- }
- inline void TestAllTypes::add_repeated_float(float value) {
- repeated_float_.Add(value);
- // @@protoc_insertion_point(field_add:proto2_nofieldpresence_unittest.TestAllTypes.repeated_float)
- }
- inline const ::google::protobuf::RepeatedField< float >&
- TestAllTypes::repeated_float() const {
- // @@protoc_insertion_point(field_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_float)
- return repeated_float_;
- }
- inline ::google::protobuf::RepeatedField< float >*
- TestAllTypes::mutable_repeated_float() {
- // @@protoc_insertion_point(field_mutable_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_float)
- return &repeated_float_;
- }
- // repeated double repeated_double = 42;
- inline int TestAllTypes::repeated_double_size() const {
- return repeated_double_.size();
- }
- inline void TestAllTypes::clear_repeated_double() {
- repeated_double_.Clear();
- }
- inline double TestAllTypes::repeated_double(int index) const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.repeated_double)
- return repeated_double_.Get(index);
- }
- inline void TestAllTypes::set_repeated_double(int index, double value) {
- repeated_double_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.repeated_double)
- }
- inline void TestAllTypes::add_repeated_double(double value) {
- repeated_double_.Add(value);
- // @@protoc_insertion_point(field_add:proto2_nofieldpresence_unittest.TestAllTypes.repeated_double)
- }
- inline const ::google::protobuf::RepeatedField< double >&
- TestAllTypes::repeated_double() const {
- // @@protoc_insertion_point(field_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_double)
- return repeated_double_;
- }
- inline ::google::protobuf::RepeatedField< double >*
- TestAllTypes::mutable_repeated_double() {
- // @@protoc_insertion_point(field_mutable_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_double)
- return &repeated_double_;
- }
- // repeated bool repeated_bool = 43;
- inline int TestAllTypes::repeated_bool_size() const {
- return repeated_bool_.size();
- }
- inline void TestAllTypes::clear_repeated_bool() {
- repeated_bool_.Clear();
- }
- inline bool TestAllTypes::repeated_bool(int index) const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.repeated_bool)
- return repeated_bool_.Get(index);
- }
- inline void TestAllTypes::set_repeated_bool(int index, bool value) {
- repeated_bool_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.repeated_bool)
- }
- inline void TestAllTypes::add_repeated_bool(bool value) {
- repeated_bool_.Add(value);
- // @@protoc_insertion_point(field_add:proto2_nofieldpresence_unittest.TestAllTypes.repeated_bool)
- }
- inline const ::google::protobuf::RepeatedField< bool >&
- TestAllTypes::repeated_bool() const {
- // @@protoc_insertion_point(field_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_bool)
- return repeated_bool_;
- }
- inline ::google::protobuf::RepeatedField< bool >*
- TestAllTypes::mutable_repeated_bool() {
- // @@protoc_insertion_point(field_mutable_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_bool)
- return &repeated_bool_;
- }
- // repeated string repeated_string = 44;
- inline int TestAllTypes::repeated_string_size() const {
- return repeated_string_.size();
- }
- inline void TestAllTypes::clear_repeated_string() {
- repeated_string_.Clear();
- }
- inline const ::std::string& TestAllTypes::repeated_string(int index) const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.repeated_string)
- return repeated_string_.Get(index);
- }
- inline ::std::string* TestAllTypes::mutable_repeated_string(int index) {
- // @@protoc_insertion_point(field_mutable:proto2_nofieldpresence_unittest.TestAllTypes.repeated_string)
- return repeated_string_.Mutable(index);
- }
- inline void TestAllTypes::set_repeated_string(int index, const ::std::string& value) {
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.repeated_string)
- repeated_string_.Mutable(index)->assign(value);
- }
- #if LANG_CXX11
- inline void TestAllTypes::set_repeated_string(int index, ::std::string&& value) {
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.repeated_string)
- repeated_string_.Mutable(index)->assign(std::move(value));
- }
- #endif
- inline void TestAllTypes::set_repeated_string(int index, const char* value) {
- GOOGLE_DCHECK(value != NULL);
- repeated_string_.Mutable(index)->assign(value);
- // @@protoc_insertion_point(field_set_char:proto2_nofieldpresence_unittest.TestAllTypes.repeated_string)
- }
- inline void TestAllTypes::set_repeated_string(int index, const char* value, size_t size) {
- repeated_string_.Mutable(index)->assign(
- reinterpret_cast<const char*>(value), size);
- // @@protoc_insertion_point(field_set_pointer:proto2_nofieldpresence_unittest.TestAllTypes.repeated_string)
- }
- inline ::std::string* TestAllTypes::add_repeated_string() {
- // @@protoc_insertion_point(field_add_mutable:proto2_nofieldpresence_unittest.TestAllTypes.repeated_string)
- return repeated_string_.Add();
- }
- inline void TestAllTypes::add_repeated_string(const ::std::string& value) {
- repeated_string_.Add()->assign(value);
- // @@protoc_insertion_point(field_add:proto2_nofieldpresence_unittest.TestAllTypes.repeated_string)
- }
- #if LANG_CXX11
- inline void TestAllTypes::add_repeated_string(::std::string&& value) {
- repeated_string_.Add(std::move(value));
- // @@protoc_insertion_point(field_add:proto2_nofieldpresence_unittest.TestAllTypes.repeated_string)
- }
- #endif
- inline void TestAllTypes::add_repeated_string(const char* value) {
- GOOGLE_DCHECK(value != NULL);
- repeated_string_.Add()->assign(value);
- // @@protoc_insertion_point(field_add_char:proto2_nofieldpresence_unittest.TestAllTypes.repeated_string)
- }
- inline void TestAllTypes::add_repeated_string(const char* value, size_t size) {
- repeated_string_.Add()->assign(reinterpret_cast<const char*>(value), size);
- // @@protoc_insertion_point(field_add_pointer:proto2_nofieldpresence_unittest.TestAllTypes.repeated_string)
- }
- inline const ::google::protobuf::RepeatedPtrField< ::std::string>&
- TestAllTypes::repeated_string() const {
- // @@protoc_insertion_point(field_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_string)
- return repeated_string_;
- }
- inline ::google::protobuf::RepeatedPtrField< ::std::string>*
- TestAllTypes::mutable_repeated_string() {
- // @@protoc_insertion_point(field_mutable_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_string)
- return &repeated_string_;
- }
- // repeated bytes repeated_bytes = 45;
- inline int TestAllTypes::repeated_bytes_size() const {
- return repeated_bytes_.size();
- }
- inline void TestAllTypes::clear_repeated_bytes() {
- repeated_bytes_.Clear();
- }
- inline const ::std::string& TestAllTypes::repeated_bytes(int index) const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.repeated_bytes)
- return repeated_bytes_.Get(index);
- }
- inline ::std::string* TestAllTypes::mutable_repeated_bytes(int index) {
- // @@protoc_insertion_point(field_mutable:proto2_nofieldpresence_unittest.TestAllTypes.repeated_bytes)
- return repeated_bytes_.Mutable(index);
- }
- inline void TestAllTypes::set_repeated_bytes(int index, const ::std::string& value) {
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.repeated_bytes)
- repeated_bytes_.Mutable(index)->assign(value);
- }
- #if LANG_CXX11
- inline void TestAllTypes::set_repeated_bytes(int index, ::std::string&& value) {
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.repeated_bytes)
- repeated_bytes_.Mutable(index)->assign(std::move(value));
- }
- #endif
- inline void TestAllTypes::set_repeated_bytes(int index, const char* value) {
- GOOGLE_DCHECK(value != NULL);
- repeated_bytes_.Mutable(index)->assign(value);
- // @@protoc_insertion_point(field_set_char:proto2_nofieldpresence_unittest.TestAllTypes.repeated_bytes)
- }
- inline void TestAllTypes::set_repeated_bytes(int index, const void* value, size_t size) {
- repeated_bytes_.Mutable(index)->assign(
- reinterpret_cast<const char*>(value), size);
- // @@protoc_insertion_point(field_set_pointer:proto2_nofieldpresence_unittest.TestAllTypes.repeated_bytes)
- }
- inline ::std::string* TestAllTypes::add_repeated_bytes() {
- // @@protoc_insertion_point(field_add_mutable:proto2_nofieldpresence_unittest.TestAllTypes.repeated_bytes)
- return repeated_bytes_.Add();
- }
- inline void TestAllTypes::add_repeated_bytes(const ::std::string& value) {
- repeated_bytes_.Add()->assign(value);
- // @@protoc_insertion_point(field_add:proto2_nofieldpresence_unittest.TestAllTypes.repeated_bytes)
- }
- #if LANG_CXX11
- inline void TestAllTypes::add_repeated_bytes(::std::string&& value) {
- repeated_bytes_.Add(std::move(value));
- // @@protoc_insertion_point(field_add:proto2_nofieldpresence_unittest.TestAllTypes.repeated_bytes)
- }
- #endif
- inline void TestAllTypes::add_repeated_bytes(const char* value) {
- GOOGLE_DCHECK(value != NULL);
- repeated_bytes_.Add()->assign(value);
- // @@protoc_insertion_point(field_add_char:proto2_nofieldpresence_unittest.TestAllTypes.repeated_bytes)
- }
- inline void TestAllTypes::add_repeated_bytes(const void* value, size_t size) {
- repeated_bytes_.Add()->assign(reinterpret_cast<const char*>(value), size);
- // @@protoc_insertion_point(field_add_pointer:proto2_nofieldpresence_unittest.TestAllTypes.repeated_bytes)
- }
- inline const ::google::protobuf::RepeatedPtrField< ::std::string>&
- TestAllTypes::repeated_bytes() const {
- // @@protoc_insertion_point(field_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_bytes)
- return repeated_bytes_;
- }
- inline ::google::protobuf::RepeatedPtrField< ::std::string>*
- TestAllTypes::mutable_repeated_bytes() {
- // @@protoc_insertion_point(field_mutable_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_bytes)
- return &repeated_bytes_;
- }
- // repeated .proto2_nofieldpresence_unittest.TestAllTypes.NestedMessage repeated_nested_message = 48;
- inline int TestAllTypes::repeated_nested_message_size() const {
- return repeated_nested_message_.size();
- }
- inline void TestAllTypes::clear_repeated_nested_message() {
- repeated_nested_message_.Clear();
- }
- inline ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* TestAllTypes::mutable_repeated_nested_message(int index) {
- // @@protoc_insertion_point(field_mutable:proto2_nofieldpresence_unittest.TestAllTypes.repeated_nested_message)
- return repeated_nested_message_.Mutable(index);
- }
- inline ::google::protobuf::RepeatedPtrField< ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage >*
- TestAllTypes::mutable_repeated_nested_message() {
- // @@protoc_insertion_point(field_mutable_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_nested_message)
- return &repeated_nested_message_;
- }
- inline const ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage& TestAllTypes::repeated_nested_message(int index) const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.repeated_nested_message)
- return repeated_nested_message_.Get(index);
- }
- inline ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* TestAllTypes::add_repeated_nested_message() {
- // @@protoc_insertion_point(field_add:proto2_nofieldpresence_unittest.TestAllTypes.repeated_nested_message)
- return repeated_nested_message_.Add();
- }
- inline const ::google::protobuf::RepeatedPtrField< ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage >&
- TestAllTypes::repeated_nested_message() const {
- // @@protoc_insertion_point(field_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_nested_message)
- return repeated_nested_message_;
- }
- // repeated .proto2_nofieldpresence_unittest.ForeignMessage repeated_foreign_message = 49;
- inline int TestAllTypes::repeated_foreign_message_size() const {
- return repeated_foreign_message_.size();
- }
- inline void TestAllTypes::clear_repeated_foreign_message() {
- repeated_foreign_message_.Clear();
- }
- inline ::proto2_nofieldpresence_unittest::ForeignMessage* TestAllTypes::mutable_repeated_foreign_message(int index) {
- // @@protoc_insertion_point(field_mutable:proto2_nofieldpresence_unittest.TestAllTypes.repeated_foreign_message)
- return repeated_foreign_message_.Mutable(index);
- }
- inline ::google::protobuf::RepeatedPtrField< ::proto2_nofieldpresence_unittest::ForeignMessage >*
- TestAllTypes::mutable_repeated_foreign_message() {
- // @@protoc_insertion_point(field_mutable_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_foreign_message)
- return &repeated_foreign_message_;
- }
- inline const ::proto2_nofieldpresence_unittest::ForeignMessage& TestAllTypes::repeated_foreign_message(int index) const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.repeated_foreign_message)
- return repeated_foreign_message_.Get(index);
- }
- inline ::proto2_nofieldpresence_unittest::ForeignMessage* TestAllTypes::add_repeated_foreign_message() {
- // @@protoc_insertion_point(field_add:proto2_nofieldpresence_unittest.TestAllTypes.repeated_foreign_message)
- return repeated_foreign_message_.Add();
- }
- inline const ::google::protobuf::RepeatedPtrField< ::proto2_nofieldpresence_unittest::ForeignMessage >&
- TestAllTypes::repeated_foreign_message() const {
- // @@protoc_insertion_point(field_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_foreign_message)
- return repeated_foreign_message_;
- }
- // repeated .protobuf_unittest.TestAllTypes repeated_proto2_message = 50;
- inline int TestAllTypes::repeated_proto2_message_size() const {
- return repeated_proto2_message_.size();
- }
- inline ::protobuf_unittest::TestAllTypes* TestAllTypes::mutable_repeated_proto2_message(int index) {
- // @@protoc_insertion_point(field_mutable:proto2_nofieldpresence_unittest.TestAllTypes.repeated_proto2_message)
- return repeated_proto2_message_.Mutable(index);
- }
- inline ::google::protobuf::RepeatedPtrField< ::protobuf_unittest::TestAllTypes >*
- TestAllTypes::mutable_repeated_proto2_message() {
- // @@protoc_insertion_point(field_mutable_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_proto2_message)
- return &repeated_proto2_message_;
- }
- inline const ::protobuf_unittest::TestAllTypes& TestAllTypes::repeated_proto2_message(int index) const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.repeated_proto2_message)
- return repeated_proto2_message_.Get(index);
- }
- inline ::protobuf_unittest::TestAllTypes* TestAllTypes::add_repeated_proto2_message() {
- // @@protoc_insertion_point(field_add:proto2_nofieldpresence_unittest.TestAllTypes.repeated_proto2_message)
- return repeated_proto2_message_.Add();
- }
- inline const ::google::protobuf::RepeatedPtrField< ::protobuf_unittest::TestAllTypes >&
- TestAllTypes::repeated_proto2_message() const {
- // @@protoc_insertion_point(field_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_proto2_message)
- return repeated_proto2_message_;
- }
- // repeated .proto2_nofieldpresence_unittest.TestAllTypes.NestedEnum repeated_nested_enum = 51;
- inline int TestAllTypes::repeated_nested_enum_size() const {
- return repeated_nested_enum_.size();
- }
- inline void TestAllTypes::clear_repeated_nested_enum() {
- repeated_nested_enum_.Clear();
- }
- inline ::proto2_nofieldpresence_unittest::TestAllTypes_NestedEnum TestAllTypes::repeated_nested_enum(int index) const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.repeated_nested_enum)
- return static_cast< ::proto2_nofieldpresence_unittest::TestAllTypes_NestedEnum >(repeated_nested_enum_.Get(index));
- }
- inline void TestAllTypes::set_repeated_nested_enum(int index, ::proto2_nofieldpresence_unittest::TestAllTypes_NestedEnum value) {
- repeated_nested_enum_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.repeated_nested_enum)
- }
- inline void TestAllTypes::add_repeated_nested_enum(::proto2_nofieldpresence_unittest::TestAllTypes_NestedEnum value) {
- repeated_nested_enum_.Add(value);
- // @@protoc_insertion_point(field_add:proto2_nofieldpresence_unittest.TestAllTypes.repeated_nested_enum)
- }
- inline const ::google::protobuf::RepeatedField<int>&
- TestAllTypes::repeated_nested_enum() const {
- // @@protoc_insertion_point(field_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_nested_enum)
- return repeated_nested_enum_;
- }
- inline ::google::protobuf::RepeatedField<int>*
- TestAllTypes::mutable_repeated_nested_enum() {
- // @@protoc_insertion_point(field_mutable_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_nested_enum)
- return &repeated_nested_enum_;
- }
- // repeated .proto2_nofieldpresence_unittest.ForeignEnum repeated_foreign_enum = 52;
- inline int TestAllTypes::repeated_foreign_enum_size() const {
- return repeated_foreign_enum_.size();
- }
- inline void TestAllTypes::clear_repeated_foreign_enum() {
- repeated_foreign_enum_.Clear();
- }
- inline ::proto2_nofieldpresence_unittest::ForeignEnum TestAllTypes::repeated_foreign_enum(int index) const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.repeated_foreign_enum)
- return static_cast< ::proto2_nofieldpresence_unittest::ForeignEnum >(repeated_foreign_enum_.Get(index));
- }
- inline void TestAllTypes::set_repeated_foreign_enum(int index, ::proto2_nofieldpresence_unittest::ForeignEnum value) {
- repeated_foreign_enum_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.repeated_foreign_enum)
- }
- inline void TestAllTypes::add_repeated_foreign_enum(::proto2_nofieldpresence_unittest::ForeignEnum value) {
- repeated_foreign_enum_.Add(value);
- // @@protoc_insertion_point(field_add:proto2_nofieldpresence_unittest.TestAllTypes.repeated_foreign_enum)
- }
- inline const ::google::protobuf::RepeatedField<int>&
- TestAllTypes::repeated_foreign_enum() const {
- // @@protoc_insertion_point(field_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_foreign_enum)
- return repeated_foreign_enum_;
- }
- inline ::google::protobuf::RepeatedField<int>*
- TestAllTypes::mutable_repeated_foreign_enum() {
- // @@protoc_insertion_point(field_mutable_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_foreign_enum)
- return &repeated_foreign_enum_;
- }
- // repeated string repeated_string_piece = 54 [ctype = STRING_PIECE];
- inline int TestAllTypes::repeated_string_piece_size() const {
- return repeated_string_piece_.size();
- }
- inline void TestAllTypes::clear_repeated_string_piece() {
- repeated_string_piece_.Clear();
- }
- inline const ::std::string& TestAllTypes::repeated_string_piece(int index) const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.repeated_string_piece)
- return repeated_string_piece_.Get(index);
- }
- inline ::std::string* TestAllTypes::mutable_repeated_string_piece(int index) {
- // @@protoc_insertion_point(field_mutable:proto2_nofieldpresence_unittest.TestAllTypes.repeated_string_piece)
- return repeated_string_piece_.Mutable(index);
- }
- inline void TestAllTypes::set_repeated_string_piece(int index, const ::std::string& value) {
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.repeated_string_piece)
- repeated_string_piece_.Mutable(index)->assign(value);
- }
- #if LANG_CXX11
- inline void TestAllTypes::set_repeated_string_piece(int index, ::std::string&& value) {
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.repeated_string_piece)
- repeated_string_piece_.Mutable(index)->assign(std::move(value));
- }
- #endif
- inline void TestAllTypes::set_repeated_string_piece(int index, const char* value) {
- GOOGLE_DCHECK(value != NULL);
- repeated_string_piece_.Mutable(index)->assign(value);
- // @@protoc_insertion_point(field_set_char:proto2_nofieldpresence_unittest.TestAllTypes.repeated_string_piece)
- }
- inline void TestAllTypes::set_repeated_string_piece(int index, const char* value, size_t size) {
- repeated_string_piece_.Mutable(index)->assign(
- reinterpret_cast<const char*>(value), size);
- // @@protoc_insertion_point(field_set_pointer:proto2_nofieldpresence_unittest.TestAllTypes.repeated_string_piece)
- }
- inline ::std::string* TestAllTypes::add_repeated_string_piece() {
- // @@protoc_insertion_point(field_add_mutable:proto2_nofieldpresence_unittest.TestAllTypes.repeated_string_piece)
- return repeated_string_piece_.Add();
- }
- inline void TestAllTypes::add_repeated_string_piece(const ::std::string& value) {
- repeated_string_piece_.Add()->assign(value);
- // @@protoc_insertion_point(field_add:proto2_nofieldpresence_unittest.TestAllTypes.repeated_string_piece)
- }
- #if LANG_CXX11
- inline void TestAllTypes::add_repeated_string_piece(::std::string&& value) {
- repeated_string_piece_.Add(std::move(value));
- // @@protoc_insertion_point(field_add:proto2_nofieldpresence_unittest.TestAllTypes.repeated_string_piece)
- }
- #endif
- inline void TestAllTypes::add_repeated_string_piece(const char* value) {
- GOOGLE_DCHECK(value != NULL);
- repeated_string_piece_.Add()->assign(value);
- // @@protoc_insertion_point(field_add_char:proto2_nofieldpresence_unittest.TestAllTypes.repeated_string_piece)
- }
- inline void TestAllTypes::add_repeated_string_piece(const char* value, size_t size) {
- repeated_string_piece_.Add()->assign(reinterpret_cast<const char*>(value), size);
- // @@protoc_insertion_point(field_add_pointer:proto2_nofieldpresence_unittest.TestAllTypes.repeated_string_piece)
- }
- inline const ::google::protobuf::RepeatedPtrField< ::std::string>&
- TestAllTypes::repeated_string_piece() const {
- // @@protoc_insertion_point(field_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_string_piece)
- return repeated_string_piece_;
- }
- inline ::google::protobuf::RepeatedPtrField< ::std::string>*
- TestAllTypes::mutable_repeated_string_piece() {
- // @@protoc_insertion_point(field_mutable_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_string_piece)
- return &repeated_string_piece_;
- }
- // repeated string repeated_cord = 55 [ctype = CORD];
- inline int TestAllTypes::repeated_cord_size() const {
- return repeated_cord_.size();
- }
- inline void TestAllTypes::clear_repeated_cord() {
- repeated_cord_.Clear();
- }
- inline const ::std::string& TestAllTypes::repeated_cord(int index) const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.repeated_cord)
- return repeated_cord_.Get(index);
- }
- inline ::std::string* TestAllTypes::mutable_repeated_cord(int index) {
- // @@protoc_insertion_point(field_mutable:proto2_nofieldpresence_unittest.TestAllTypes.repeated_cord)
- return repeated_cord_.Mutable(index);
- }
- inline void TestAllTypes::set_repeated_cord(int index, const ::std::string& value) {
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.repeated_cord)
- repeated_cord_.Mutable(index)->assign(value);
- }
- #if LANG_CXX11
- inline void TestAllTypes::set_repeated_cord(int index, ::std::string&& value) {
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.repeated_cord)
- repeated_cord_.Mutable(index)->assign(std::move(value));
- }
- #endif
- inline void TestAllTypes::set_repeated_cord(int index, const char* value) {
- GOOGLE_DCHECK(value != NULL);
- repeated_cord_.Mutable(index)->assign(value);
- // @@protoc_insertion_point(field_set_char:proto2_nofieldpresence_unittest.TestAllTypes.repeated_cord)
- }
- inline void TestAllTypes::set_repeated_cord(int index, const char* value, size_t size) {
- repeated_cord_.Mutable(index)->assign(
- reinterpret_cast<const char*>(value), size);
- // @@protoc_insertion_point(field_set_pointer:proto2_nofieldpresence_unittest.TestAllTypes.repeated_cord)
- }
- inline ::std::string* TestAllTypes::add_repeated_cord() {
- // @@protoc_insertion_point(field_add_mutable:proto2_nofieldpresence_unittest.TestAllTypes.repeated_cord)
- return repeated_cord_.Add();
- }
- inline void TestAllTypes::add_repeated_cord(const ::std::string& value) {
- repeated_cord_.Add()->assign(value);
- // @@protoc_insertion_point(field_add:proto2_nofieldpresence_unittest.TestAllTypes.repeated_cord)
- }
- #if LANG_CXX11
- inline void TestAllTypes::add_repeated_cord(::std::string&& value) {
- repeated_cord_.Add(std::move(value));
- // @@protoc_insertion_point(field_add:proto2_nofieldpresence_unittest.TestAllTypes.repeated_cord)
- }
- #endif
- inline void TestAllTypes::add_repeated_cord(const char* value) {
- GOOGLE_DCHECK(value != NULL);
- repeated_cord_.Add()->assign(value);
- // @@protoc_insertion_point(field_add_char:proto2_nofieldpresence_unittest.TestAllTypes.repeated_cord)
- }
- inline void TestAllTypes::add_repeated_cord(const char* value, size_t size) {
- repeated_cord_.Add()->assign(reinterpret_cast<const char*>(value), size);
- // @@protoc_insertion_point(field_add_pointer:proto2_nofieldpresence_unittest.TestAllTypes.repeated_cord)
- }
- inline const ::google::protobuf::RepeatedPtrField< ::std::string>&
- TestAllTypes::repeated_cord() const {
- // @@protoc_insertion_point(field_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_cord)
- return repeated_cord_;
- }
- inline ::google::protobuf::RepeatedPtrField< ::std::string>*
- TestAllTypes::mutable_repeated_cord() {
- // @@protoc_insertion_point(field_mutable_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_cord)
- return &repeated_cord_;
- }
- // repeated .proto2_nofieldpresence_unittest.TestAllTypes.NestedMessage repeated_lazy_message = 57 [lazy = true];
- inline int TestAllTypes::repeated_lazy_message_size() const {
- return repeated_lazy_message_.size();
- }
- inline void TestAllTypes::clear_repeated_lazy_message() {
- repeated_lazy_message_.Clear();
- }
- inline ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* TestAllTypes::mutable_repeated_lazy_message(int index) {
- // @@protoc_insertion_point(field_mutable:proto2_nofieldpresence_unittest.TestAllTypes.repeated_lazy_message)
- return repeated_lazy_message_.Mutable(index);
- }
- inline ::google::protobuf::RepeatedPtrField< ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage >*
- TestAllTypes::mutable_repeated_lazy_message() {
- // @@protoc_insertion_point(field_mutable_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_lazy_message)
- return &repeated_lazy_message_;
- }
- inline const ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage& TestAllTypes::repeated_lazy_message(int index) const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.repeated_lazy_message)
- return repeated_lazy_message_.Get(index);
- }
- inline ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* TestAllTypes::add_repeated_lazy_message() {
- // @@protoc_insertion_point(field_add:proto2_nofieldpresence_unittest.TestAllTypes.repeated_lazy_message)
- return repeated_lazy_message_.Add();
- }
- inline const ::google::protobuf::RepeatedPtrField< ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage >&
- TestAllTypes::repeated_lazy_message() const {
- // @@protoc_insertion_point(field_list:proto2_nofieldpresence_unittest.TestAllTypes.repeated_lazy_message)
- return repeated_lazy_message_;
- }
- // uint32 oneof_uint32 = 111;
- inline bool TestAllTypes::has_oneof_uint32() const {
- return oneof_field_case() == kOneofUint32;
- }
- inline void TestAllTypes::set_has_oneof_uint32() {
- _oneof_case_[0] = kOneofUint32;
- }
- inline void TestAllTypes::clear_oneof_uint32() {
- if (has_oneof_uint32()) {
- oneof_field_.oneof_uint32_ = 0u;
- clear_has_oneof_field();
- }
- }
- inline ::google::protobuf::uint32 TestAllTypes::oneof_uint32() const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.oneof_uint32)
- if (has_oneof_uint32()) {
- return oneof_field_.oneof_uint32_;
- }
- return 0u;
- }
- inline void TestAllTypes::set_oneof_uint32(::google::protobuf::uint32 value) {
- if (!has_oneof_uint32()) {
- clear_oneof_field();
- set_has_oneof_uint32();
- }
- oneof_field_.oneof_uint32_ = value;
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.oneof_uint32)
- }
- // .proto2_nofieldpresence_unittest.TestAllTypes.NestedMessage oneof_nested_message = 112;
- inline bool TestAllTypes::has_oneof_nested_message() const {
- return oneof_field_case() == kOneofNestedMessage;
- }
- inline void TestAllTypes::set_has_oneof_nested_message() {
- _oneof_case_[0] = kOneofNestedMessage;
- }
- inline void TestAllTypes::clear_oneof_nested_message() {
- if (has_oneof_nested_message()) {
- delete oneof_field_.oneof_nested_message_;
- clear_has_oneof_field();
- }
- }
- inline const ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage& TestAllTypes::_internal_oneof_nested_message() const {
- return *oneof_field_.oneof_nested_message_;
- }
- inline ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* TestAllTypes::release_oneof_nested_message() {
- // @@protoc_insertion_point(field_release:proto2_nofieldpresence_unittest.TestAllTypes.oneof_nested_message)
- if (has_oneof_nested_message()) {
- clear_has_oneof_field();
- ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* temp = oneof_field_.oneof_nested_message_;
- oneof_field_.oneof_nested_message_ = NULL;
- return temp;
- } else {
- return NULL;
- }
- }
- inline const ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage& TestAllTypes::oneof_nested_message() const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.oneof_nested_message)
- return has_oneof_nested_message()
- ? *oneof_field_.oneof_nested_message_
- : *reinterpret_cast< ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage*>(&::proto2_nofieldpresence_unittest::_TestAllTypes_NestedMessage_default_instance_);
- }
- inline ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage* TestAllTypes::mutable_oneof_nested_message() {
- if (!has_oneof_nested_message()) {
- clear_oneof_field();
- set_has_oneof_nested_message();
- oneof_field_.oneof_nested_message_ = CreateMaybeMessage< ::proto2_nofieldpresence_unittest::TestAllTypes_NestedMessage >(
- GetArenaNoVirtual());
- }
- // @@protoc_insertion_point(field_mutable:proto2_nofieldpresence_unittest.TestAllTypes.oneof_nested_message)
- return oneof_field_.oneof_nested_message_;
- }
- // string oneof_string = 113;
- inline bool TestAllTypes::has_oneof_string() const {
- return oneof_field_case() == kOneofString;
- }
- inline void TestAllTypes::set_has_oneof_string() {
- _oneof_case_[0] = kOneofString;
- }
- inline void TestAllTypes::clear_oneof_string() {
- if (has_oneof_string()) {
- oneof_field_.oneof_string_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- clear_has_oneof_field();
- }
- }
- inline const ::std::string& TestAllTypes::oneof_string() const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.oneof_string)
- if (has_oneof_string()) {
- return oneof_field_.oneof_string_.GetNoArena();
- }
- return *&::google::protobuf::internal::GetEmptyStringAlreadyInited();
- }
- inline void TestAllTypes::set_oneof_string(const ::std::string& value) {
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.oneof_string)
- if (!has_oneof_string()) {
- clear_oneof_field();
- set_has_oneof_string();
- oneof_field_.oneof_string_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- oneof_field_.oneof_string_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.oneof_string)
- }
- #if LANG_CXX11
- inline void TestAllTypes::set_oneof_string(::std::string&& value) {
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.oneof_string)
- if (!has_oneof_string()) {
- clear_oneof_field();
- set_has_oneof_string();
- oneof_field_.oneof_string_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- oneof_field_.oneof_string_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
- // @@protoc_insertion_point(field_set_rvalue:proto2_nofieldpresence_unittest.TestAllTypes.oneof_string)
- }
- #endif
- inline void TestAllTypes::set_oneof_string(const char* value) {
- GOOGLE_DCHECK(value != NULL);
- if (!has_oneof_string()) {
- clear_oneof_field();
- set_has_oneof_string();
- oneof_field_.oneof_string_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- oneof_field_.oneof_string_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- ::std::string(value));
- // @@protoc_insertion_point(field_set_char:proto2_nofieldpresence_unittest.TestAllTypes.oneof_string)
- }
- inline void TestAllTypes::set_oneof_string(const char* value, size_t size) {
- if (!has_oneof_string()) {
- clear_oneof_field();
- set_has_oneof_string();
- oneof_field_.oneof_string_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- oneof_field_.oneof_string_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(
- reinterpret_cast<const char*>(value), size));
- // @@protoc_insertion_point(field_set_pointer:proto2_nofieldpresence_unittest.TestAllTypes.oneof_string)
- }
- inline ::std::string* TestAllTypes::mutable_oneof_string() {
- if (!has_oneof_string()) {
- clear_oneof_field();
- set_has_oneof_string();
- oneof_field_.oneof_string_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- // @@protoc_insertion_point(field_mutable:proto2_nofieldpresence_unittest.TestAllTypes.oneof_string)
- return oneof_field_.oneof_string_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline ::std::string* TestAllTypes::release_oneof_string() {
- // @@protoc_insertion_point(field_release:proto2_nofieldpresence_unittest.TestAllTypes.oneof_string)
- if (has_oneof_string()) {
- clear_has_oneof_field();
- return oneof_field_.oneof_string_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- } else {
- return NULL;
- }
- }
- inline void TestAllTypes::set_allocated_oneof_string(::std::string* oneof_string) {
- if (!has_oneof_string()) {
- oneof_field_.oneof_string_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- clear_oneof_field();
- if (oneof_string != NULL) {
- set_has_oneof_string();
- oneof_field_.oneof_string_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), oneof_string);
- }
- // @@protoc_insertion_point(field_set_allocated:proto2_nofieldpresence_unittest.TestAllTypes.oneof_string)
- }
- // .proto2_nofieldpresence_unittest.TestAllTypes.NestedEnum oneof_enum = 114;
- inline bool TestAllTypes::has_oneof_enum() const {
- return oneof_field_case() == kOneofEnum;
- }
- inline void TestAllTypes::set_has_oneof_enum() {
- _oneof_case_[0] = kOneofEnum;
- }
- inline void TestAllTypes::clear_oneof_enum() {
- if (has_oneof_enum()) {
- oneof_field_.oneof_enum_ = 0;
- clear_has_oneof_field();
- }
- }
- inline ::proto2_nofieldpresence_unittest::TestAllTypes_NestedEnum TestAllTypes::oneof_enum() const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestAllTypes.oneof_enum)
- if (has_oneof_enum()) {
- return static_cast< ::proto2_nofieldpresence_unittest::TestAllTypes_NestedEnum >(oneof_field_.oneof_enum_);
- }
- return static_cast< ::proto2_nofieldpresence_unittest::TestAllTypes_NestedEnum >(0);
- }
- inline void TestAllTypes::set_oneof_enum(::proto2_nofieldpresence_unittest::TestAllTypes_NestedEnum value) {
- if (!has_oneof_enum()) {
- clear_oneof_field();
- set_has_oneof_enum();
- }
- oneof_field_.oneof_enum_ = value;
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.TestAllTypes.oneof_enum)
- }
- inline bool TestAllTypes::has_oneof_field() const {
- return oneof_field_case() != ONEOF_FIELD_NOT_SET;
- }
- inline void TestAllTypes::clear_has_oneof_field() {
- _oneof_case_[0] = ONEOF_FIELD_NOT_SET;
- }
- inline TestAllTypes::OneofFieldCase TestAllTypes::oneof_field_case() const {
- return TestAllTypes::OneofFieldCase(_oneof_case_[0]);
- }
- // -------------------------------------------------------------------
- // TestProto2Required
- // .protobuf_unittest.TestRequired proto2 = 1;
- inline bool TestProto2Required::has_proto2() const {
- return this != internal_default_instance() && proto2_ != NULL;
- }
- inline const ::protobuf_unittest::TestRequired& TestProto2Required::_internal_proto2() const {
- return *proto2_;
- }
- inline const ::protobuf_unittest::TestRequired& TestProto2Required::proto2() const {
- const ::protobuf_unittest::TestRequired* p = proto2_;
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.TestProto2Required.proto2)
- return p != NULL ? *p : *reinterpret_cast<const ::protobuf_unittest::TestRequired*>(
- &::protobuf_unittest::_TestRequired_default_instance_);
- }
- inline ::protobuf_unittest::TestRequired* TestProto2Required::release_proto2() {
- // @@protoc_insertion_point(field_release:proto2_nofieldpresence_unittest.TestProto2Required.proto2)
-
- ::protobuf_unittest::TestRequired* temp = proto2_;
- proto2_ = NULL;
- return temp;
- }
- inline ::protobuf_unittest::TestRequired* TestProto2Required::mutable_proto2() {
-
- if (proto2_ == NULL) {
- auto* p = CreateMaybeMessage<::protobuf_unittest::TestRequired>(GetArenaNoVirtual());
- proto2_ = p;
- }
- // @@protoc_insertion_point(field_mutable:proto2_nofieldpresence_unittest.TestProto2Required.proto2)
- return proto2_;
- }
- inline void TestProto2Required::set_allocated_proto2(::protobuf_unittest::TestRequired* proto2) {
- ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
- if (message_arena == NULL) {
- delete reinterpret_cast< ::google::protobuf::MessageLite*>(proto2_);
- }
- if (proto2) {
- ::google::protobuf::Arena* submessage_arena =
- reinterpret_cast<::google::protobuf::MessageLite*>(proto2)->GetArena();
- if (message_arena != submessage_arena) {
- proto2 = ::google::protobuf::internal::GetOwnedMessage(
- message_arena, proto2, submessage_arena);
- }
-
- } else {
-
- }
- proto2_ = proto2;
- // @@protoc_insertion_point(field_set_allocated:proto2_nofieldpresence_unittest.TestProto2Required.proto2)
- }
- // -------------------------------------------------------------------
- // ForeignMessage
- // int32 c = 1;
- inline void ForeignMessage::clear_c() {
- c_ = 0;
- }
- inline ::google::protobuf::int32 ForeignMessage::c() const {
- // @@protoc_insertion_point(field_get:proto2_nofieldpresence_unittest.ForeignMessage.c)
- return c_;
- }
- inline void ForeignMessage::set_c(::google::protobuf::int32 value) {
-
- c_ = value;
- // @@protoc_insertion_point(field_set:proto2_nofieldpresence_unittest.ForeignMessage.c)
- }
- #ifdef __GNUC__
- #pragma GCC diagnostic pop
- #endif // __GNUC__
- // -------------------------------------------------------------------
- // -------------------------------------------------------------------
- // -------------------------------------------------------------------
- // @@protoc_insertion_point(namespace_scope)
- } // namespace proto2_nofieldpresence_unittest
- namespace google {
- namespace protobuf {
- template <> struct is_proto_enum< ::proto2_nofieldpresence_unittest::TestAllTypes_NestedEnum> : ::std::true_type {};
- template <>
- inline const EnumDescriptor* GetEnumDescriptor< ::proto2_nofieldpresence_unittest::TestAllTypes_NestedEnum>() {
- return ::proto2_nofieldpresence_unittest::TestAllTypes_NestedEnum_descriptor();
- }
- template <> struct is_proto_enum< ::proto2_nofieldpresence_unittest::ForeignEnum> : ::std::true_type {};
- template <>
- inline const EnumDescriptor* GetEnumDescriptor< ::proto2_nofieldpresence_unittest::ForeignEnum>() {
- return ::proto2_nofieldpresence_unittest::ForeignEnum_descriptor();
- }
- } // namespace protobuf
- } // namespace google
- // @@protoc_insertion_point(global_scope)
- #endif // PROTOBUF_INCLUDED_google_2fprotobuf_2funittest_5fno_5ffield_5fpresence_2eproto
|