123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145 |
- // Generated by the protocol buffer compiler. DO NOT EDIT!
- // source: google/protobuf/unittest_proto3_arena_lite.proto
- #ifndef PROTOBUF_INCLUDED_google_2fprotobuf_2funittest_5fproto3_5farena_5flite_2eproto
- #define PROTOBUF_INCLUDED_google_2fprotobuf_2funittest_5fproto3_5farena_5flite_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_lite.h>
- #include <google/protobuf/message_lite.h>
- #include <google/protobuf/repeated_field.h> // IWYU pragma: export
- #include <google/protobuf/extension_set.h> // IWYU pragma: export
- #include <google/protobuf/generated_enum_util.h>
- #include <google/protobuf/unittest_import.pb.h>
- // @@protoc_insertion_point(includes)
- #define PROTOBUF_INTERNAL_EXPORT_protobuf_google_2fprotobuf_2funittest_5fproto3_5farena_5flite_2eproto
- namespace protobuf_google_2fprotobuf_2funittest_5fproto3_5farena_5flite_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[7];
- static const ::google::protobuf::internal::FieldMetadata field_metadata[];
- static const ::google::protobuf::internal::SerializationTable serialization_table[];
- static const ::google::protobuf::uint32 offsets[];
- };
- } // namespace protobuf_google_2fprotobuf_2funittest_5fproto3_5farena_5flite_2eproto
- namespace proto3_arena_lite_unittest {
- class ForeignMessage;
- class ForeignMessageDefaultTypeInternal;
- extern ForeignMessageDefaultTypeInternal _ForeignMessage_default_instance_;
- class NestedTestAllTypes;
- class NestedTestAllTypesDefaultTypeInternal;
- extern NestedTestAllTypesDefaultTypeInternal _NestedTestAllTypes_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 TestEmptyMessage;
- class TestEmptyMessageDefaultTypeInternal;
- extern TestEmptyMessageDefaultTypeInternal _TestEmptyMessage_default_instance_;
- class TestPackedTypes;
- class TestPackedTypesDefaultTypeInternal;
- extern TestPackedTypesDefaultTypeInternal _TestPackedTypes_default_instance_;
- class TestUnpackedTypes;
- class TestUnpackedTypesDefaultTypeInternal;
- extern TestUnpackedTypesDefaultTypeInternal _TestUnpackedTypes_default_instance_;
- } // namespace proto3_arena_lite_unittest
- namespace google {
- namespace protobuf {
- template<> ::proto3_arena_lite_unittest::ForeignMessage* Arena::CreateMaybeMessage<::proto3_arena_lite_unittest::ForeignMessage>(Arena*);
- template<> ::proto3_arena_lite_unittest::NestedTestAllTypes* Arena::CreateMaybeMessage<::proto3_arena_lite_unittest::NestedTestAllTypes>(Arena*);
- template<> ::proto3_arena_lite_unittest::TestAllTypes* Arena::CreateMaybeMessage<::proto3_arena_lite_unittest::TestAllTypes>(Arena*);
- template<> ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* Arena::CreateMaybeMessage<::proto3_arena_lite_unittest::TestAllTypes_NestedMessage>(Arena*);
- template<> ::proto3_arena_lite_unittest::TestEmptyMessage* Arena::CreateMaybeMessage<::proto3_arena_lite_unittest::TestEmptyMessage>(Arena*);
- template<> ::proto3_arena_lite_unittest::TestPackedTypes* Arena::CreateMaybeMessage<::proto3_arena_lite_unittest::TestPackedTypes>(Arena*);
- template<> ::proto3_arena_lite_unittest::TestUnpackedTypes* Arena::CreateMaybeMessage<::proto3_arena_lite_unittest::TestUnpackedTypes>(Arena*);
- } // namespace protobuf
- } // namespace google
- namespace proto3_arena_lite_unittest {
- enum TestAllTypes_NestedEnum {
- TestAllTypes_NestedEnum_ZERO = 0,
- TestAllTypes_NestedEnum_FOO = 1,
- TestAllTypes_NestedEnum_BAR = 2,
- TestAllTypes_NestedEnum_BAZ = 3,
- TestAllTypes_NestedEnum_NEG = -1,
- 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_NEG;
- const TestAllTypes_NestedEnum TestAllTypes_NestedEnum_NestedEnum_MAX = TestAllTypes_NestedEnum_BAZ;
- const int TestAllTypes_NestedEnum_NestedEnum_ARRAYSIZE = TestAllTypes_NestedEnum_NestedEnum_MAX + 1;
- enum ForeignEnum {
- FOREIGN_ZERO = 0,
- FOREIGN_FOO = 4,
- FOREIGN_BAR = 5,
- FOREIGN_BAZ = 6,
- 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_ZERO;
- const ForeignEnum ForeignEnum_MAX = FOREIGN_BAZ;
- const int ForeignEnum_ARRAYSIZE = ForeignEnum_MAX + 1;
- // ===================================================================
- class TestAllTypes_NestedMessage : public ::google::protobuf::MessageLite /* @@protoc_insertion_point(class_definition:proto3_arena_lite_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
- inline ::google::protobuf::Arena* GetArena() const final {
- return GetArenaNoVirtual();
- }
- inline void* GetMaybeArenaPointer() const final {
- return MaybeArenaPtr();
- }
- 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 UnsafeArenaSwap(TestAllTypes_NestedMessage* other);
- 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 CheckTypeAndMergeFrom(const ::google::protobuf::MessageLite& 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;
- void DiscardUnknownFields();
- int GetCachedSize() const final { return _cached_size_.Get(); }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- void InternalSwap(TestAllTypes_NestedMessage* other);
- protected:
- explicit TestAllTypes_NestedMessage(::google::protobuf::Arena* arena);
- private:
- static void ArenaDtor(void* object);
- inline void RegisterArenaDtor(::google::protobuf::Arena* arena);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return _internal_metadata_.arena();
- }
- inline void* MaybeArenaPtr() const {
- return _internal_metadata_.raw_arena_ptr();
- }
- public:
- ::std::string GetTypeName() 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:proto3_arena_lite_unittest.TestAllTypes.NestedMessage)
- private:
- ::google::protobuf::internal::InternalMetadataWithArenaLite _internal_metadata_;
- template <typename T> friend class ::google::protobuf::Arena::InternalHelper;
- typedef void InternalArenaConstructable_;
- typedef void DestructorSkippable_;
- ::google::protobuf::int32 bb_;
- mutable ::google::protobuf::internal::CachedSize _cached_size_;
- friend struct ::protobuf_google_2fprotobuf_2funittest_5fproto3_5farena_5flite_2eproto::TableStruct;
- };
- // -------------------------------------------------------------------
- class TestAllTypes : public ::google::protobuf::MessageLite /* @@protoc_insertion_point(class_definition:proto3_arena_lite_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
- inline ::google::protobuf::Arena* GetArena() const final {
- return GetArenaNoVirtual();
- }
- inline void* GetMaybeArenaPointer() const final {
- return MaybeArenaPtr();
- }
- static const TestAllTypes& default_instance();
- enum OneofFieldCase {
- kOneofUint32 = 111,
- kOneofNestedMessage = 112,
- kOneofString = 113,
- kOneofBytes = 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 UnsafeArenaSwap(TestAllTypes* other);
- 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 CheckTypeAndMergeFrom(const ::google::protobuf::MessageLite& 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;
- void DiscardUnknownFields();
- int GetCachedSize() const final { return _cached_size_.Get(); }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- void InternalSwap(TestAllTypes* other);
- protected:
- explicit TestAllTypes(::google::protobuf::Arena* arena);
- private:
- static void ArenaDtor(void* object);
- inline void RegisterArenaDtor(::google::protobuf::Arena* arena);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return _internal_metadata_.arena();
- }
- inline void* MaybeArenaPtr() const {
- return _internal_metadata_.raw_arena_ptr();
- }
- public:
- ::std::string GetTypeName() const final;
- // nested types ----------------------------------------------------
- typedef TestAllTypes_NestedMessage NestedMessage;
- typedef TestAllTypes_NestedEnum NestedEnum;
- static const NestedEnum ZERO =
- TestAllTypes_NestedEnum_ZERO;
- static const NestedEnum FOO =
- TestAllTypes_NestedEnum_FOO;
- static const NestedEnum BAR =
- TestAllTypes_NestedEnum_BAR;
- static const NestedEnum BAZ =
- TestAllTypes_NestedEnum_BAZ;
- static const NestedEnum NEG =
- TestAllTypes_NestedEnum_NEG;
- 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;
- // 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 .proto3_arena_lite_unittest.TestAllTypes.NestedMessage repeated_nested_message = 48;
- int repeated_nested_message_size() const;
- void clear_repeated_nested_message();
- static const int kRepeatedNestedMessageFieldNumber = 48;
- ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* mutable_repeated_nested_message(int index);
- ::google::protobuf::RepeatedPtrField< ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage >*
- mutable_repeated_nested_message();
- const ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage& repeated_nested_message(int index) const;
- ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* add_repeated_nested_message();
- const ::google::protobuf::RepeatedPtrField< ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage >&
- repeated_nested_message() const;
- // repeated .proto3_arena_lite_unittest.ForeignMessage repeated_foreign_message = 49;
- int repeated_foreign_message_size() const;
- void clear_repeated_foreign_message();
- static const int kRepeatedForeignMessageFieldNumber = 49;
- ::proto3_arena_lite_unittest::ForeignMessage* mutable_repeated_foreign_message(int index);
- ::google::protobuf::RepeatedPtrField< ::proto3_arena_lite_unittest::ForeignMessage >*
- mutable_repeated_foreign_message();
- const ::proto3_arena_lite_unittest::ForeignMessage& repeated_foreign_message(int index) const;
- ::proto3_arena_lite_unittest::ForeignMessage* add_repeated_foreign_message();
- const ::google::protobuf::RepeatedPtrField< ::proto3_arena_lite_unittest::ForeignMessage >&
- repeated_foreign_message() const;
- // repeated .protobuf_unittest_import.ImportMessage repeated_import_message = 50;
- int repeated_import_message_size() const;
- void clear_repeated_import_message();
- static const int kRepeatedImportMessageFieldNumber = 50;
- ::protobuf_unittest_import::ImportMessage* mutable_repeated_import_message(int index);
- ::google::protobuf::RepeatedPtrField< ::protobuf_unittest_import::ImportMessage >*
- mutable_repeated_import_message();
- const ::protobuf_unittest_import::ImportMessage& repeated_import_message(int index) const;
- ::protobuf_unittest_import::ImportMessage* add_repeated_import_message();
- const ::google::protobuf::RepeatedPtrField< ::protobuf_unittest_import::ImportMessage >&
- repeated_import_message() const;
- // repeated .proto3_arena_lite_unittest.TestAllTypes.NestedEnum repeated_nested_enum = 51;
- int repeated_nested_enum_size() const;
- void clear_repeated_nested_enum();
- static const int kRepeatedNestedEnumFieldNumber = 51;
- ::proto3_arena_lite_unittest::TestAllTypes_NestedEnum repeated_nested_enum(int index) const;
- void set_repeated_nested_enum(int index, ::proto3_arena_lite_unittest::TestAllTypes_NestedEnum value);
- void add_repeated_nested_enum(::proto3_arena_lite_unittest::TestAllTypes_NestedEnum value);
- const ::google::protobuf::RepeatedField<int>& repeated_nested_enum() const;
- ::google::protobuf::RepeatedField<int>* mutable_repeated_nested_enum();
- // repeated .proto3_arena_lite_unittest.ForeignEnum repeated_foreign_enum = 52;
- int repeated_foreign_enum_size() const;
- void clear_repeated_foreign_enum();
- static const int kRepeatedForeignEnumFieldNumber = 52;
- ::proto3_arena_lite_unittest::ForeignEnum repeated_foreign_enum(int index) const;
- void set_repeated_foreign_enum(int index, ::proto3_arena_lite_unittest::ForeignEnum value);
- void add_repeated_foreign_enum(::proto3_arena_lite_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 .proto3_arena_lite_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;
- ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* mutable_repeated_lazy_message(int index);
- ::google::protobuf::RepeatedPtrField< ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage >*
- mutable_repeated_lazy_message();
- const ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage& repeated_lazy_message(int index) const;
- ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* add_repeated_lazy_message();
- const ::google::protobuf::RepeatedPtrField< ::proto3_arena_lite_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);
- PROTOBUF_RUNTIME_DEPRECATED("The unsafe_arena_ accessors for"
- " string fields are deprecated and will be removed in a"
- " future release.")
- ::std::string* unsafe_arena_release_optional_string();
- PROTOBUF_RUNTIME_DEPRECATED("The unsafe_arena_ accessors for"
- " string fields are deprecated and will be removed in a"
- " future release.")
- void unsafe_arena_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);
- PROTOBUF_RUNTIME_DEPRECATED("The unsafe_arena_ accessors for"
- " string fields are deprecated and will be removed in a"
- " future release.")
- ::std::string* unsafe_arena_release_optional_bytes();
- PROTOBUF_RUNTIME_DEPRECATED("The unsafe_arena_ accessors for"
- " string fields are deprecated and will be removed in a"
- " future release.")
- void unsafe_arena_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);
- PROTOBUF_RUNTIME_DEPRECATED("The unsafe_arena_ accessors for"
- " string fields are deprecated and will be removed in a"
- " future release.")
- ::std::string* unsafe_arena_release_optional_string_piece();
- PROTOBUF_RUNTIME_DEPRECATED("The unsafe_arena_ accessors for"
- " string fields are deprecated and will be removed in a"
- " future release.")
- void unsafe_arena_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);
- PROTOBUF_RUNTIME_DEPRECATED("The unsafe_arena_ accessors for"
- " string fields are deprecated and will be removed in a"
- " future release.")
- ::std::string* unsafe_arena_release_optional_cord();
- PROTOBUF_RUNTIME_DEPRECATED("The unsafe_arena_ accessors for"
- " string fields are deprecated and will be removed in a"
- " future release.")
- void unsafe_arena_set_allocated_optional_cord(
- ::std::string* optional_cord);
- public:
- // .proto3_arena_lite_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 ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage& _internal_optional_nested_message() const;
- public:
- const ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage& optional_nested_message() const;
- ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* release_optional_nested_message();
- ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* mutable_optional_nested_message();
- void set_allocated_optional_nested_message(::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* optional_nested_message);
- void unsafe_arena_set_allocated_optional_nested_message(
- ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* optional_nested_message);
- ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* unsafe_arena_release_optional_nested_message();
- // .proto3_arena_lite_unittest.ForeignMessage optional_foreign_message = 19;
- bool has_optional_foreign_message() const;
- void clear_optional_foreign_message();
- static const int kOptionalForeignMessageFieldNumber = 19;
- private:
- const ::proto3_arena_lite_unittest::ForeignMessage& _internal_optional_foreign_message() const;
- public:
- const ::proto3_arena_lite_unittest::ForeignMessage& optional_foreign_message() const;
- ::proto3_arena_lite_unittest::ForeignMessage* release_optional_foreign_message();
- ::proto3_arena_lite_unittest::ForeignMessage* mutable_optional_foreign_message();
- void set_allocated_optional_foreign_message(::proto3_arena_lite_unittest::ForeignMessage* optional_foreign_message);
- void unsafe_arena_set_allocated_optional_foreign_message(
- ::proto3_arena_lite_unittest::ForeignMessage* optional_foreign_message);
- ::proto3_arena_lite_unittest::ForeignMessage* unsafe_arena_release_optional_foreign_message();
- // .protobuf_unittest_import.ImportMessage optional_import_message = 20;
- bool has_optional_import_message() const;
- void clear_optional_import_message();
- static const int kOptionalImportMessageFieldNumber = 20;
- private:
- const ::protobuf_unittest_import::ImportMessage& _internal_optional_import_message() const;
- public:
- const ::protobuf_unittest_import::ImportMessage& optional_import_message() const;
- ::protobuf_unittest_import::ImportMessage* release_optional_import_message();
- ::protobuf_unittest_import::ImportMessage* mutable_optional_import_message();
- void set_allocated_optional_import_message(::protobuf_unittest_import::ImportMessage* optional_import_message);
- void unsafe_arena_set_allocated_optional_import_message(
- ::protobuf_unittest_import::ImportMessage* optional_import_message);
- ::protobuf_unittest_import::ImportMessage* unsafe_arena_release_optional_import_message();
- // .protobuf_unittest_import.PublicImportMessage optional_public_import_message = 26;
- bool has_optional_public_import_message() const;
- void clear_optional_public_import_message();
- static const int kOptionalPublicImportMessageFieldNumber = 26;
- private:
- const ::protobuf_unittest_import::PublicImportMessage& _internal_optional_public_import_message() const;
- public:
- const ::protobuf_unittest_import::PublicImportMessage& optional_public_import_message() const;
- ::protobuf_unittest_import::PublicImportMessage* release_optional_public_import_message();
- ::protobuf_unittest_import::PublicImportMessage* mutable_optional_public_import_message();
- void set_allocated_optional_public_import_message(::protobuf_unittest_import::PublicImportMessage* optional_public_import_message);
- void unsafe_arena_set_allocated_optional_public_import_message(
- ::protobuf_unittest_import::PublicImportMessage* optional_public_import_message);
- ::protobuf_unittest_import::PublicImportMessage* unsafe_arena_release_optional_public_import_message();
- // .proto3_arena_lite_unittest.TestAllTypes.NestedMessage optional_lazy_message = 27 [lazy = true];
- bool has_optional_lazy_message() const;
- void clear_optional_lazy_message();
- static const int kOptionalLazyMessageFieldNumber = 27;
- private:
- const ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage& _internal_optional_lazy_message() const;
- public:
- const ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage& optional_lazy_message() const;
- ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* release_optional_lazy_message();
- ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* mutable_optional_lazy_message();
- void set_allocated_optional_lazy_message(::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* optional_lazy_message);
- void unsafe_arena_set_allocated_optional_lazy_message(
- ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* optional_lazy_message);
- ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* unsafe_arena_release_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);
- // .proto3_arena_lite_unittest.TestAllTypes.NestedEnum optional_nested_enum = 21;
- void clear_optional_nested_enum();
- static const int kOptionalNestedEnumFieldNumber = 21;
- ::proto3_arena_lite_unittest::TestAllTypes_NestedEnum optional_nested_enum() const;
- void set_optional_nested_enum(::proto3_arena_lite_unittest::TestAllTypes_NestedEnum value);
- // .proto3_arena_lite_unittest.ForeignEnum optional_foreign_enum = 22;
- void clear_optional_foreign_enum();
- static const int kOptionalForeignEnumFieldNumber = 22;
- ::proto3_arena_lite_unittest::ForeignEnum optional_foreign_enum() const;
- void set_optional_foreign_enum(::proto3_arena_lite_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);
- // .proto3_arena_lite_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 ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage& _internal_oneof_nested_message() const;
- public:
- const ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage& oneof_nested_message() const;
- ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* release_oneof_nested_message();
- ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* mutable_oneof_nested_message();
- void set_allocated_oneof_nested_message(::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* oneof_nested_message);
- void unsafe_arena_set_allocated_oneof_nested_message(
- ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* oneof_nested_message);
- ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* unsafe_arena_release_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);
- PROTOBUF_RUNTIME_DEPRECATED("The unsafe_arena_ accessors for"
- " string fields are deprecated and will be removed in a"
- " future release.")
- ::std::string* unsafe_arena_release_oneof_string();
- PROTOBUF_RUNTIME_DEPRECATED("The unsafe_arena_ accessors for"
- " string fields are deprecated and will be removed in a"
- " future release.")
- void unsafe_arena_set_allocated_oneof_string(
- ::std::string* oneof_string);
- // bytes oneof_bytes = 114;
- private:
- bool has_oneof_bytes() const;
- public:
- void clear_oneof_bytes();
- static const int kOneofBytesFieldNumber = 114;
- const ::std::string& oneof_bytes() const;
- void set_oneof_bytes(const ::std::string& value);
- #if LANG_CXX11
- void set_oneof_bytes(::std::string&& value);
- #endif
- void set_oneof_bytes(const char* value);
- void set_oneof_bytes(const void* value, size_t size);
- ::std::string* mutable_oneof_bytes();
- ::std::string* release_oneof_bytes();
- void set_allocated_oneof_bytes(::std::string* oneof_bytes);
- PROTOBUF_RUNTIME_DEPRECATED("The unsafe_arena_ accessors for"
- " string fields are deprecated and will be removed in a"
- " future release.")
- ::std::string* unsafe_arena_release_oneof_bytes();
- PROTOBUF_RUNTIME_DEPRECATED("The unsafe_arena_ accessors for"
- " string fields are deprecated and will be removed in a"
- " future release.")
- void unsafe_arena_set_allocated_oneof_bytes(
- ::std::string* oneof_bytes);
- void clear_oneof_field();
- OneofFieldCase oneof_field_case() const;
- // @@protoc_insertion_point(class_scope:proto3_arena_lite_unittest.TestAllTypes)
- private:
- void set_has_oneof_uint32();
- void set_has_oneof_nested_message();
- void set_has_oneof_string();
- void set_has_oneof_bytes();
- inline bool has_oneof_field() const;
- inline void clear_has_oneof_field();
- ::google::protobuf::internal::InternalMetadataWithArenaLite _internal_metadata_;
- template <typename T> friend class ::google::protobuf::Arena::InternalHelper;
- typedef void InternalArenaConstructable_;
- typedef void DestructorSkippable_;
- ::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< ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage > repeated_nested_message_;
- ::google::protobuf::RepeatedPtrField< ::proto3_arena_lite_unittest::ForeignMessage > repeated_foreign_message_;
- ::google::protobuf::RepeatedPtrField< ::protobuf_unittest_import::ImportMessage > repeated_import_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< ::proto3_arena_lite_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_;
- ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* optional_nested_message_;
- ::proto3_arena_lite_unittest::ForeignMessage* optional_foreign_message_;
- ::protobuf_unittest_import::ImportMessage* optional_import_message_;
- ::protobuf_unittest_import::PublicImportMessage* optional_public_import_message_;
- ::proto3_arena_lite_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_;
- ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* oneof_nested_message_;
- ::google::protobuf::internal::ArenaStringPtr oneof_string_;
- ::google::protobuf::internal::ArenaStringPtr oneof_bytes_;
- } oneof_field_;
- mutable ::google::protobuf::internal::CachedSize _cached_size_;
- ::google::protobuf::uint32 _oneof_case_[1];
- friend struct ::protobuf_google_2fprotobuf_2funittest_5fproto3_5farena_5flite_2eproto::TableStruct;
- };
- // -------------------------------------------------------------------
- class TestPackedTypes : public ::google::protobuf::MessageLite /* @@protoc_insertion_point(class_definition:proto3_arena_lite_unittest.TestPackedTypes) */ {
- public:
- TestPackedTypes();
- virtual ~TestPackedTypes();
- TestPackedTypes(const TestPackedTypes& from);
- inline TestPackedTypes& operator=(const TestPackedTypes& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- TestPackedTypes(TestPackedTypes&& from) noexcept
- : TestPackedTypes() {
- *this = ::std::move(from);
- }
- inline TestPackedTypes& operator=(TestPackedTypes&& from) noexcept {
- if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
- if (this != &from) InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- #endif
- inline ::google::protobuf::Arena* GetArena() const final {
- return GetArenaNoVirtual();
- }
- inline void* GetMaybeArenaPointer() const final {
- return MaybeArenaPtr();
- }
- static const TestPackedTypes& default_instance();
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const TestPackedTypes* internal_default_instance() {
- return reinterpret_cast<const TestPackedTypes*>(
- &_TestPackedTypes_default_instance_);
- }
- static constexpr int kIndexInFileMessages =
- 2;
- void UnsafeArenaSwap(TestPackedTypes* other);
- void Swap(TestPackedTypes* other);
- friend void swap(TestPackedTypes& a, TestPackedTypes& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline TestPackedTypes* New() const final {
- return CreateMaybeMessage<TestPackedTypes>(NULL);
- }
- TestPackedTypes* New(::google::protobuf::Arena* arena) const final {
- return CreateMaybeMessage<TestPackedTypes>(arena);
- }
- void CheckTypeAndMergeFrom(const ::google::protobuf::MessageLite& from)
- final;
- void CopyFrom(const TestPackedTypes& from);
- void MergeFrom(const TestPackedTypes& 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;
- void DiscardUnknownFields();
- int GetCachedSize() const final { return _cached_size_.Get(); }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- void InternalSwap(TestPackedTypes* other);
- protected:
- explicit TestPackedTypes(::google::protobuf::Arena* arena);
- private:
- static void ArenaDtor(void* object);
- inline void RegisterArenaDtor(::google::protobuf::Arena* arena);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return _internal_metadata_.arena();
- }
- inline void* MaybeArenaPtr() const {
- return _internal_metadata_.raw_arena_ptr();
- }
- public:
- ::std::string GetTypeName() const final;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // repeated int32 packed_int32 = 90 [packed = true];
- int packed_int32_size() const;
- void clear_packed_int32();
- static const int kPackedInt32FieldNumber = 90;
- ::google::protobuf::int32 packed_int32(int index) const;
- void set_packed_int32(int index, ::google::protobuf::int32 value);
- void add_packed_int32(::google::protobuf::int32 value);
- const ::google::protobuf::RepeatedField< ::google::protobuf::int32 >&
- packed_int32() const;
- ::google::protobuf::RepeatedField< ::google::protobuf::int32 >*
- mutable_packed_int32();
- // repeated int64 packed_int64 = 91 [packed = true];
- int packed_int64_size() const;
- void clear_packed_int64();
- static const int kPackedInt64FieldNumber = 91;
- ::google::protobuf::int64 packed_int64(int index) const;
- void set_packed_int64(int index, ::google::protobuf::int64 value);
- void add_packed_int64(::google::protobuf::int64 value);
- const ::google::protobuf::RepeatedField< ::google::protobuf::int64 >&
- packed_int64() const;
- ::google::protobuf::RepeatedField< ::google::protobuf::int64 >*
- mutable_packed_int64();
- // repeated uint32 packed_uint32 = 92 [packed = true];
- int packed_uint32_size() const;
- void clear_packed_uint32();
- static const int kPackedUint32FieldNumber = 92;
- ::google::protobuf::uint32 packed_uint32(int index) const;
- void set_packed_uint32(int index, ::google::protobuf::uint32 value);
- void add_packed_uint32(::google::protobuf::uint32 value);
- const ::google::protobuf::RepeatedField< ::google::protobuf::uint32 >&
- packed_uint32() const;
- ::google::protobuf::RepeatedField< ::google::protobuf::uint32 >*
- mutable_packed_uint32();
- // repeated uint64 packed_uint64 = 93 [packed = true];
- int packed_uint64_size() const;
- void clear_packed_uint64();
- static const int kPackedUint64FieldNumber = 93;
- ::google::protobuf::uint64 packed_uint64(int index) const;
- void set_packed_uint64(int index, ::google::protobuf::uint64 value);
- void add_packed_uint64(::google::protobuf::uint64 value);
- const ::google::protobuf::RepeatedField< ::google::protobuf::uint64 >&
- packed_uint64() const;
- ::google::protobuf::RepeatedField< ::google::protobuf::uint64 >*
- mutable_packed_uint64();
- // repeated sint32 packed_sint32 = 94 [packed = true];
- int packed_sint32_size() const;
- void clear_packed_sint32();
- static const int kPackedSint32FieldNumber = 94;
- ::google::protobuf::int32 packed_sint32(int index) const;
- void set_packed_sint32(int index, ::google::protobuf::int32 value);
- void add_packed_sint32(::google::protobuf::int32 value);
- const ::google::protobuf::RepeatedField< ::google::protobuf::int32 >&
- packed_sint32() const;
- ::google::protobuf::RepeatedField< ::google::protobuf::int32 >*
- mutable_packed_sint32();
- // repeated sint64 packed_sint64 = 95 [packed = true];
- int packed_sint64_size() const;
- void clear_packed_sint64();
- static const int kPackedSint64FieldNumber = 95;
- ::google::protobuf::int64 packed_sint64(int index) const;
- void set_packed_sint64(int index, ::google::protobuf::int64 value);
- void add_packed_sint64(::google::protobuf::int64 value);
- const ::google::protobuf::RepeatedField< ::google::protobuf::int64 >&
- packed_sint64() const;
- ::google::protobuf::RepeatedField< ::google::protobuf::int64 >*
- mutable_packed_sint64();
- // repeated fixed32 packed_fixed32 = 96 [packed = true];
- int packed_fixed32_size() const;
- void clear_packed_fixed32();
- static const int kPackedFixed32FieldNumber = 96;
- ::google::protobuf::uint32 packed_fixed32(int index) const;
- void set_packed_fixed32(int index, ::google::protobuf::uint32 value);
- void add_packed_fixed32(::google::protobuf::uint32 value);
- const ::google::protobuf::RepeatedField< ::google::protobuf::uint32 >&
- packed_fixed32() const;
- ::google::protobuf::RepeatedField< ::google::protobuf::uint32 >*
- mutable_packed_fixed32();
- // repeated fixed64 packed_fixed64 = 97 [packed = true];
- int packed_fixed64_size() const;
- void clear_packed_fixed64();
- static const int kPackedFixed64FieldNumber = 97;
- ::google::protobuf::uint64 packed_fixed64(int index) const;
- void set_packed_fixed64(int index, ::google::protobuf::uint64 value);
- void add_packed_fixed64(::google::protobuf::uint64 value);
- const ::google::protobuf::RepeatedField< ::google::protobuf::uint64 >&
- packed_fixed64() const;
- ::google::protobuf::RepeatedField< ::google::protobuf::uint64 >*
- mutable_packed_fixed64();
- // repeated sfixed32 packed_sfixed32 = 98 [packed = true];
- int packed_sfixed32_size() const;
- void clear_packed_sfixed32();
- static const int kPackedSfixed32FieldNumber = 98;
- ::google::protobuf::int32 packed_sfixed32(int index) const;
- void set_packed_sfixed32(int index, ::google::protobuf::int32 value);
- void add_packed_sfixed32(::google::protobuf::int32 value);
- const ::google::protobuf::RepeatedField< ::google::protobuf::int32 >&
- packed_sfixed32() const;
- ::google::protobuf::RepeatedField< ::google::protobuf::int32 >*
- mutable_packed_sfixed32();
- // repeated sfixed64 packed_sfixed64 = 99 [packed = true];
- int packed_sfixed64_size() const;
- void clear_packed_sfixed64();
- static const int kPackedSfixed64FieldNumber = 99;
- ::google::protobuf::int64 packed_sfixed64(int index) const;
- void set_packed_sfixed64(int index, ::google::protobuf::int64 value);
- void add_packed_sfixed64(::google::protobuf::int64 value);
- const ::google::protobuf::RepeatedField< ::google::protobuf::int64 >&
- packed_sfixed64() const;
- ::google::protobuf::RepeatedField< ::google::protobuf::int64 >*
- mutable_packed_sfixed64();
- // repeated float packed_float = 100 [packed = true];
- int packed_float_size() const;
- void clear_packed_float();
- static const int kPackedFloatFieldNumber = 100;
- float packed_float(int index) const;
- void set_packed_float(int index, float value);
- void add_packed_float(float value);
- const ::google::protobuf::RepeatedField< float >&
- packed_float() const;
- ::google::protobuf::RepeatedField< float >*
- mutable_packed_float();
- // repeated double packed_double = 101 [packed = true];
- int packed_double_size() const;
- void clear_packed_double();
- static const int kPackedDoubleFieldNumber = 101;
- double packed_double(int index) const;
- void set_packed_double(int index, double value);
- void add_packed_double(double value);
- const ::google::protobuf::RepeatedField< double >&
- packed_double() const;
- ::google::protobuf::RepeatedField< double >*
- mutable_packed_double();
- // repeated bool packed_bool = 102 [packed = true];
- int packed_bool_size() const;
- void clear_packed_bool();
- static const int kPackedBoolFieldNumber = 102;
- bool packed_bool(int index) const;
- void set_packed_bool(int index, bool value);
- void add_packed_bool(bool value);
- const ::google::protobuf::RepeatedField< bool >&
- packed_bool() const;
- ::google::protobuf::RepeatedField< bool >*
- mutable_packed_bool();
- // repeated .proto3_arena_lite_unittest.ForeignEnum packed_enum = 103 [packed = true];
- int packed_enum_size() const;
- void clear_packed_enum();
- static const int kPackedEnumFieldNumber = 103;
- ::proto3_arena_lite_unittest::ForeignEnum packed_enum(int index) const;
- void set_packed_enum(int index, ::proto3_arena_lite_unittest::ForeignEnum value);
- void add_packed_enum(::proto3_arena_lite_unittest::ForeignEnum value);
- const ::google::protobuf::RepeatedField<int>& packed_enum() const;
- ::google::protobuf::RepeatedField<int>* mutable_packed_enum();
- // @@protoc_insertion_point(class_scope:proto3_arena_lite_unittest.TestPackedTypes)
- private:
- ::google::protobuf::internal::InternalMetadataWithArenaLite _internal_metadata_;
- template <typename T> friend class ::google::protobuf::Arena::InternalHelper;
- typedef void InternalArenaConstructable_;
- typedef void DestructorSkippable_;
- ::google::protobuf::RepeatedField< ::google::protobuf::int32 > packed_int32_;
- mutable int _packed_int32_cached_byte_size_;
- ::google::protobuf::RepeatedField< ::google::protobuf::int64 > packed_int64_;
- mutable int _packed_int64_cached_byte_size_;
- ::google::protobuf::RepeatedField< ::google::protobuf::uint32 > packed_uint32_;
- mutable int _packed_uint32_cached_byte_size_;
- ::google::protobuf::RepeatedField< ::google::protobuf::uint64 > packed_uint64_;
- mutable int _packed_uint64_cached_byte_size_;
- ::google::protobuf::RepeatedField< ::google::protobuf::int32 > packed_sint32_;
- mutable int _packed_sint32_cached_byte_size_;
- ::google::protobuf::RepeatedField< ::google::protobuf::int64 > packed_sint64_;
- mutable int _packed_sint64_cached_byte_size_;
- ::google::protobuf::RepeatedField< ::google::protobuf::uint32 > packed_fixed32_;
- mutable int _packed_fixed32_cached_byte_size_;
- ::google::protobuf::RepeatedField< ::google::protobuf::uint64 > packed_fixed64_;
- mutable int _packed_fixed64_cached_byte_size_;
- ::google::protobuf::RepeatedField< ::google::protobuf::int32 > packed_sfixed32_;
- mutable int _packed_sfixed32_cached_byte_size_;
- ::google::protobuf::RepeatedField< ::google::protobuf::int64 > packed_sfixed64_;
- mutable int _packed_sfixed64_cached_byte_size_;
- ::google::protobuf::RepeatedField< float > packed_float_;
- mutable int _packed_float_cached_byte_size_;
- ::google::protobuf::RepeatedField< double > packed_double_;
- mutable int _packed_double_cached_byte_size_;
- ::google::protobuf::RepeatedField< bool > packed_bool_;
- mutable int _packed_bool_cached_byte_size_;
- ::google::protobuf::RepeatedField<int> packed_enum_;
- mutable int _packed_enum_cached_byte_size_;
- mutable ::google::protobuf::internal::CachedSize _cached_size_;
- friend struct ::protobuf_google_2fprotobuf_2funittest_5fproto3_5farena_5flite_2eproto::TableStruct;
- };
- // -------------------------------------------------------------------
- class TestUnpackedTypes : public ::google::protobuf::MessageLite /* @@protoc_insertion_point(class_definition:proto3_arena_lite_unittest.TestUnpackedTypes) */ {
- public:
- TestUnpackedTypes();
- virtual ~TestUnpackedTypes();
- TestUnpackedTypes(const TestUnpackedTypes& from);
- inline TestUnpackedTypes& operator=(const TestUnpackedTypes& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- TestUnpackedTypes(TestUnpackedTypes&& from) noexcept
- : TestUnpackedTypes() {
- *this = ::std::move(from);
- }
- inline TestUnpackedTypes& operator=(TestUnpackedTypes&& from) noexcept {
- if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
- if (this != &from) InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- #endif
- inline ::google::protobuf::Arena* GetArena() const final {
- return GetArenaNoVirtual();
- }
- inline void* GetMaybeArenaPointer() const final {
- return MaybeArenaPtr();
- }
- static const TestUnpackedTypes& default_instance();
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const TestUnpackedTypes* internal_default_instance() {
- return reinterpret_cast<const TestUnpackedTypes*>(
- &_TestUnpackedTypes_default_instance_);
- }
- static constexpr int kIndexInFileMessages =
- 3;
- void UnsafeArenaSwap(TestUnpackedTypes* other);
- void Swap(TestUnpackedTypes* other);
- friend void swap(TestUnpackedTypes& a, TestUnpackedTypes& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline TestUnpackedTypes* New() const final {
- return CreateMaybeMessage<TestUnpackedTypes>(NULL);
- }
- TestUnpackedTypes* New(::google::protobuf::Arena* arena) const final {
- return CreateMaybeMessage<TestUnpackedTypes>(arena);
- }
- void CheckTypeAndMergeFrom(const ::google::protobuf::MessageLite& from)
- final;
- void CopyFrom(const TestUnpackedTypes& from);
- void MergeFrom(const TestUnpackedTypes& 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;
- void DiscardUnknownFields();
- int GetCachedSize() const final { return _cached_size_.Get(); }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- void InternalSwap(TestUnpackedTypes* other);
- protected:
- explicit TestUnpackedTypes(::google::protobuf::Arena* arena);
- private:
- static void ArenaDtor(void* object);
- inline void RegisterArenaDtor(::google::protobuf::Arena* arena);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return _internal_metadata_.arena();
- }
- inline void* MaybeArenaPtr() const {
- return _internal_metadata_.raw_arena_ptr();
- }
- public:
- ::std::string GetTypeName() const final;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // repeated int32 repeated_int32 = 1 [packed = false];
- int repeated_int32_size() const;
- void clear_repeated_int32();
- static const int kRepeatedInt32FieldNumber = 1;
- ::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 = 2 [packed = false];
- int repeated_int64_size() const;
- void clear_repeated_int64();
- static const int kRepeatedInt64FieldNumber = 2;
- ::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 = 3 [packed = false];
- int repeated_uint32_size() const;
- void clear_repeated_uint32();
- static const int kRepeatedUint32FieldNumber = 3;
- ::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 = 4 [packed = false];
- int repeated_uint64_size() const;
- void clear_repeated_uint64();
- static const int kRepeatedUint64FieldNumber = 4;
- ::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 = 5 [packed = false];
- int repeated_sint32_size() const;
- void clear_repeated_sint32();
- static const int kRepeatedSint32FieldNumber = 5;
- ::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 = 6 [packed = false];
- int repeated_sint64_size() const;
- void clear_repeated_sint64();
- static const int kRepeatedSint64FieldNumber = 6;
- ::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 = 7 [packed = false];
- int repeated_fixed32_size() const;
- void clear_repeated_fixed32();
- static const int kRepeatedFixed32FieldNumber = 7;
- ::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 = 8 [packed = false];
- int repeated_fixed64_size() const;
- void clear_repeated_fixed64();
- static const int kRepeatedFixed64FieldNumber = 8;
- ::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 = 9 [packed = false];
- int repeated_sfixed32_size() const;
- void clear_repeated_sfixed32();
- static const int kRepeatedSfixed32FieldNumber = 9;
- ::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 = 10 [packed = false];
- int repeated_sfixed64_size() const;
- void clear_repeated_sfixed64();
- static const int kRepeatedSfixed64FieldNumber = 10;
- ::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 = 11 [packed = false];
- int repeated_float_size() const;
- void clear_repeated_float();
- static const int kRepeatedFloatFieldNumber = 11;
- 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 = 12 [packed = false];
- int repeated_double_size() const;
- void clear_repeated_double();
- static const int kRepeatedDoubleFieldNumber = 12;
- 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 = 13 [packed = false];
- int repeated_bool_size() const;
- void clear_repeated_bool();
- static const int kRepeatedBoolFieldNumber = 13;
- 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 .proto3_arena_lite_unittest.TestAllTypes.NestedEnum repeated_nested_enum = 14 [packed = false];
- int repeated_nested_enum_size() const;
- void clear_repeated_nested_enum();
- static const int kRepeatedNestedEnumFieldNumber = 14;
- ::proto3_arena_lite_unittest::TestAllTypes_NestedEnum repeated_nested_enum(int index) const;
- void set_repeated_nested_enum(int index, ::proto3_arena_lite_unittest::TestAllTypes_NestedEnum value);
- void add_repeated_nested_enum(::proto3_arena_lite_unittest::TestAllTypes_NestedEnum value);
- const ::google::protobuf::RepeatedField<int>& repeated_nested_enum() const;
- ::google::protobuf::RepeatedField<int>* mutable_repeated_nested_enum();
- // @@protoc_insertion_point(class_scope:proto3_arena_lite_unittest.TestUnpackedTypes)
- private:
- ::google::protobuf::internal::InternalMetadataWithArenaLite _internal_metadata_;
- template <typename T> friend class ::google::protobuf::Arena::InternalHelper;
- typedef void InternalArenaConstructable_;
- typedef void DestructorSkippable_;
- ::google::protobuf::RepeatedField< ::google::protobuf::int32 > repeated_int32_;
- ::google::protobuf::RepeatedField< ::google::protobuf::int64 > repeated_int64_;
- ::google::protobuf::RepeatedField< ::google::protobuf::uint32 > repeated_uint32_;
- ::google::protobuf::RepeatedField< ::google::protobuf::uint64 > repeated_uint64_;
- ::google::protobuf::RepeatedField< ::google::protobuf::int32 > repeated_sint32_;
- ::google::protobuf::RepeatedField< ::google::protobuf::int64 > repeated_sint64_;
- ::google::protobuf::RepeatedField< ::google::protobuf::uint32 > repeated_fixed32_;
- ::google::protobuf::RepeatedField< ::google::protobuf::uint64 > repeated_fixed64_;
- ::google::protobuf::RepeatedField< ::google::protobuf::int32 > repeated_sfixed32_;
- ::google::protobuf::RepeatedField< ::google::protobuf::int64 > repeated_sfixed64_;
- ::google::protobuf::RepeatedField< float > repeated_float_;
- ::google::protobuf::RepeatedField< double > repeated_double_;
- ::google::protobuf::RepeatedField< bool > repeated_bool_;
- ::google::protobuf::RepeatedField<int> repeated_nested_enum_;
- mutable ::google::protobuf::internal::CachedSize _cached_size_;
- friend struct ::protobuf_google_2fprotobuf_2funittest_5fproto3_5farena_5flite_2eproto::TableStruct;
- };
- // -------------------------------------------------------------------
- class NestedTestAllTypes : public ::google::protobuf::MessageLite /* @@protoc_insertion_point(class_definition:proto3_arena_lite_unittest.NestedTestAllTypes) */ {
- public:
- NestedTestAllTypes();
- virtual ~NestedTestAllTypes();
- NestedTestAllTypes(const NestedTestAllTypes& from);
- inline NestedTestAllTypes& operator=(const NestedTestAllTypes& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- NestedTestAllTypes(NestedTestAllTypes&& from) noexcept
- : NestedTestAllTypes() {
- *this = ::std::move(from);
- }
- inline NestedTestAllTypes& operator=(NestedTestAllTypes&& from) noexcept {
- if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
- if (this != &from) InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- #endif
- inline ::google::protobuf::Arena* GetArena() const final {
- return GetArenaNoVirtual();
- }
- inline void* GetMaybeArenaPointer() const final {
- return MaybeArenaPtr();
- }
- static const NestedTestAllTypes& default_instance();
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const NestedTestAllTypes* internal_default_instance() {
- return reinterpret_cast<const NestedTestAllTypes*>(
- &_NestedTestAllTypes_default_instance_);
- }
- static constexpr int kIndexInFileMessages =
- 4;
- void UnsafeArenaSwap(NestedTestAllTypes* other);
- void Swap(NestedTestAllTypes* other);
- friend void swap(NestedTestAllTypes& a, NestedTestAllTypes& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline NestedTestAllTypes* New() const final {
- return CreateMaybeMessage<NestedTestAllTypes>(NULL);
- }
- NestedTestAllTypes* New(::google::protobuf::Arena* arena) const final {
- return CreateMaybeMessage<NestedTestAllTypes>(arena);
- }
- void CheckTypeAndMergeFrom(const ::google::protobuf::MessageLite& from)
- final;
- void CopyFrom(const NestedTestAllTypes& from);
- void MergeFrom(const NestedTestAllTypes& 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;
- void DiscardUnknownFields();
- int GetCachedSize() const final { return _cached_size_.Get(); }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- void InternalSwap(NestedTestAllTypes* other);
- protected:
- explicit NestedTestAllTypes(::google::protobuf::Arena* arena);
- private:
- static void ArenaDtor(void* object);
- inline void RegisterArenaDtor(::google::protobuf::Arena* arena);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return _internal_metadata_.arena();
- }
- inline void* MaybeArenaPtr() const {
- return _internal_metadata_.raw_arena_ptr();
- }
- public:
- ::std::string GetTypeName() const final;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // .proto3_arena_lite_unittest.NestedTestAllTypes child = 1;
- bool has_child() const;
- void clear_child();
- static const int kChildFieldNumber = 1;
- private:
- const ::proto3_arena_lite_unittest::NestedTestAllTypes& _internal_child() const;
- public:
- const ::proto3_arena_lite_unittest::NestedTestAllTypes& child() const;
- ::proto3_arena_lite_unittest::NestedTestAllTypes* release_child();
- ::proto3_arena_lite_unittest::NestedTestAllTypes* mutable_child();
- void set_allocated_child(::proto3_arena_lite_unittest::NestedTestAllTypes* child);
- void unsafe_arena_set_allocated_child(
- ::proto3_arena_lite_unittest::NestedTestAllTypes* child);
- ::proto3_arena_lite_unittest::NestedTestAllTypes* unsafe_arena_release_child();
- // .proto3_arena_lite_unittest.TestAllTypes payload = 2;
- bool has_payload() const;
- void clear_payload();
- static const int kPayloadFieldNumber = 2;
- private:
- const ::proto3_arena_lite_unittest::TestAllTypes& _internal_payload() const;
- public:
- const ::proto3_arena_lite_unittest::TestAllTypes& payload() const;
- ::proto3_arena_lite_unittest::TestAllTypes* release_payload();
- ::proto3_arena_lite_unittest::TestAllTypes* mutable_payload();
- void set_allocated_payload(::proto3_arena_lite_unittest::TestAllTypes* payload);
- void unsafe_arena_set_allocated_payload(
- ::proto3_arena_lite_unittest::TestAllTypes* payload);
- ::proto3_arena_lite_unittest::TestAllTypes* unsafe_arena_release_payload();
- // @@protoc_insertion_point(class_scope:proto3_arena_lite_unittest.NestedTestAllTypes)
- private:
- ::google::protobuf::internal::InternalMetadataWithArenaLite _internal_metadata_;
- template <typename T> friend class ::google::protobuf::Arena::InternalHelper;
- typedef void InternalArenaConstructable_;
- typedef void DestructorSkippable_;
- ::proto3_arena_lite_unittest::NestedTestAllTypes* child_;
- ::proto3_arena_lite_unittest::TestAllTypes* payload_;
- mutable ::google::protobuf::internal::CachedSize _cached_size_;
- friend struct ::protobuf_google_2fprotobuf_2funittest_5fproto3_5farena_5flite_2eproto::TableStruct;
- };
- // -------------------------------------------------------------------
- class ForeignMessage : public ::google::protobuf::MessageLite /* @@protoc_insertion_point(class_definition:proto3_arena_lite_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
- inline ::google::protobuf::Arena* GetArena() const final {
- return GetArenaNoVirtual();
- }
- inline void* GetMaybeArenaPointer() const final {
- return MaybeArenaPtr();
- }
- 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 =
- 5;
- void UnsafeArenaSwap(ForeignMessage* other);
- 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 CheckTypeAndMergeFrom(const ::google::protobuf::MessageLite& 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;
- void DiscardUnknownFields();
- int GetCachedSize() const final { return _cached_size_.Get(); }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- void InternalSwap(ForeignMessage* other);
- protected:
- explicit ForeignMessage(::google::protobuf::Arena* arena);
- private:
- static void ArenaDtor(void* object);
- inline void RegisterArenaDtor(::google::protobuf::Arena* arena);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return _internal_metadata_.arena();
- }
- inline void* MaybeArenaPtr() const {
- return _internal_metadata_.raw_arena_ptr();
- }
- public:
- ::std::string GetTypeName() 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:proto3_arena_lite_unittest.ForeignMessage)
- private:
- ::google::protobuf::internal::InternalMetadataWithArenaLite _internal_metadata_;
- template <typename T> friend class ::google::protobuf::Arena::InternalHelper;
- typedef void InternalArenaConstructable_;
- typedef void DestructorSkippable_;
- ::google::protobuf::int32 c_;
- mutable ::google::protobuf::internal::CachedSize _cached_size_;
- friend struct ::protobuf_google_2fprotobuf_2funittest_5fproto3_5farena_5flite_2eproto::TableStruct;
- };
- // -------------------------------------------------------------------
- class TestEmptyMessage : public ::google::protobuf::MessageLite /* @@protoc_insertion_point(class_definition:proto3_arena_lite_unittest.TestEmptyMessage) */ {
- public:
- TestEmptyMessage();
- virtual ~TestEmptyMessage();
- TestEmptyMessage(const TestEmptyMessage& from);
- inline TestEmptyMessage& operator=(const TestEmptyMessage& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- TestEmptyMessage(TestEmptyMessage&& from) noexcept
- : TestEmptyMessage() {
- *this = ::std::move(from);
- }
- inline TestEmptyMessage& operator=(TestEmptyMessage&& from) noexcept {
- if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
- if (this != &from) InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- #endif
- inline ::google::protobuf::Arena* GetArena() const final {
- return GetArenaNoVirtual();
- }
- inline void* GetMaybeArenaPointer() const final {
- return MaybeArenaPtr();
- }
- static const TestEmptyMessage& default_instance();
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const TestEmptyMessage* internal_default_instance() {
- return reinterpret_cast<const TestEmptyMessage*>(
- &_TestEmptyMessage_default_instance_);
- }
- static constexpr int kIndexInFileMessages =
- 6;
- void UnsafeArenaSwap(TestEmptyMessage* other);
- void Swap(TestEmptyMessage* other);
- friend void swap(TestEmptyMessage& a, TestEmptyMessage& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline TestEmptyMessage* New() const final {
- return CreateMaybeMessage<TestEmptyMessage>(NULL);
- }
- TestEmptyMessage* New(::google::protobuf::Arena* arena) const final {
- return CreateMaybeMessage<TestEmptyMessage>(arena);
- }
- void CheckTypeAndMergeFrom(const ::google::protobuf::MessageLite& from)
- final;
- void CopyFrom(const TestEmptyMessage& from);
- void MergeFrom(const TestEmptyMessage& 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;
- void DiscardUnknownFields();
- int GetCachedSize() const final { return _cached_size_.Get(); }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- void InternalSwap(TestEmptyMessage* other);
- protected:
- explicit TestEmptyMessage(::google::protobuf::Arena* arena);
- private:
- static void ArenaDtor(void* object);
- inline void RegisterArenaDtor(::google::protobuf::Arena* arena);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return _internal_metadata_.arena();
- }
- inline void* MaybeArenaPtr() const {
- return _internal_metadata_.raw_arena_ptr();
- }
- public:
- ::std::string GetTypeName() const final;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // @@protoc_insertion_point(class_scope:proto3_arena_lite_unittest.TestEmptyMessage)
- private:
- ::google::protobuf::internal::InternalMetadataWithArenaLite _internal_metadata_;
- template <typename T> friend class ::google::protobuf::Arena::InternalHelper;
- typedef void InternalArenaConstructable_;
- typedef void DestructorSkippable_;
- mutable ::google::protobuf::internal::CachedSize _cached_size_;
- friend struct ::protobuf_google_2fprotobuf_2funittest_5fproto3_5farena_5flite_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:proto3_arena_lite_unittest.TestAllTypes.NestedMessage.bb)
- return bb_;
- }
- inline void TestAllTypes_NestedMessage::set_bb(::google::protobuf::int32 value) {
-
- bb_ = value;
- // @@protoc_insertion_point(field_set:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_unittest.TestAllTypes.optional_float)
- return optional_float_;
- }
- inline void TestAllTypes::set_optional_float(float value) {
-
- optional_float_ = value;
- // @@protoc_insertion_point(field_set:proto3_arena_lite_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:proto3_arena_lite_unittest.TestAllTypes.optional_double)
- return optional_double_;
- }
- inline void TestAllTypes::set_optional_double(double value) {
-
- optional_double_ = value;
- // @@protoc_insertion_point(field_set:proto3_arena_lite_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:proto3_arena_lite_unittest.TestAllTypes.optional_bool)
- return optional_bool_;
- }
- inline void TestAllTypes::set_optional_bool(bool value) {
-
- optional_bool_ = value;
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestAllTypes.optional_bool)
- }
- // string optional_string = 14;
- inline void TestAllTypes::clear_optional_string() {
- optional_string_.ClearToEmpty(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual());
- }
- inline const ::std::string& TestAllTypes::optional_string() const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestAllTypes.optional_string)
- return optional_string_.Get();
- }
- inline void TestAllTypes::set_optional_string(const ::std::string& value) {
-
- optional_string_.SetLite(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value, GetArenaNoVirtual());
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestAllTypes.optional_string)
- }
- #if LANG_CXX11
- inline void TestAllTypes::set_optional_string(::std::string&& value) {
-
- optional_string_.SetLite(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value), GetArenaNoVirtual());
- // @@protoc_insertion_point(field_set_rvalue:proto3_arena_lite_unittest.TestAllTypes.optional_string)
- }
- #endif
- inline void TestAllTypes::set_optional_string(const char* value) {
- GOOGLE_DCHECK(value != NULL);
-
- optional_string_.SetLite(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value),
- GetArenaNoVirtual());
- // @@protoc_insertion_point(field_set_char:proto3_arena_lite_unittest.TestAllTypes.optional_string)
- }
- inline void TestAllTypes::set_optional_string(const char* value,
- size_t size) {
-
- optional_string_.SetLite(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(
- reinterpret_cast<const char*>(value), size), GetArenaNoVirtual());
- // @@protoc_insertion_point(field_set_pointer:proto3_arena_lite_unittest.TestAllTypes.optional_string)
- }
- inline ::std::string* TestAllTypes::mutable_optional_string() {
-
- // @@protoc_insertion_point(field_mutable:proto3_arena_lite_unittest.TestAllTypes.optional_string)
- return optional_string_.Mutable(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual());
- }
- inline ::std::string* TestAllTypes::release_optional_string() {
- // @@protoc_insertion_point(field_release:proto3_arena_lite_unittest.TestAllTypes.optional_string)
-
- return optional_string_.Release(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual());
- }
- inline void TestAllTypes::set_allocated_optional_string(::std::string* optional_string) {
- if (optional_string != NULL) {
-
- } else {
-
- }
- optional_string_.SetAllocated(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), optional_string,
- GetArenaNoVirtual());
- // @@protoc_insertion_point(field_set_allocated:proto3_arena_lite_unittest.TestAllTypes.optional_string)
- }
- inline ::std::string* TestAllTypes::unsafe_arena_release_optional_string() {
- // @@protoc_insertion_point(field_unsafe_arena_release:proto3_arena_lite_unittest.TestAllTypes.optional_string)
- GOOGLE_DCHECK(GetArenaNoVirtual() != NULL);
-
- return optional_string_.UnsafeArenaRelease(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- GetArenaNoVirtual());
- }
- inline void TestAllTypes::unsafe_arena_set_allocated_optional_string(
- ::std::string* optional_string) {
- GOOGLE_DCHECK(GetArenaNoVirtual() != NULL);
- if (optional_string != NULL) {
-
- } else {
-
- }
- optional_string_.UnsafeArenaSetAllocated(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- optional_string, GetArenaNoVirtual());
- // @@protoc_insertion_point(field_unsafe_arena_set_allocated:proto3_arena_lite_unittest.TestAllTypes.optional_string)
- }
- // bytes optional_bytes = 15;
- inline void TestAllTypes::clear_optional_bytes() {
- optional_bytes_.ClearToEmpty(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual());
- }
- inline const ::std::string& TestAllTypes::optional_bytes() const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestAllTypes.optional_bytes)
- return optional_bytes_.Get();
- }
- inline void TestAllTypes::set_optional_bytes(const ::std::string& value) {
-
- optional_bytes_.SetLite(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value, GetArenaNoVirtual());
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestAllTypes.optional_bytes)
- }
- #if LANG_CXX11
- inline void TestAllTypes::set_optional_bytes(::std::string&& value) {
-
- optional_bytes_.SetLite(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value), GetArenaNoVirtual());
- // @@protoc_insertion_point(field_set_rvalue:proto3_arena_lite_unittest.TestAllTypes.optional_bytes)
- }
- #endif
- inline void TestAllTypes::set_optional_bytes(const char* value) {
- GOOGLE_DCHECK(value != NULL);
-
- optional_bytes_.SetLite(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value),
- GetArenaNoVirtual());
- // @@protoc_insertion_point(field_set_char:proto3_arena_lite_unittest.TestAllTypes.optional_bytes)
- }
- inline void TestAllTypes::set_optional_bytes(const void* value,
- size_t size) {
-
- optional_bytes_.SetLite(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(
- reinterpret_cast<const char*>(value), size), GetArenaNoVirtual());
- // @@protoc_insertion_point(field_set_pointer:proto3_arena_lite_unittest.TestAllTypes.optional_bytes)
- }
- inline ::std::string* TestAllTypes::mutable_optional_bytes() {
-
- // @@protoc_insertion_point(field_mutable:proto3_arena_lite_unittest.TestAllTypes.optional_bytes)
- return optional_bytes_.Mutable(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual());
- }
- inline ::std::string* TestAllTypes::release_optional_bytes() {
- // @@protoc_insertion_point(field_release:proto3_arena_lite_unittest.TestAllTypes.optional_bytes)
-
- return optional_bytes_.Release(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual());
- }
- inline void TestAllTypes::set_allocated_optional_bytes(::std::string* optional_bytes) {
- if (optional_bytes != NULL) {
-
- } else {
-
- }
- optional_bytes_.SetAllocated(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), optional_bytes,
- GetArenaNoVirtual());
- // @@protoc_insertion_point(field_set_allocated:proto3_arena_lite_unittest.TestAllTypes.optional_bytes)
- }
- inline ::std::string* TestAllTypes::unsafe_arena_release_optional_bytes() {
- // @@protoc_insertion_point(field_unsafe_arena_release:proto3_arena_lite_unittest.TestAllTypes.optional_bytes)
- GOOGLE_DCHECK(GetArenaNoVirtual() != NULL);
-
- return optional_bytes_.UnsafeArenaRelease(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- GetArenaNoVirtual());
- }
- inline void TestAllTypes::unsafe_arena_set_allocated_optional_bytes(
- ::std::string* optional_bytes) {
- GOOGLE_DCHECK(GetArenaNoVirtual() != NULL);
- if (optional_bytes != NULL) {
-
- } else {
-
- }
- optional_bytes_.UnsafeArenaSetAllocated(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- optional_bytes, GetArenaNoVirtual());
- // @@protoc_insertion_point(field_unsafe_arena_set_allocated:proto3_arena_lite_unittest.TestAllTypes.optional_bytes)
- }
- // .proto3_arena_lite_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 ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage& TestAllTypes::_internal_optional_nested_message() const {
- return *optional_nested_message_;
- }
- inline const ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage& TestAllTypes::optional_nested_message() const {
- const ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* p = optional_nested_message_;
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestAllTypes.optional_nested_message)
- return p != NULL ? *p : *reinterpret_cast<const ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage*>(
- &::proto3_arena_lite_unittest::_TestAllTypes_NestedMessage_default_instance_);
- }
- inline ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* TestAllTypes::release_optional_nested_message() {
- // @@protoc_insertion_point(field_release:proto3_arena_lite_unittest.TestAllTypes.optional_nested_message)
-
- ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* temp = optional_nested_message_;
- if (GetArenaNoVirtual() != NULL) {
- temp = ::google::protobuf::internal::DuplicateIfNonNull(temp);
- }
- optional_nested_message_ = NULL;
- return temp;
- }
- inline ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* TestAllTypes::unsafe_arena_release_optional_nested_message() {
- // @@protoc_insertion_point(field_unsafe_arena_release:proto3_arena_lite_unittest.TestAllTypes.optional_nested_message)
-
- ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* temp = optional_nested_message_;
- optional_nested_message_ = NULL;
- return temp;
- }
- inline ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* TestAllTypes::mutable_optional_nested_message() {
-
- if (optional_nested_message_ == NULL) {
- auto* p = CreateMaybeMessage<::proto3_arena_lite_unittest::TestAllTypes_NestedMessage>(GetArenaNoVirtual());
- optional_nested_message_ = p;
- }
- // @@protoc_insertion_point(field_mutable:proto3_arena_lite_unittest.TestAllTypes.optional_nested_message)
- return optional_nested_message_;
- }
- inline void TestAllTypes::set_allocated_optional_nested_message(::proto3_arena_lite_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 =
- ::google::protobuf::Arena::GetArena(optional_nested_message);
- 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:proto3_arena_lite_unittest.TestAllTypes.optional_nested_message)
- }
- // .proto3_arena_lite_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 ::proto3_arena_lite_unittest::ForeignMessage& TestAllTypes::_internal_optional_foreign_message() const {
- return *optional_foreign_message_;
- }
- inline const ::proto3_arena_lite_unittest::ForeignMessage& TestAllTypes::optional_foreign_message() const {
- const ::proto3_arena_lite_unittest::ForeignMessage* p = optional_foreign_message_;
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestAllTypes.optional_foreign_message)
- return p != NULL ? *p : *reinterpret_cast<const ::proto3_arena_lite_unittest::ForeignMessage*>(
- &::proto3_arena_lite_unittest::_ForeignMessage_default_instance_);
- }
- inline ::proto3_arena_lite_unittest::ForeignMessage* TestAllTypes::release_optional_foreign_message() {
- // @@protoc_insertion_point(field_release:proto3_arena_lite_unittest.TestAllTypes.optional_foreign_message)
-
- ::proto3_arena_lite_unittest::ForeignMessage* temp = optional_foreign_message_;
- if (GetArenaNoVirtual() != NULL) {
- temp = ::google::protobuf::internal::DuplicateIfNonNull(temp);
- }
- optional_foreign_message_ = NULL;
- return temp;
- }
- inline ::proto3_arena_lite_unittest::ForeignMessage* TestAllTypes::unsafe_arena_release_optional_foreign_message() {
- // @@protoc_insertion_point(field_unsafe_arena_release:proto3_arena_lite_unittest.TestAllTypes.optional_foreign_message)
-
- ::proto3_arena_lite_unittest::ForeignMessage* temp = optional_foreign_message_;
- optional_foreign_message_ = NULL;
- return temp;
- }
- inline ::proto3_arena_lite_unittest::ForeignMessage* TestAllTypes::mutable_optional_foreign_message() {
-
- if (optional_foreign_message_ == NULL) {
- auto* p = CreateMaybeMessage<::proto3_arena_lite_unittest::ForeignMessage>(GetArenaNoVirtual());
- optional_foreign_message_ = p;
- }
- // @@protoc_insertion_point(field_mutable:proto3_arena_lite_unittest.TestAllTypes.optional_foreign_message)
- return optional_foreign_message_;
- }
- inline void TestAllTypes::set_allocated_optional_foreign_message(::proto3_arena_lite_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 =
- ::google::protobuf::Arena::GetArena(optional_foreign_message);
- 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:proto3_arena_lite_unittest.TestAllTypes.optional_foreign_message)
- }
- // .protobuf_unittest_import.ImportMessage optional_import_message = 20;
- inline bool TestAllTypes::has_optional_import_message() const {
- return this != internal_default_instance() && optional_import_message_ != NULL;
- }
- inline const ::protobuf_unittest_import::ImportMessage& TestAllTypes::_internal_optional_import_message() const {
- return *optional_import_message_;
- }
- inline const ::protobuf_unittest_import::ImportMessage& TestAllTypes::optional_import_message() const {
- const ::protobuf_unittest_import::ImportMessage* p = optional_import_message_;
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestAllTypes.optional_import_message)
- return p != NULL ? *p : *reinterpret_cast<const ::protobuf_unittest_import::ImportMessage*>(
- &::protobuf_unittest_import::_ImportMessage_default_instance_);
- }
- inline ::protobuf_unittest_import::ImportMessage* TestAllTypes::release_optional_import_message() {
- // @@protoc_insertion_point(field_release:proto3_arena_lite_unittest.TestAllTypes.optional_import_message)
-
- ::protobuf_unittest_import::ImportMessage* temp = optional_import_message_;
- if (GetArenaNoVirtual() != NULL) {
- temp = ::google::protobuf::internal::DuplicateIfNonNull(temp);
- }
- optional_import_message_ = NULL;
- return temp;
- }
- inline ::protobuf_unittest_import::ImportMessage* TestAllTypes::unsafe_arena_release_optional_import_message() {
- // @@protoc_insertion_point(field_unsafe_arena_release:proto3_arena_lite_unittest.TestAllTypes.optional_import_message)
-
- ::protobuf_unittest_import::ImportMessage* temp = optional_import_message_;
- optional_import_message_ = NULL;
- return temp;
- }
- inline ::protobuf_unittest_import::ImportMessage* TestAllTypes::mutable_optional_import_message() {
-
- if (optional_import_message_ == NULL) {
- auto* p = CreateMaybeMessage<::protobuf_unittest_import::ImportMessage>(GetArenaNoVirtual());
- optional_import_message_ = p;
- }
- // @@protoc_insertion_point(field_mutable:proto3_arena_lite_unittest.TestAllTypes.optional_import_message)
- return optional_import_message_;
- }
- inline void TestAllTypes::set_allocated_optional_import_message(::protobuf_unittest_import::ImportMessage* optional_import_message) {
- ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
- if (message_arena == NULL) {
- delete reinterpret_cast< ::google::protobuf::MessageLite*>(optional_import_message_);
- }
- if (optional_import_message) {
- ::google::protobuf::Arena* submessage_arena =
- reinterpret_cast<::google::protobuf::MessageLite*>(optional_import_message)->GetArena();
- if (message_arena != submessage_arena) {
- optional_import_message = ::google::protobuf::internal::GetOwnedMessage(
- message_arena, optional_import_message, submessage_arena);
- }
-
- } else {
-
- }
- optional_import_message_ = optional_import_message;
- // @@protoc_insertion_point(field_set_allocated:proto3_arena_lite_unittest.TestAllTypes.optional_import_message)
- }
- // .proto3_arena_lite_unittest.TestAllTypes.NestedEnum optional_nested_enum = 21;
- inline void TestAllTypes::clear_optional_nested_enum() {
- optional_nested_enum_ = 0;
- }
- inline ::proto3_arena_lite_unittest::TestAllTypes_NestedEnum TestAllTypes::optional_nested_enum() const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestAllTypes.optional_nested_enum)
- return static_cast< ::proto3_arena_lite_unittest::TestAllTypes_NestedEnum >(optional_nested_enum_);
- }
- inline void TestAllTypes::set_optional_nested_enum(::proto3_arena_lite_unittest::TestAllTypes_NestedEnum value) {
-
- optional_nested_enum_ = value;
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestAllTypes.optional_nested_enum)
- }
- // .proto3_arena_lite_unittest.ForeignEnum optional_foreign_enum = 22;
- inline void TestAllTypes::clear_optional_foreign_enum() {
- optional_foreign_enum_ = 0;
- }
- inline ::proto3_arena_lite_unittest::ForeignEnum TestAllTypes::optional_foreign_enum() const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestAllTypes.optional_foreign_enum)
- return static_cast< ::proto3_arena_lite_unittest::ForeignEnum >(optional_foreign_enum_);
- }
- inline void TestAllTypes::set_optional_foreign_enum(::proto3_arena_lite_unittest::ForeignEnum value) {
-
- optional_foreign_enum_ = value;
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestAllTypes.optional_foreign_enum)
- }
- // string optional_string_piece = 24 [ctype = STRING_PIECE];
- inline void TestAllTypes::clear_optional_string_piece() {
- optional_string_piece_.ClearToEmpty(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual());
- }
- inline const ::std::string& TestAllTypes::optional_string_piece() const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestAllTypes.optional_string_piece)
- return optional_string_piece_.Get();
- }
- inline void TestAllTypes::set_optional_string_piece(const ::std::string& value) {
-
- optional_string_piece_.SetLite(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value, GetArenaNoVirtual());
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestAllTypes.optional_string_piece)
- }
- #if LANG_CXX11
- inline void TestAllTypes::set_optional_string_piece(::std::string&& value) {
-
- optional_string_piece_.SetLite(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value), GetArenaNoVirtual());
- // @@protoc_insertion_point(field_set_rvalue:proto3_arena_lite_unittest.TestAllTypes.optional_string_piece)
- }
- #endif
- inline void TestAllTypes::set_optional_string_piece(const char* value) {
- GOOGLE_DCHECK(value != NULL);
-
- optional_string_piece_.SetLite(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value),
- GetArenaNoVirtual());
- // @@protoc_insertion_point(field_set_char:proto3_arena_lite_unittest.TestAllTypes.optional_string_piece)
- }
- inline void TestAllTypes::set_optional_string_piece(const char* value,
- size_t size) {
-
- optional_string_piece_.SetLite(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(
- reinterpret_cast<const char*>(value), size), GetArenaNoVirtual());
- // @@protoc_insertion_point(field_set_pointer:proto3_arena_lite_unittest.TestAllTypes.optional_string_piece)
- }
- inline ::std::string* TestAllTypes::mutable_optional_string_piece() {
-
- // @@protoc_insertion_point(field_mutable:proto3_arena_lite_unittest.TestAllTypes.optional_string_piece)
- return optional_string_piece_.Mutable(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual());
- }
- inline ::std::string* TestAllTypes::release_optional_string_piece() {
- // @@protoc_insertion_point(field_release:proto3_arena_lite_unittest.TestAllTypes.optional_string_piece)
-
- return optional_string_piece_.Release(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual());
- }
- inline void TestAllTypes::set_allocated_optional_string_piece(::std::string* optional_string_piece) {
- if (optional_string_piece != NULL) {
-
- } else {
-
- }
- optional_string_piece_.SetAllocated(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), optional_string_piece,
- GetArenaNoVirtual());
- // @@protoc_insertion_point(field_set_allocated:proto3_arena_lite_unittest.TestAllTypes.optional_string_piece)
- }
- inline ::std::string* TestAllTypes::unsafe_arena_release_optional_string_piece() {
- // @@protoc_insertion_point(field_unsafe_arena_release:proto3_arena_lite_unittest.TestAllTypes.optional_string_piece)
- GOOGLE_DCHECK(GetArenaNoVirtual() != NULL);
-
- return optional_string_piece_.UnsafeArenaRelease(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- GetArenaNoVirtual());
- }
- inline void TestAllTypes::unsafe_arena_set_allocated_optional_string_piece(
- ::std::string* optional_string_piece) {
- GOOGLE_DCHECK(GetArenaNoVirtual() != NULL);
- if (optional_string_piece != NULL) {
-
- } else {
-
- }
- optional_string_piece_.UnsafeArenaSetAllocated(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- optional_string_piece, GetArenaNoVirtual());
- // @@protoc_insertion_point(field_unsafe_arena_set_allocated:proto3_arena_lite_unittest.TestAllTypes.optional_string_piece)
- }
- // string optional_cord = 25 [ctype = CORD];
- inline void TestAllTypes::clear_optional_cord() {
- optional_cord_.ClearToEmpty(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual());
- }
- inline const ::std::string& TestAllTypes::optional_cord() const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestAllTypes.optional_cord)
- return optional_cord_.Get();
- }
- inline void TestAllTypes::set_optional_cord(const ::std::string& value) {
-
- optional_cord_.SetLite(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value, GetArenaNoVirtual());
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestAllTypes.optional_cord)
- }
- #if LANG_CXX11
- inline void TestAllTypes::set_optional_cord(::std::string&& value) {
-
- optional_cord_.SetLite(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value), GetArenaNoVirtual());
- // @@protoc_insertion_point(field_set_rvalue:proto3_arena_lite_unittest.TestAllTypes.optional_cord)
- }
- #endif
- inline void TestAllTypes::set_optional_cord(const char* value) {
- GOOGLE_DCHECK(value != NULL);
-
- optional_cord_.SetLite(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value),
- GetArenaNoVirtual());
- // @@protoc_insertion_point(field_set_char:proto3_arena_lite_unittest.TestAllTypes.optional_cord)
- }
- inline void TestAllTypes::set_optional_cord(const char* value,
- size_t size) {
-
- optional_cord_.SetLite(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(
- reinterpret_cast<const char*>(value), size), GetArenaNoVirtual());
- // @@protoc_insertion_point(field_set_pointer:proto3_arena_lite_unittest.TestAllTypes.optional_cord)
- }
- inline ::std::string* TestAllTypes::mutable_optional_cord() {
-
- // @@protoc_insertion_point(field_mutable:proto3_arena_lite_unittest.TestAllTypes.optional_cord)
- return optional_cord_.Mutable(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual());
- }
- inline ::std::string* TestAllTypes::release_optional_cord() {
- // @@protoc_insertion_point(field_release:proto3_arena_lite_unittest.TestAllTypes.optional_cord)
-
- return optional_cord_.Release(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual());
- }
- inline void TestAllTypes::set_allocated_optional_cord(::std::string* optional_cord) {
- if (optional_cord != NULL) {
-
- } else {
-
- }
- optional_cord_.SetAllocated(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), optional_cord,
- GetArenaNoVirtual());
- // @@protoc_insertion_point(field_set_allocated:proto3_arena_lite_unittest.TestAllTypes.optional_cord)
- }
- inline ::std::string* TestAllTypes::unsafe_arena_release_optional_cord() {
- // @@protoc_insertion_point(field_unsafe_arena_release:proto3_arena_lite_unittest.TestAllTypes.optional_cord)
- GOOGLE_DCHECK(GetArenaNoVirtual() != NULL);
-
- return optional_cord_.UnsafeArenaRelease(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- GetArenaNoVirtual());
- }
- inline void TestAllTypes::unsafe_arena_set_allocated_optional_cord(
- ::std::string* optional_cord) {
- GOOGLE_DCHECK(GetArenaNoVirtual() != NULL);
- if (optional_cord != NULL) {
-
- } else {
-
- }
- optional_cord_.UnsafeArenaSetAllocated(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- optional_cord, GetArenaNoVirtual());
- // @@protoc_insertion_point(field_unsafe_arena_set_allocated:proto3_arena_lite_unittest.TestAllTypes.optional_cord)
- }
- // .protobuf_unittest_import.PublicImportMessage optional_public_import_message = 26;
- inline bool TestAllTypes::has_optional_public_import_message() const {
- return this != internal_default_instance() && optional_public_import_message_ != NULL;
- }
- inline const ::protobuf_unittest_import::PublicImportMessage& TestAllTypes::_internal_optional_public_import_message() const {
- return *optional_public_import_message_;
- }
- inline const ::protobuf_unittest_import::PublicImportMessage& TestAllTypes::optional_public_import_message() const {
- const ::protobuf_unittest_import::PublicImportMessage* p = optional_public_import_message_;
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestAllTypes.optional_public_import_message)
- return p != NULL ? *p : *reinterpret_cast<const ::protobuf_unittest_import::PublicImportMessage*>(
- &::protobuf_unittest_import::_PublicImportMessage_default_instance_);
- }
- inline ::protobuf_unittest_import::PublicImportMessage* TestAllTypes::release_optional_public_import_message() {
- // @@protoc_insertion_point(field_release:proto3_arena_lite_unittest.TestAllTypes.optional_public_import_message)
-
- ::protobuf_unittest_import::PublicImportMessage* temp = optional_public_import_message_;
- if (GetArenaNoVirtual() != NULL) {
- temp = ::google::protobuf::internal::DuplicateIfNonNull(temp);
- }
- optional_public_import_message_ = NULL;
- return temp;
- }
- inline ::protobuf_unittest_import::PublicImportMessage* TestAllTypes::unsafe_arena_release_optional_public_import_message() {
- // @@protoc_insertion_point(field_unsafe_arena_release:proto3_arena_lite_unittest.TestAllTypes.optional_public_import_message)
-
- ::protobuf_unittest_import::PublicImportMessage* temp = optional_public_import_message_;
- optional_public_import_message_ = NULL;
- return temp;
- }
- inline ::protobuf_unittest_import::PublicImportMessage* TestAllTypes::mutable_optional_public_import_message() {
-
- if (optional_public_import_message_ == NULL) {
- auto* p = CreateMaybeMessage<::protobuf_unittest_import::PublicImportMessage>(GetArenaNoVirtual());
- optional_public_import_message_ = p;
- }
- // @@protoc_insertion_point(field_mutable:proto3_arena_lite_unittest.TestAllTypes.optional_public_import_message)
- return optional_public_import_message_;
- }
- inline void TestAllTypes::set_allocated_optional_public_import_message(::protobuf_unittest_import::PublicImportMessage* optional_public_import_message) {
- ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
- if (message_arena == NULL) {
- delete reinterpret_cast< ::google::protobuf::MessageLite*>(optional_public_import_message_);
- }
- if (optional_public_import_message) {
- ::google::protobuf::Arena* submessage_arena = NULL;
- if (message_arena != submessage_arena) {
- optional_public_import_message = ::google::protobuf::internal::GetOwnedMessage(
- message_arena, optional_public_import_message, submessage_arena);
- }
-
- } else {
-
- }
- optional_public_import_message_ = optional_public_import_message;
- // @@protoc_insertion_point(field_set_allocated:proto3_arena_lite_unittest.TestAllTypes.optional_public_import_message)
- }
- // .proto3_arena_lite_unittest.TestAllTypes.NestedMessage optional_lazy_message = 27 [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 ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage& TestAllTypes::_internal_optional_lazy_message() const {
- return *optional_lazy_message_;
- }
- inline const ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage& TestAllTypes::optional_lazy_message() const {
- const ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* p = optional_lazy_message_;
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestAllTypes.optional_lazy_message)
- return p != NULL ? *p : *reinterpret_cast<const ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage*>(
- &::proto3_arena_lite_unittest::_TestAllTypes_NestedMessage_default_instance_);
- }
- inline ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* TestAllTypes::release_optional_lazy_message() {
- // @@protoc_insertion_point(field_release:proto3_arena_lite_unittest.TestAllTypes.optional_lazy_message)
-
- ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* temp = optional_lazy_message_;
- if (GetArenaNoVirtual() != NULL) {
- temp = ::google::protobuf::internal::DuplicateIfNonNull(temp);
- }
- optional_lazy_message_ = NULL;
- return temp;
- }
- inline ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* TestAllTypes::unsafe_arena_release_optional_lazy_message() {
- // @@protoc_insertion_point(field_unsafe_arena_release:proto3_arena_lite_unittest.TestAllTypes.optional_lazy_message)
-
- ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* temp = optional_lazy_message_;
- optional_lazy_message_ = NULL;
- return temp;
- }
- inline ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* TestAllTypes::mutable_optional_lazy_message() {
-
- if (optional_lazy_message_ == NULL) {
- auto* p = CreateMaybeMessage<::proto3_arena_lite_unittest::TestAllTypes_NestedMessage>(GetArenaNoVirtual());
- optional_lazy_message_ = p;
- }
- // @@protoc_insertion_point(field_mutable:proto3_arena_lite_unittest.TestAllTypes.optional_lazy_message)
- return optional_lazy_message_;
- }
- inline void TestAllTypes::set_allocated_optional_lazy_message(::proto3_arena_lite_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 =
- ::google::protobuf::Arena::GetArena(optional_lazy_message);
- 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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_unittest.TestAllTypes.repeated_int32)
- }
- inline void TestAllTypes::add_repeated_int32(::google::protobuf::int32 value) {
- repeated_int32_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestAllTypes.repeated_int32)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::int32 >&
- TestAllTypes::repeated_int32() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestAllTypes.repeated_int32)
- return repeated_int32_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::int32 >*
- TestAllTypes::mutable_repeated_int32() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_unittest.TestAllTypes.repeated_int64)
- }
- inline void TestAllTypes::add_repeated_int64(::google::protobuf::int64 value) {
- repeated_int64_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestAllTypes.repeated_int64)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::int64 >&
- TestAllTypes::repeated_int64() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestAllTypes.repeated_int64)
- return repeated_int64_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::int64 >*
- TestAllTypes::mutable_repeated_int64() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_unittest.TestAllTypes.repeated_uint32)
- }
- inline void TestAllTypes::add_repeated_uint32(::google::protobuf::uint32 value) {
- repeated_uint32_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestAllTypes.repeated_uint32)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::uint32 >&
- TestAllTypes::repeated_uint32() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestAllTypes.repeated_uint32)
- return repeated_uint32_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::uint32 >*
- TestAllTypes::mutable_repeated_uint32() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_unittest.TestAllTypes.repeated_uint64)
- }
- inline void TestAllTypes::add_repeated_uint64(::google::protobuf::uint64 value) {
- repeated_uint64_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestAllTypes.repeated_uint64)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::uint64 >&
- TestAllTypes::repeated_uint64() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestAllTypes.repeated_uint64)
- return repeated_uint64_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::uint64 >*
- TestAllTypes::mutable_repeated_uint64() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_unittest.TestAllTypes.repeated_sint32)
- }
- inline void TestAllTypes::add_repeated_sint32(::google::protobuf::int32 value) {
- repeated_sint32_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestAllTypes.repeated_sint32)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::int32 >&
- TestAllTypes::repeated_sint32() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestAllTypes.repeated_sint32)
- return repeated_sint32_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::int32 >*
- TestAllTypes::mutable_repeated_sint32() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_unittest.TestAllTypes.repeated_sint64)
- }
- inline void TestAllTypes::add_repeated_sint64(::google::protobuf::int64 value) {
- repeated_sint64_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestAllTypes.repeated_sint64)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::int64 >&
- TestAllTypes::repeated_sint64() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestAllTypes.repeated_sint64)
- return repeated_sint64_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::int64 >*
- TestAllTypes::mutable_repeated_sint64() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_unittest.TestAllTypes.repeated_fixed32)
- }
- inline void TestAllTypes::add_repeated_fixed32(::google::protobuf::uint32 value) {
- repeated_fixed32_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestAllTypes.repeated_fixed32)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::uint32 >&
- TestAllTypes::repeated_fixed32() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestAllTypes.repeated_fixed32)
- return repeated_fixed32_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::uint32 >*
- TestAllTypes::mutable_repeated_fixed32() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_unittest.TestAllTypes.repeated_fixed64)
- }
- inline void TestAllTypes::add_repeated_fixed64(::google::protobuf::uint64 value) {
- repeated_fixed64_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestAllTypes.repeated_fixed64)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::uint64 >&
- TestAllTypes::repeated_fixed64() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestAllTypes.repeated_fixed64)
- return repeated_fixed64_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::uint64 >*
- TestAllTypes::mutable_repeated_fixed64() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_unittest.TestAllTypes.repeated_sfixed32)
- }
- inline void TestAllTypes::add_repeated_sfixed32(::google::protobuf::int32 value) {
- repeated_sfixed32_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestAllTypes.repeated_sfixed32)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::int32 >&
- TestAllTypes::repeated_sfixed32() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestAllTypes.repeated_sfixed32)
- return repeated_sfixed32_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::int32 >*
- TestAllTypes::mutable_repeated_sfixed32() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_unittest.TestAllTypes.repeated_sfixed64)
- }
- inline void TestAllTypes::add_repeated_sfixed64(::google::protobuf::int64 value) {
- repeated_sfixed64_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestAllTypes.repeated_sfixed64)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::int64 >&
- TestAllTypes::repeated_sfixed64() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestAllTypes.repeated_sfixed64)
- return repeated_sfixed64_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::int64 >*
- TestAllTypes::mutable_repeated_sfixed64() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_unittest.TestAllTypes.repeated_float)
- }
- inline void TestAllTypes::add_repeated_float(float value) {
- repeated_float_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestAllTypes.repeated_float)
- }
- inline const ::google::protobuf::RepeatedField< float >&
- TestAllTypes::repeated_float() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestAllTypes.repeated_float)
- return repeated_float_;
- }
- inline ::google::protobuf::RepeatedField< float >*
- TestAllTypes::mutable_repeated_float() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_unittest.TestAllTypes.repeated_double)
- }
- inline void TestAllTypes::add_repeated_double(double value) {
- repeated_double_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestAllTypes.repeated_double)
- }
- inline const ::google::protobuf::RepeatedField< double >&
- TestAllTypes::repeated_double() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestAllTypes.repeated_double)
- return repeated_double_;
- }
- inline ::google::protobuf::RepeatedField< double >*
- TestAllTypes::mutable_repeated_double() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_unittest.TestAllTypes.repeated_bool)
- }
- inline void TestAllTypes::add_repeated_bool(bool value) {
- repeated_bool_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestAllTypes.repeated_bool)
- }
- inline const ::google::protobuf::RepeatedField< bool >&
- TestAllTypes::repeated_bool() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestAllTypes.repeated_bool)
- return repeated_bool_;
- }
- inline ::google::protobuf::RepeatedField< bool >*
- TestAllTypes::mutable_repeated_bool() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_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:proto3_arena_lite_unittest.TestAllTypes.repeated_string)
- return repeated_string_.Get(index);
- }
- inline ::std::string* TestAllTypes::mutable_repeated_string(int index) {
- // @@protoc_insertion_point(field_mutable:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_unittest.TestAllTypes.repeated_string)
- }
- inline ::std::string* TestAllTypes::add_repeated_string() {
- // @@protoc_insertion_point(field_add_mutable:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_unittest.TestAllTypes.repeated_string)
- }
- inline const ::google::protobuf::RepeatedPtrField< ::std::string>&
- TestAllTypes::repeated_string() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestAllTypes.repeated_string)
- return repeated_string_;
- }
- inline ::google::protobuf::RepeatedPtrField< ::std::string>*
- TestAllTypes::mutable_repeated_string() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_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:proto3_arena_lite_unittest.TestAllTypes.repeated_bytes)
- return repeated_bytes_.Get(index);
- }
- inline ::std::string* TestAllTypes::mutable_repeated_bytes(int index) {
- // @@protoc_insertion_point(field_mutable:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_unittest.TestAllTypes.repeated_bytes)
- }
- inline ::std::string* TestAllTypes::add_repeated_bytes() {
- // @@protoc_insertion_point(field_add_mutable:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_unittest.TestAllTypes.repeated_bytes)
- }
- inline const ::google::protobuf::RepeatedPtrField< ::std::string>&
- TestAllTypes::repeated_bytes() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestAllTypes.repeated_bytes)
- return repeated_bytes_;
- }
- inline ::google::protobuf::RepeatedPtrField< ::std::string>*
- TestAllTypes::mutable_repeated_bytes() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestAllTypes.repeated_bytes)
- return &repeated_bytes_;
- }
- // repeated .proto3_arena_lite_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 ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* TestAllTypes::mutable_repeated_nested_message(int index) {
- // @@protoc_insertion_point(field_mutable:proto3_arena_lite_unittest.TestAllTypes.repeated_nested_message)
- return repeated_nested_message_.Mutable(index);
- }
- inline ::google::protobuf::RepeatedPtrField< ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage >*
- TestAllTypes::mutable_repeated_nested_message() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestAllTypes.repeated_nested_message)
- return &repeated_nested_message_;
- }
- inline const ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage& TestAllTypes::repeated_nested_message(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestAllTypes.repeated_nested_message)
- return repeated_nested_message_.Get(index);
- }
- inline ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* TestAllTypes::add_repeated_nested_message() {
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestAllTypes.repeated_nested_message)
- return repeated_nested_message_.Add();
- }
- inline const ::google::protobuf::RepeatedPtrField< ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage >&
- TestAllTypes::repeated_nested_message() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestAllTypes.repeated_nested_message)
- return repeated_nested_message_;
- }
- // repeated .proto3_arena_lite_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 ::proto3_arena_lite_unittest::ForeignMessage* TestAllTypes::mutable_repeated_foreign_message(int index) {
- // @@protoc_insertion_point(field_mutable:proto3_arena_lite_unittest.TestAllTypes.repeated_foreign_message)
- return repeated_foreign_message_.Mutable(index);
- }
- inline ::google::protobuf::RepeatedPtrField< ::proto3_arena_lite_unittest::ForeignMessage >*
- TestAllTypes::mutable_repeated_foreign_message() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestAllTypes.repeated_foreign_message)
- return &repeated_foreign_message_;
- }
- inline const ::proto3_arena_lite_unittest::ForeignMessage& TestAllTypes::repeated_foreign_message(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestAllTypes.repeated_foreign_message)
- return repeated_foreign_message_.Get(index);
- }
- inline ::proto3_arena_lite_unittest::ForeignMessage* TestAllTypes::add_repeated_foreign_message() {
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestAllTypes.repeated_foreign_message)
- return repeated_foreign_message_.Add();
- }
- inline const ::google::protobuf::RepeatedPtrField< ::proto3_arena_lite_unittest::ForeignMessage >&
- TestAllTypes::repeated_foreign_message() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestAllTypes.repeated_foreign_message)
- return repeated_foreign_message_;
- }
- // repeated .protobuf_unittest_import.ImportMessage repeated_import_message = 50;
- inline int TestAllTypes::repeated_import_message_size() const {
- return repeated_import_message_.size();
- }
- inline ::protobuf_unittest_import::ImportMessage* TestAllTypes::mutable_repeated_import_message(int index) {
- // @@protoc_insertion_point(field_mutable:proto3_arena_lite_unittest.TestAllTypes.repeated_import_message)
- return repeated_import_message_.Mutable(index);
- }
- inline ::google::protobuf::RepeatedPtrField< ::protobuf_unittest_import::ImportMessage >*
- TestAllTypes::mutable_repeated_import_message() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestAllTypes.repeated_import_message)
- return &repeated_import_message_;
- }
- inline const ::protobuf_unittest_import::ImportMessage& TestAllTypes::repeated_import_message(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestAllTypes.repeated_import_message)
- return repeated_import_message_.Get(index);
- }
- inline ::protobuf_unittest_import::ImportMessage* TestAllTypes::add_repeated_import_message() {
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestAllTypes.repeated_import_message)
- return repeated_import_message_.Add();
- }
- inline const ::google::protobuf::RepeatedPtrField< ::protobuf_unittest_import::ImportMessage >&
- TestAllTypes::repeated_import_message() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestAllTypes.repeated_import_message)
- return repeated_import_message_;
- }
- // repeated .proto3_arena_lite_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 ::proto3_arena_lite_unittest::TestAllTypes_NestedEnum TestAllTypes::repeated_nested_enum(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestAllTypes.repeated_nested_enum)
- return static_cast< ::proto3_arena_lite_unittest::TestAllTypes_NestedEnum >(repeated_nested_enum_.Get(index));
- }
- inline void TestAllTypes::set_repeated_nested_enum(int index, ::proto3_arena_lite_unittest::TestAllTypes_NestedEnum value) {
- repeated_nested_enum_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestAllTypes.repeated_nested_enum)
- }
- inline void TestAllTypes::add_repeated_nested_enum(::proto3_arena_lite_unittest::TestAllTypes_NestedEnum value) {
- repeated_nested_enum_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestAllTypes.repeated_nested_enum)
- }
- inline const ::google::protobuf::RepeatedField<int>&
- TestAllTypes::repeated_nested_enum() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_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:proto3_arena_lite_unittest.TestAllTypes.repeated_nested_enum)
- return &repeated_nested_enum_;
- }
- // repeated .proto3_arena_lite_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 ::proto3_arena_lite_unittest::ForeignEnum TestAllTypes::repeated_foreign_enum(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestAllTypes.repeated_foreign_enum)
- return static_cast< ::proto3_arena_lite_unittest::ForeignEnum >(repeated_foreign_enum_.Get(index));
- }
- inline void TestAllTypes::set_repeated_foreign_enum(int index, ::proto3_arena_lite_unittest::ForeignEnum value) {
- repeated_foreign_enum_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestAllTypes.repeated_foreign_enum)
- }
- inline void TestAllTypes::add_repeated_foreign_enum(::proto3_arena_lite_unittest::ForeignEnum value) {
- repeated_foreign_enum_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestAllTypes.repeated_foreign_enum)
- }
- inline const ::google::protobuf::RepeatedField<int>&
- TestAllTypes::repeated_foreign_enum() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_unittest.TestAllTypes.repeated_string_piece)
- }
- inline ::std::string* TestAllTypes::add_repeated_string_piece() {
- // @@protoc_insertion_point(field_add_mutable:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_unittest.TestAllTypes.repeated_string_piece)
- }
- inline const ::google::protobuf::RepeatedPtrField< ::std::string>&
- TestAllTypes::repeated_string_piece() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_unittest.TestAllTypes.repeated_cord)
- return repeated_cord_.Get(index);
- }
- inline ::std::string* TestAllTypes::mutable_repeated_cord(int index) {
- // @@protoc_insertion_point(field_mutable:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_unittest.TestAllTypes.repeated_cord)
- }
- inline ::std::string* TestAllTypes::add_repeated_cord() {
- // @@protoc_insertion_point(field_add_mutable:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_unittest.TestAllTypes.repeated_cord)
- }
- inline const ::google::protobuf::RepeatedPtrField< ::std::string>&
- TestAllTypes::repeated_cord() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestAllTypes.repeated_cord)
- return repeated_cord_;
- }
- inline ::google::protobuf::RepeatedPtrField< ::std::string>*
- TestAllTypes::mutable_repeated_cord() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestAllTypes.repeated_cord)
- return &repeated_cord_;
- }
- // repeated .proto3_arena_lite_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 ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* TestAllTypes::mutable_repeated_lazy_message(int index) {
- // @@protoc_insertion_point(field_mutable:proto3_arena_lite_unittest.TestAllTypes.repeated_lazy_message)
- return repeated_lazy_message_.Mutable(index);
- }
- inline ::google::protobuf::RepeatedPtrField< ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage >*
- TestAllTypes::mutable_repeated_lazy_message() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestAllTypes.repeated_lazy_message)
- return &repeated_lazy_message_;
- }
- inline const ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage& TestAllTypes::repeated_lazy_message(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestAllTypes.repeated_lazy_message)
- return repeated_lazy_message_.Get(index);
- }
- inline ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* TestAllTypes::add_repeated_lazy_message() {
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestAllTypes.repeated_lazy_message)
- return repeated_lazy_message_.Add();
- }
- inline const ::google::protobuf::RepeatedPtrField< ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage >&
- TestAllTypes::repeated_lazy_message() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_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:proto3_arena_lite_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:proto3_arena_lite_unittest.TestAllTypes.oneof_uint32)
- }
- // .proto3_arena_lite_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()) {
- if (GetArenaNoVirtual() == NULL) {
- delete oneof_field_.oneof_nested_message_;
- }
- clear_has_oneof_field();
- }
- }
- inline const ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage& TestAllTypes::_internal_oneof_nested_message() const {
- return *oneof_field_.oneof_nested_message_;
- }
- inline ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* TestAllTypes::release_oneof_nested_message() {
- // @@protoc_insertion_point(field_release:proto3_arena_lite_unittest.TestAllTypes.oneof_nested_message)
- if (has_oneof_nested_message()) {
- clear_has_oneof_field();
- ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* temp = oneof_field_.oneof_nested_message_;
- if (GetArenaNoVirtual() != NULL) {
- temp = ::google::protobuf::internal::DuplicateIfNonNull(temp);
- }
- oneof_field_.oneof_nested_message_ = NULL;
- return temp;
- } else {
- return NULL;
- }
- }
- inline const ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage& TestAllTypes::oneof_nested_message() const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestAllTypes.oneof_nested_message)
- return has_oneof_nested_message()
- ? *oneof_field_.oneof_nested_message_
- : *reinterpret_cast< ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage*>(&::proto3_arena_lite_unittest::_TestAllTypes_NestedMessage_default_instance_);
- }
- inline ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* TestAllTypes::unsafe_arena_release_oneof_nested_message() {
- // @@protoc_insertion_point(field_unsafe_arena_release:proto3_arena_lite_unittest.TestAllTypes.oneof_nested_message)
- if (has_oneof_nested_message()) {
- clear_has_oneof_field();
- ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* temp = oneof_field_.oneof_nested_message_;
- oneof_field_.oneof_nested_message_ = NULL;
- return temp;
- } else {
- return NULL;
- }
- }
- inline void TestAllTypes::unsafe_arena_set_allocated_oneof_nested_message(::proto3_arena_lite_unittest::TestAllTypes_NestedMessage* oneof_nested_message) {
- clear_oneof_field();
- if (oneof_nested_message) {
- set_has_oneof_nested_message();
- oneof_field_.oneof_nested_message_ = oneof_nested_message;
- }
- // @@protoc_insertion_point(field_unsafe_arena_set_allocated:proto3_arena_lite_unittest.TestAllTypes.oneof_nested_message)
- }
- inline ::proto3_arena_lite_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< ::proto3_arena_lite_unittest::TestAllTypes_NestedMessage >(
- GetArenaNoVirtual());
- }
- // @@protoc_insertion_point(field_mutable:proto3_arena_lite_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_.Destroy(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- GetArenaNoVirtual());
- clear_has_oneof_field();
- }
- }
- inline const ::std::string& TestAllTypes::oneof_string() const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestAllTypes.oneof_string)
- if (has_oneof_string()) {
- return oneof_field_.oneof_string_.Get();
- }
- return *&::google::protobuf::internal::GetEmptyStringAlreadyInited();
- }
- inline void TestAllTypes::set_oneof_string(const ::std::string& value) {
- if (!has_oneof_string()) {
- clear_oneof_field();
- set_has_oneof_string();
- oneof_field_.oneof_string_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- oneof_field_.oneof_string_.SetLite(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value,
- GetArenaNoVirtual());
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestAllTypes.oneof_string)
- }
- #if LANG_CXX11
- inline void TestAllTypes::set_oneof_string(::std::string&& value) {
- // @@protoc_insertion_point(field_set:proto3_arena_lite_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_.SetLite(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value), GetArenaNoVirtual());
- // @@protoc_insertion_point(field_set_rvalue:proto3_arena_lite_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_.SetLite(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- ::std::string(value), GetArenaNoVirtual());
- // @@protoc_insertion_point(field_set_char:proto3_arena_lite_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_.SetLite(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(
- reinterpret_cast<const char*>(value), size),
- GetArenaNoVirtual());
- // @@protoc_insertion_point(field_set_pointer:proto3_arena_lite_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());
- }
- return oneof_field_.oneof_string_.Mutable(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- GetArenaNoVirtual());
- // @@protoc_insertion_point(field_mutable:proto3_arena_lite_unittest.TestAllTypes.oneof_string)
- }
- inline ::std::string* TestAllTypes::release_oneof_string() {
- // @@protoc_insertion_point(field_release:proto3_arena_lite_unittest.TestAllTypes.oneof_string)
- if (has_oneof_string()) {
- clear_has_oneof_field();
- return oneof_field_.oneof_string_.Release(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- GetArenaNoVirtual());
- } 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_.SetAllocated(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), oneof_string,
- GetArenaNoVirtual());
- }
- // @@protoc_insertion_point(field_set_allocated:proto3_arena_lite_unittest.TestAllTypes.oneof_string)
- }
- inline ::std::string* TestAllTypes::unsafe_arena_release_oneof_string() {
- // @@protoc_insertion_point(field_unsafe_arena_release:proto3_arena_lite_unittest.TestAllTypes.oneof_string)
- GOOGLE_DCHECK(GetArenaNoVirtual() != NULL);
- if (has_oneof_string()) {
- clear_has_oneof_field();
- return oneof_field_.oneof_string_.UnsafeArenaRelease(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual());
- } else {
- return NULL;
- }
- }
- inline void TestAllTypes::unsafe_arena_set_allocated_oneof_string(::std::string* oneof_string) {
- GOOGLE_DCHECK(GetArenaNoVirtual() != NULL);
- if (!has_oneof_string()) {
- oneof_field_.oneof_string_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- clear_oneof_field();
- if (oneof_string) {
- set_has_oneof_string();
- oneof_field_.oneof_string_.UnsafeArenaSetAllocated(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), oneof_string, GetArenaNoVirtual());
- }
- // @@protoc_insertion_point(field_unsafe_arena_set_allocated:proto3_arena_lite_unittest.TestAllTypes.oneof_string)
- }
- // bytes oneof_bytes = 114;
- inline bool TestAllTypes::has_oneof_bytes() const {
- return oneof_field_case() == kOneofBytes;
- }
- inline void TestAllTypes::set_has_oneof_bytes() {
- _oneof_case_[0] = kOneofBytes;
- }
- inline void TestAllTypes::clear_oneof_bytes() {
- if (has_oneof_bytes()) {
- oneof_field_.oneof_bytes_.Destroy(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- GetArenaNoVirtual());
- clear_has_oneof_field();
- }
- }
- inline const ::std::string& TestAllTypes::oneof_bytes() const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestAllTypes.oneof_bytes)
- if (has_oneof_bytes()) {
- return oneof_field_.oneof_bytes_.Get();
- }
- return *&::google::protobuf::internal::GetEmptyStringAlreadyInited();
- }
- inline void TestAllTypes::set_oneof_bytes(const ::std::string& value) {
- if (!has_oneof_bytes()) {
- clear_oneof_field();
- set_has_oneof_bytes();
- oneof_field_.oneof_bytes_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- oneof_field_.oneof_bytes_.SetLite(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value,
- GetArenaNoVirtual());
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestAllTypes.oneof_bytes)
- }
- #if LANG_CXX11
- inline void TestAllTypes::set_oneof_bytes(::std::string&& value) {
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestAllTypes.oneof_bytes)
- if (!has_oneof_bytes()) {
- clear_oneof_field();
- set_has_oneof_bytes();
- oneof_field_.oneof_bytes_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- oneof_field_.oneof_bytes_.SetLite(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value), GetArenaNoVirtual());
- // @@protoc_insertion_point(field_set_rvalue:proto3_arena_lite_unittest.TestAllTypes.oneof_bytes)
- }
- #endif
- inline void TestAllTypes::set_oneof_bytes(const char* value) {
- GOOGLE_DCHECK(value != NULL);
- if (!has_oneof_bytes()) {
- clear_oneof_field();
- set_has_oneof_bytes();
- oneof_field_.oneof_bytes_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- oneof_field_.oneof_bytes_.SetLite(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- ::std::string(value), GetArenaNoVirtual());
- // @@protoc_insertion_point(field_set_char:proto3_arena_lite_unittest.TestAllTypes.oneof_bytes)
- }
- inline void TestAllTypes::set_oneof_bytes(const void* value,
- size_t size) {
- if (!has_oneof_bytes()) {
- clear_oneof_field();
- set_has_oneof_bytes();
- oneof_field_.oneof_bytes_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- oneof_field_.oneof_bytes_.SetLite(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(
- reinterpret_cast<const char*>(value), size),
- GetArenaNoVirtual());
- // @@protoc_insertion_point(field_set_pointer:proto3_arena_lite_unittest.TestAllTypes.oneof_bytes)
- }
- inline ::std::string* TestAllTypes::mutable_oneof_bytes() {
- if (!has_oneof_bytes()) {
- clear_oneof_field();
- set_has_oneof_bytes();
- oneof_field_.oneof_bytes_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- return oneof_field_.oneof_bytes_.Mutable(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- GetArenaNoVirtual());
- // @@protoc_insertion_point(field_mutable:proto3_arena_lite_unittest.TestAllTypes.oneof_bytes)
- }
- inline ::std::string* TestAllTypes::release_oneof_bytes() {
- // @@protoc_insertion_point(field_release:proto3_arena_lite_unittest.TestAllTypes.oneof_bytes)
- if (has_oneof_bytes()) {
- clear_has_oneof_field();
- return oneof_field_.oneof_bytes_.Release(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- GetArenaNoVirtual());
- } else {
- return NULL;
- }
- }
- inline void TestAllTypes::set_allocated_oneof_bytes(::std::string* oneof_bytes) {
- if (!has_oneof_bytes()) {
- oneof_field_.oneof_bytes_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- clear_oneof_field();
- if (oneof_bytes != NULL) {
- set_has_oneof_bytes();
- oneof_field_.oneof_bytes_.SetAllocated(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), oneof_bytes,
- GetArenaNoVirtual());
- }
- // @@protoc_insertion_point(field_set_allocated:proto3_arena_lite_unittest.TestAllTypes.oneof_bytes)
- }
- inline ::std::string* TestAllTypes::unsafe_arena_release_oneof_bytes() {
- // @@protoc_insertion_point(field_unsafe_arena_release:proto3_arena_lite_unittest.TestAllTypes.oneof_bytes)
- GOOGLE_DCHECK(GetArenaNoVirtual() != NULL);
- if (has_oneof_bytes()) {
- clear_has_oneof_field();
- return oneof_field_.oneof_bytes_.UnsafeArenaRelease(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual());
- } else {
- return NULL;
- }
- }
- inline void TestAllTypes::unsafe_arena_set_allocated_oneof_bytes(::std::string* oneof_bytes) {
- GOOGLE_DCHECK(GetArenaNoVirtual() != NULL);
- if (!has_oneof_bytes()) {
- oneof_field_.oneof_bytes_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- clear_oneof_field();
- if (oneof_bytes) {
- set_has_oneof_bytes();
- oneof_field_.oneof_bytes_.UnsafeArenaSetAllocated(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), oneof_bytes, GetArenaNoVirtual());
- }
- // @@protoc_insertion_point(field_unsafe_arena_set_allocated:proto3_arena_lite_unittest.TestAllTypes.oneof_bytes)
- }
- 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]);
- }
- // -------------------------------------------------------------------
- // TestPackedTypes
- // repeated int32 packed_int32 = 90 [packed = true];
- inline int TestPackedTypes::packed_int32_size() const {
- return packed_int32_.size();
- }
- inline void TestPackedTypes::clear_packed_int32() {
- packed_int32_.Clear();
- }
- inline ::google::protobuf::int32 TestPackedTypes::packed_int32(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestPackedTypes.packed_int32)
- return packed_int32_.Get(index);
- }
- inline void TestPackedTypes::set_packed_int32(int index, ::google::protobuf::int32 value) {
- packed_int32_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestPackedTypes.packed_int32)
- }
- inline void TestPackedTypes::add_packed_int32(::google::protobuf::int32 value) {
- packed_int32_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestPackedTypes.packed_int32)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::int32 >&
- TestPackedTypes::packed_int32() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestPackedTypes.packed_int32)
- return packed_int32_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::int32 >*
- TestPackedTypes::mutable_packed_int32() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestPackedTypes.packed_int32)
- return &packed_int32_;
- }
- // repeated int64 packed_int64 = 91 [packed = true];
- inline int TestPackedTypes::packed_int64_size() const {
- return packed_int64_.size();
- }
- inline void TestPackedTypes::clear_packed_int64() {
- packed_int64_.Clear();
- }
- inline ::google::protobuf::int64 TestPackedTypes::packed_int64(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestPackedTypes.packed_int64)
- return packed_int64_.Get(index);
- }
- inline void TestPackedTypes::set_packed_int64(int index, ::google::protobuf::int64 value) {
- packed_int64_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestPackedTypes.packed_int64)
- }
- inline void TestPackedTypes::add_packed_int64(::google::protobuf::int64 value) {
- packed_int64_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestPackedTypes.packed_int64)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::int64 >&
- TestPackedTypes::packed_int64() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestPackedTypes.packed_int64)
- return packed_int64_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::int64 >*
- TestPackedTypes::mutable_packed_int64() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestPackedTypes.packed_int64)
- return &packed_int64_;
- }
- // repeated uint32 packed_uint32 = 92 [packed = true];
- inline int TestPackedTypes::packed_uint32_size() const {
- return packed_uint32_.size();
- }
- inline void TestPackedTypes::clear_packed_uint32() {
- packed_uint32_.Clear();
- }
- inline ::google::protobuf::uint32 TestPackedTypes::packed_uint32(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestPackedTypes.packed_uint32)
- return packed_uint32_.Get(index);
- }
- inline void TestPackedTypes::set_packed_uint32(int index, ::google::protobuf::uint32 value) {
- packed_uint32_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestPackedTypes.packed_uint32)
- }
- inline void TestPackedTypes::add_packed_uint32(::google::protobuf::uint32 value) {
- packed_uint32_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestPackedTypes.packed_uint32)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::uint32 >&
- TestPackedTypes::packed_uint32() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestPackedTypes.packed_uint32)
- return packed_uint32_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::uint32 >*
- TestPackedTypes::mutable_packed_uint32() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestPackedTypes.packed_uint32)
- return &packed_uint32_;
- }
- // repeated uint64 packed_uint64 = 93 [packed = true];
- inline int TestPackedTypes::packed_uint64_size() const {
- return packed_uint64_.size();
- }
- inline void TestPackedTypes::clear_packed_uint64() {
- packed_uint64_.Clear();
- }
- inline ::google::protobuf::uint64 TestPackedTypes::packed_uint64(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestPackedTypes.packed_uint64)
- return packed_uint64_.Get(index);
- }
- inline void TestPackedTypes::set_packed_uint64(int index, ::google::protobuf::uint64 value) {
- packed_uint64_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestPackedTypes.packed_uint64)
- }
- inline void TestPackedTypes::add_packed_uint64(::google::protobuf::uint64 value) {
- packed_uint64_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestPackedTypes.packed_uint64)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::uint64 >&
- TestPackedTypes::packed_uint64() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestPackedTypes.packed_uint64)
- return packed_uint64_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::uint64 >*
- TestPackedTypes::mutable_packed_uint64() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestPackedTypes.packed_uint64)
- return &packed_uint64_;
- }
- // repeated sint32 packed_sint32 = 94 [packed = true];
- inline int TestPackedTypes::packed_sint32_size() const {
- return packed_sint32_.size();
- }
- inline void TestPackedTypes::clear_packed_sint32() {
- packed_sint32_.Clear();
- }
- inline ::google::protobuf::int32 TestPackedTypes::packed_sint32(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestPackedTypes.packed_sint32)
- return packed_sint32_.Get(index);
- }
- inline void TestPackedTypes::set_packed_sint32(int index, ::google::protobuf::int32 value) {
- packed_sint32_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestPackedTypes.packed_sint32)
- }
- inline void TestPackedTypes::add_packed_sint32(::google::protobuf::int32 value) {
- packed_sint32_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestPackedTypes.packed_sint32)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::int32 >&
- TestPackedTypes::packed_sint32() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestPackedTypes.packed_sint32)
- return packed_sint32_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::int32 >*
- TestPackedTypes::mutable_packed_sint32() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestPackedTypes.packed_sint32)
- return &packed_sint32_;
- }
- // repeated sint64 packed_sint64 = 95 [packed = true];
- inline int TestPackedTypes::packed_sint64_size() const {
- return packed_sint64_.size();
- }
- inline void TestPackedTypes::clear_packed_sint64() {
- packed_sint64_.Clear();
- }
- inline ::google::protobuf::int64 TestPackedTypes::packed_sint64(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestPackedTypes.packed_sint64)
- return packed_sint64_.Get(index);
- }
- inline void TestPackedTypes::set_packed_sint64(int index, ::google::protobuf::int64 value) {
- packed_sint64_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestPackedTypes.packed_sint64)
- }
- inline void TestPackedTypes::add_packed_sint64(::google::protobuf::int64 value) {
- packed_sint64_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestPackedTypes.packed_sint64)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::int64 >&
- TestPackedTypes::packed_sint64() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestPackedTypes.packed_sint64)
- return packed_sint64_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::int64 >*
- TestPackedTypes::mutable_packed_sint64() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestPackedTypes.packed_sint64)
- return &packed_sint64_;
- }
- // repeated fixed32 packed_fixed32 = 96 [packed = true];
- inline int TestPackedTypes::packed_fixed32_size() const {
- return packed_fixed32_.size();
- }
- inline void TestPackedTypes::clear_packed_fixed32() {
- packed_fixed32_.Clear();
- }
- inline ::google::protobuf::uint32 TestPackedTypes::packed_fixed32(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestPackedTypes.packed_fixed32)
- return packed_fixed32_.Get(index);
- }
- inline void TestPackedTypes::set_packed_fixed32(int index, ::google::protobuf::uint32 value) {
- packed_fixed32_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestPackedTypes.packed_fixed32)
- }
- inline void TestPackedTypes::add_packed_fixed32(::google::protobuf::uint32 value) {
- packed_fixed32_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestPackedTypes.packed_fixed32)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::uint32 >&
- TestPackedTypes::packed_fixed32() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestPackedTypes.packed_fixed32)
- return packed_fixed32_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::uint32 >*
- TestPackedTypes::mutable_packed_fixed32() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestPackedTypes.packed_fixed32)
- return &packed_fixed32_;
- }
- // repeated fixed64 packed_fixed64 = 97 [packed = true];
- inline int TestPackedTypes::packed_fixed64_size() const {
- return packed_fixed64_.size();
- }
- inline void TestPackedTypes::clear_packed_fixed64() {
- packed_fixed64_.Clear();
- }
- inline ::google::protobuf::uint64 TestPackedTypes::packed_fixed64(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestPackedTypes.packed_fixed64)
- return packed_fixed64_.Get(index);
- }
- inline void TestPackedTypes::set_packed_fixed64(int index, ::google::protobuf::uint64 value) {
- packed_fixed64_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestPackedTypes.packed_fixed64)
- }
- inline void TestPackedTypes::add_packed_fixed64(::google::protobuf::uint64 value) {
- packed_fixed64_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestPackedTypes.packed_fixed64)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::uint64 >&
- TestPackedTypes::packed_fixed64() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestPackedTypes.packed_fixed64)
- return packed_fixed64_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::uint64 >*
- TestPackedTypes::mutable_packed_fixed64() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestPackedTypes.packed_fixed64)
- return &packed_fixed64_;
- }
- // repeated sfixed32 packed_sfixed32 = 98 [packed = true];
- inline int TestPackedTypes::packed_sfixed32_size() const {
- return packed_sfixed32_.size();
- }
- inline void TestPackedTypes::clear_packed_sfixed32() {
- packed_sfixed32_.Clear();
- }
- inline ::google::protobuf::int32 TestPackedTypes::packed_sfixed32(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestPackedTypes.packed_sfixed32)
- return packed_sfixed32_.Get(index);
- }
- inline void TestPackedTypes::set_packed_sfixed32(int index, ::google::protobuf::int32 value) {
- packed_sfixed32_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestPackedTypes.packed_sfixed32)
- }
- inline void TestPackedTypes::add_packed_sfixed32(::google::protobuf::int32 value) {
- packed_sfixed32_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestPackedTypes.packed_sfixed32)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::int32 >&
- TestPackedTypes::packed_sfixed32() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestPackedTypes.packed_sfixed32)
- return packed_sfixed32_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::int32 >*
- TestPackedTypes::mutable_packed_sfixed32() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestPackedTypes.packed_sfixed32)
- return &packed_sfixed32_;
- }
- // repeated sfixed64 packed_sfixed64 = 99 [packed = true];
- inline int TestPackedTypes::packed_sfixed64_size() const {
- return packed_sfixed64_.size();
- }
- inline void TestPackedTypes::clear_packed_sfixed64() {
- packed_sfixed64_.Clear();
- }
- inline ::google::protobuf::int64 TestPackedTypes::packed_sfixed64(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestPackedTypes.packed_sfixed64)
- return packed_sfixed64_.Get(index);
- }
- inline void TestPackedTypes::set_packed_sfixed64(int index, ::google::protobuf::int64 value) {
- packed_sfixed64_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestPackedTypes.packed_sfixed64)
- }
- inline void TestPackedTypes::add_packed_sfixed64(::google::protobuf::int64 value) {
- packed_sfixed64_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestPackedTypes.packed_sfixed64)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::int64 >&
- TestPackedTypes::packed_sfixed64() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestPackedTypes.packed_sfixed64)
- return packed_sfixed64_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::int64 >*
- TestPackedTypes::mutable_packed_sfixed64() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestPackedTypes.packed_sfixed64)
- return &packed_sfixed64_;
- }
- // repeated float packed_float = 100 [packed = true];
- inline int TestPackedTypes::packed_float_size() const {
- return packed_float_.size();
- }
- inline void TestPackedTypes::clear_packed_float() {
- packed_float_.Clear();
- }
- inline float TestPackedTypes::packed_float(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestPackedTypes.packed_float)
- return packed_float_.Get(index);
- }
- inline void TestPackedTypes::set_packed_float(int index, float value) {
- packed_float_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestPackedTypes.packed_float)
- }
- inline void TestPackedTypes::add_packed_float(float value) {
- packed_float_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestPackedTypes.packed_float)
- }
- inline const ::google::protobuf::RepeatedField< float >&
- TestPackedTypes::packed_float() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestPackedTypes.packed_float)
- return packed_float_;
- }
- inline ::google::protobuf::RepeatedField< float >*
- TestPackedTypes::mutable_packed_float() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestPackedTypes.packed_float)
- return &packed_float_;
- }
- // repeated double packed_double = 101 [packed = true];
- inline int TestPackedTypes::packed_double_size() const {
- return packed_double_.size();
- }
- inline void TestPackedTypes::clear_packed_double() {
- packed_double_.Clear();
- }
- inline double TestPackedTypes::packed_double(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestPackedTypes.packed_double)
- return packed_double_.Get(index);
- }
- inline void TestPackedTypes::set_packed_double(int index, double value) {
- packed_double_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestPackedTypes.packed_double)
- }
- inline void TestPackedTypes::add_packed_double(double value) {
- packed_double_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestPackedTypes.packed_double)
- }
- inline const ::google::protobuf::RepeatedField< double >&
- TestPackedTypes::packed_double() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestPackedTypes.packed_double)
- return packed_double_;
- }
- inline ::google::protobuf::RepeatedField< double >*
- TestPackedTypes::mutable_packed_double() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestPackedTypes.packed_double)
- return &packed_double_;
- }
- // repeated bool packed_bool = 102 [packed = true];
- inline int TestPackedTypes::packed_bool_size() const {
- return packed_bool_.size();
- }
- inline void TestPackedTypes::clear_packed_bool() {
- packed_bool_.Clear();
- }
- inline bool TestPackedTypes::packed_bool(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestPackedTypes.packed_bool)
- return packed_bool_.Get(index);
- }
- inline void TestPackedTypes::set_packed_bool(int index, bool value) {
- packed_bool_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestPackedTypes.packed_bool)
- }
- inline void TestPackedTypes::add_packed_bool(bool value) {
- packed_bool_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestPackedTypes.packed_bool)
- }
- inline const ::google::protobuf::RepeatedField< bool >&
- TestPackedTypes::packed_bool() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestPackedTypes.packed_bool)
- return packed_bool_;
- }
- inline ::google::protobuf::RepeatedField< bool >*
- TestPackedTypes::mutable_packed_bool() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestPackedTypes.packed_bool)
- return &packed_bool_;
- }
- // repeated .proto3_arena_lite_unittest.ForeignEnum packed_enum = 103 [packed = true];
- inline int TestPackedTypes::packed_enum_size() const {
- return packed_enum_.size();
- }
- inline void TestPackedTypes::clear_packed_enum() {
- packed_enum_.Clear();
- }
- inline ::proto3_arena_lite_unittest::ForeignEnum TestPackedTypes::packed_enum(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestPackedTypes.packed_enum)
- return static_cast< ::proto3_arena_lite_unittest::ForeignEnum >(packed_enum_.Get(index));
- }
- inline void TestPackedTypes::set_packed_enum(int index, ::proto3_arena_lite_unittest::ForeignEnum value) {
- packed_enum_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestPackedTypes.packed_enum)
- }
- inline void TestPackedTypes::add_packed_enum(::proto3_arena_lite_unittest::ForeignEnum value) {
- packed_enum_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestPackedTypes.packed_enum)
- }
- inline const ::google::protobuf::RepeatedField<int>&
- TestPackedTypes::packed_enum() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestPackedTypes.packed_enum)
- return packed_enum_;
- }
- inline ::google::protobuf::RepeatedField<int>*
- TestPackedTypes::mutable_packed_enum() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestPackedTypes.packed_enum)
- return &packed_enum_;
- }
- // -------------------------------------------------------------------
- // TestUnpackedTypes
- // repeated int32 repeated_int32 = 1 [packed = false];
- inline int TestUnpackedTypes::repeated_int32_size() const {
- return repeated_int32_.size();
- }
- inline void TestUnpackedTypes::clear_repeated_int32() {
- repeated_int32_.Clear();
- }
- inline ::google::protobuf::int32 TestUnpackedTypes::repeated_int32(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_int32)
- return repeated_int32_.Get(index);
- }
- inline void TestUnpackedTypes::set_repeated_int32(int index, ::google::protobuf::int32 value) {
- repeated_int32_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_int32)
- }
- inline void TestUnpackedTypes::add_repeated_int32(::google::protobuf::int32 value) {
- repeated_int32_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_int32)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::int32 >&
- TestUnpackedTypes::repeated_int32() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_int32)
- return repeated_int32_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::int32 >*
- TestUnpackedTypes::mutable_repeated_int32() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_int32)
- return &repeated_int32_;
- }
- // repeated int64 repeated_int64 = 2 [packed = false];
- inline int TestUnpackedTypes::repeated_int64_size() const {
- return repeated_int64_.size();
- }
- inline void TestUnpackedTypes::clear_repeated_int64() {
- repeated_int64_.Clear();
- }
- inline ::google::protobuf::int64 TestUnpackedTypes::repeated_int64(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_int64)
- return repeated_int64_.Get(index);
- }
- inline void TestUnpackedTypes::set_repeated_int64(int index, ::google::protobuf::int64 value) {
- repeated_int64_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_int64)
- }
- inline void TestUnpackedTypes::add_repeated_int64(::google::protobuf::int64 value) {
- repeated_int64_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_int64)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::int64 >&
- TestUnpackedTypes::repeated_int64() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_int64)
- return repeated_int64_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::int64 >*
- TestUnpackedTypes::mutable_repeated_int64() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_int64)
- return &repeated_int64_;
- }
- // repeated uint32 repeated_uint32 = 3 [packed = false];
- inline int TestUnpackedTypes::repeated_uint32_size() const {
- return repeated_uint32_.size();
- }
- inline void TestUnpackedTypes::clear_repeated_uint32() {
- repeated_uint32_.Clear();
- }
- inline ::google::protobuf::uint32 TestUnpackedTypes::repeated_uint32(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_uint32)
- return repeated_uint32_.Get(index);
- }
- inline void TestUnpackedTypes::set_repeated_uint32(int index, ::google::protobuf::uint32 value) {
- repeated_uint32_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_uint32)
- }
- inline void TestUnpackedTypes::add_repeated_uint32(::google::protobuf::uint32 value) {
- repeated_uint32_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_uint32)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::uint32 >&
- TestUnpackedTypes::repeated_uint32() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_uint32)
- return repeated_uint32_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::uint32 >*
- TestUnpackedTypes::mutable_repeated_uint32() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_uint32)
- return &repeated_uint32_;
- }
- // repeated uint64 repeated_uint64 = 4 [packed = false];
- inline int TestUnpackedTypes::repeated_uint64_size() const {
- return repeated_uint64_.size();
- }
- inline void TestUnpackedTypes::clear_repeated_uint64() {
- repeated_uint64_.Clear();
- }
- inline ::google::protobuf::uint64 TestUnpackedTypes::repeated_uint64(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_uint64)
- return repeated_uint64_.Get(index);
- }
- inline void TestUnpackedTypes::set_repeated_uint64(int index, ::google::protobuf::uint64 value) {
- repeated_uint64_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_uint64)
- }
- inline void TestUnpackedTypes::add_repeated_uint64(::google::protobuf::uint64 value) {
- repeated_uint64_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_uint64)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::uint64 >&
- TestUnpackedTypes::repeated_uint64() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_uint64)
- return repeated_uint64_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::uint64 >*
- TestUnpackedTypes::mutable_repeated_uint64() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_uint64)
- return &repeated_uint64_;
- }
- // repeated sint32 repeated_sint32 = 5 [packed = false];
- inline int TestUnpackedTypes::repeated_sint32_size() const {
- return repeated_sint32_.size();
- }
- inline void TestUnpackedTypes::clear_repeated_sint32() {
- repeated_sint32_.Clear();
- }
- inline ::google::protobuf::int32 TestUnpackedTypes::repeated_sint32(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_sint32)
- return repeated_sint32_.Get(index);
- }
- inline void TestUnpackedTypes::set_repeated_sint32(int index, ::google::protobuf::int32 value) {
- repeated_sint32_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_sint32)
- }
- inline void TestUnpackedTypes::add_repeated_sint32(::google::protobuf::int32 value) {
- repeated_sint32_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_sint32)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::int32 >&
- TestUnpackedTypes::repeated_sint32() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_sint32)
- return repeated_sint32_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::int32 >*
- TestUnpackedTypes::mutable_repeated_sint32() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_sint32)
- return &repeated_sint32_;
- }
- // repeated sint64 repeated_sint64 = 6 [packed = false];
- inline int TestUnpackedTypes::repeated_sint64_size() const {
- return repeated_sint64_.size();
- }
- inline void TestUnpackedTypes::clear_repeated_sint64() {
- repeated_sint64_.Clear();
- }
- inline ::google::protobuf::int64 TestUnpackedTypes::repeated_sint64(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_sint64)
- return repeated_sint64_.Get(index);
- }
- inline void TestUnpackedTypes::set_repeated_sint64(int index, ::google::protobuf::int64 value) {
- repeated_sint64_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_sint64)
- }
- inline void TestUnpackedTypes::add_repeated_sint64(::google::protobuf::int64 value) {
- repeated_sint64_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_sint64)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::int64 >&
- TestUnpackedTypes::repeated_sint64() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_sint64)
- return repeated_sint64_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::int64 >*
- TestUnpackedTypes::mutable_repeated_sint64() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_sint64)
- return &repeated_sint64_;
- }
- // repeated fixed32 repeated_fixed32 = 7 [packed = false];
- inline int TestUnpackedTypes::repeated_fixed32_size() const {
- return repeated_fixed32_.size();
- }
- inline void TestUnpackedTypes::clear_repeated_fixed32() {
- repeated_fixed32_.Clear();
- }
- inline ::google::protobuf::uint32 TestUnpackedTypes::repeated_fixed32(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_fixed32)
- return repeated_fixed32_.Get(index);
- }
- inline void TestUnpackedTypes::set_repeated_fixed32(int index, ::google::protobuf::uint32 value) {
- repeated_fixed32_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_fixed32)
- }
- inline void TestUnpackedTypes::add_repeated_fixed32(::google::protobuf::uint32 value) {
- repeated_fixed32_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_fixed32)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::uint32 >&
- TestUnpackedTypes::repeated_fixed32() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_fixed32)
- return repeated_fixed32_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::uint32 >*
- TestUnpackedTypes::mutable_repeated_fixed32() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_fixed32)
- return &repeated_fixed32_;
- }
- // repeated fixed64 repeated_fixed64 = 8 [packed = false];
- inline int TestUnpackedTypes::repeated_fixed64_size() const {
- return repeated_fixed64_.size();
- }
- inline void TestUnpackedTypes::clear_repeated_fixed64() {
- repeated_fixed64_.Clear();
- }
- inline ::google::protobuf::uint64 TestUnpackedTypes::repeated_fixed64(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_fixed64)
- return repeated_fixed64_.Get(index);
- }
- inline void TestUnpackedTypes::set_repeated_fixed64(int index, ::google::protobuf::uint64 value) {
- repeated_fixed64_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_fixed64)
- }
- inline void TestUnpackedTypes::add_repeated_fixed64(::google::protobuf::uint64 value) {
- repeated_fixed64_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_fixed64)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::uint64 >&
- TestUnpackedTypes::repeated_fixed64() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_fixed64)
- return repeated_fixed64_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::uint64 >*
- TestUnpackedTypes::mutable_repeated_fixed64() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_fixed64)
- return &repeated_fixed64_;
- }
- // repeated sfixed32 repeated_sfixed32 = 9 [packed = false];
- inline int TestUnpackedTypes::repeated_sfixed32_size() const {
- return repeated_sfixed32_.size();
- }
- inline void TestUnpackedTypes::clear_repeated_sfixed32() {
- repeated_sfixed32_.Clear();
- }
- inline ::google::protobuf::int32 TestUnpackedTypes::repeated_sfixed32(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_sfixed32)
- return repeated_sfixed32_.Get(index);
- }
- inline void TestUnpackedTypes::set_repeated_sfixed32(int index, ::google::protobuf::int32 value) {
- repeated_sfixed32_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_sfixed32)
- }
- inline void TestUnpackedTypes::add_repeated_sfixed32(::google::protobuf::int32 value) {
- repeated_sfixed32_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_sfixed32)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::int32 >&
- TestUnpackedTypes::repeated_sfixed32() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_sfixed32)
- return repeated_sfixed32_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::int32 >*
- TestUnpackedTypes::mutable_repeated_sfixed32() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_sfixed32)
- return &repeated_sfixed32_;
- }
- // repeated sfixed64 repeated_sfixed64 = 10 [packed = false];
- inline int TestUnpackedTypes::repeated_sfixed64_size() const {
- return repeated_sfixed64_.size();
- }
- inline void TestUnpackedTypes::clear_repeated_sfixed64() {
- repeated_sfixed64_.Clear();
- }
- inline ::google::protobuf::int64 TestUnpackedTypes::repeated_sfixed64(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_sfixed64)
- return repeated_sfixed64_.Get(index);
- }
- inline void TestUnpackedTypes::set_repeated_sfixed64(int index, ::google::protobuf::int64 value) {
- repeated_sfixed64_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_sfixed64)
- }
- inline void TestUnpackedTypes::add_repeated_sfixed64(::google::protobuf::int64 value) {
- repeated_sfixed64_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_sfixed64)
- }
- inline const ::google::protobuf::RepeatedField< ::google::protobuf::int64 >&
- TestUnpackedTypes::repeated_sfixed64() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_sfixed64)
- return repeated_sfixed64_;
- }
- inline ::google::protobuf::RepeatedField< ::google::protobuf::int64 >*
- TestUnpackedTypes::mutable_repeated_sfixed64() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_sfixed64)
- return &repeated_sfixed64_;
- }
- // repeated float repeated_float = 11 [packed = false];
- inline int TestUnpackedTypes::repeated_float_size() const {
- return repeated_float_.size();
- }
- inline void TestUnpackedTypes::clear_repeated_float() {
- repeated_float_.Clear();
- }
- inline float TestUnpackedTypes::repeated_float(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_float)
- return repeated_float_.Get(index);
- }
- inline void TestUnpackedTypes::set_repeated_float(int index, float value) {
- repeated_float_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_float)
- }
- inline void TestUnpackedTypes::add_repeated_float(float value) {
- repeated_float_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_float)
- }
- inline const ::google::protobuf::RepeatedField< float >&
- TestUnpackedTypes::repeated_float() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_float)
- return repeated_float_;
- }
- inline ::google::protobuf::RepeatedField< float >*
- TestUnpackedTypes::mutable_repeated_float() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_float)
- return &repeated_float_;
- }
- // repeated double repeated_double = 12 [packed = false];
- inline int TestUnpackedTypes::repeated_double_size() const {
- return repeated_double_.size();
- }
- inline void TestUnpackedTypes::clear_repeated_double() {
- repeated_double_.Clear();
- }
- inline double TestUnpackedTypes::repeated_double(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_double)
- return repeated_double_.Get(index);
- }
- inline void TestUnpackedTypes::set_repeated_double(int index, double value) {
- repeated_double_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_double)
- }
- inline void TestUnpackedTypes::add_repeated_double(double value) {
- repeated_double_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_double)
- }
- inline const ::google::protobuf::RepeatedField< double >&
- TestUnpackedTypes::repeated_double() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_double)
- return repeated_double_;
- }
- inline ::google::protobuf::RepeatedField< double >*
- TestUnpackedTypes::mutable_repeated_double() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_double)
- return &repeated_double_;
- }
- // repeated bool repeated_bool = 13 [packed = false];
- inline int TestUnpackedTypes::repeated_bool_size() const {
- return repeated_bool_.size();
- }
- inline void TestUnpackedTypes::clear_repeated_bool() {
- repeated_bool_.Clear();
- }
- inline bool TestUnpackedTypes::repeated_bool(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_bool)
- return repeated_bool_.Get(index);
- }
- inline void TestUnpackedTypes::set_repeated_bool(int index, bool value) {
- repeated_bool_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_bool)
- }
- inline void TestUnpackedTypes::add_repeated_bool(bool value) {
- repeated_bool_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_bool)
- }
- inline const ::google::protobuf::RepeatedField< bool >&
- TestUnpackedTypes::repeated_bool() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_bool)
- return repeated_bool_;
- }
- inline ::google::protobuf::RepeatedField< bool >*
- TestUnpackedTypes::mutable_repeated_bool() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_bool)
- return &repeated_bool_;
- }
- // repeated .proto3_arena_lite_unittest.TestAllTypes.NestedEnum repeated_nested_enum = 14 [packed = false];
- inline int TestUnpackedTypes::repeated_nested_enum_size() const {
- return repeated_nested_enum_.size();
- }
- inline void TestUnpackedTypes::clear_repeated_nested_enum() {
- repeated_nested_enum_.Clear();
- }
- inline ::proto3_arena_lite_unittest::TestAllTypes_NestedEnum TestUnpackedTypes::repeated_nested_enum(int index) const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_nested_enum)
- return static_cast< ::proto3_arena_lite_unittest::TestAllTypes_NestedEnum >(repeated_nested_enum_.Get(index));
- }
- inline void TestUnpackedTypes::set_repeated_nested_enum(int index, ::proto3_arena_lite_unittest::TestAllTypes_NestedEnum value) {
- repeated_nested_enum_.Set(index, value);
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_nested_enum)
- }
- inline void TestUnpackedTypes::add_repeated_nested_enum(::proto3_arena_lite_unittest::TestAllTypes_NestedEnum value) {
- repeated_nested_enum_.Add(value);
- // @@protoc_insertion_point(field_add:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_nested_enum)
- }
- inline const ::google::protobuf::RepeatedField<int>&
- TestUnpackedTypes::repeated_nested_enum() const {
- // @@protoc_insertion_point(field_list:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_nested_enum)
- return repeated_nested_enum_;
- }
- inline ::google::protobuf::RepeatedField<int>*
- TestUnpackedTypes::mutable_repeated_nested_enum() {
- // @@protoc_insertion_point(field_mutable_list:proto3_arena_lite_unittest.TestUnpackedTypes.repeated_nested_enum)
- return &repeated_nested_enum_;
- }
- // -------------------------------------------------------------------
- // NestedTestAllTypes
- // .proto3_arena_lite_unittest.NestedTestAllTypes child = 1;
- inline bool NestedTestAllTypes::has_child() const {
- return this != internal_default_instance() && child_ != NULL;
- }
- inline void NestedTestAllTypes::clear_child() {
- if (GetArenaNoVirtual() == NULL && child_ != NULL) {
- delete child_;
- }
- child_ = NULL;
- }
- inline const ::proto3_arena_lite_unittest::NestedTestAllTypes& NestedTestAllTypes::_internal_child() const {
- return *child_;
- }
- inline const ::proto3_arena_lite_unittest::NestedTestAllTypes& NestedTestAllTypes::child() const {
- const ::proto3_arena_lite_unittest::NestedTestAllTypes* p = child_;
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.NestedTestAllTypes.child)
- return p != NULL ? *p : *reinterpret_cast<const ::proto3_arena_lite_unittest::NestedTestAllTypes*>(
- &::proto3_arena_lite_unittest::_NestedTestAllTypes_default_instance_);
- }
- inline ::proto3_arena_lite_unittest::NestedTestAllTypes* NestedTestAllTypes::release_child() {
- // @@protoc_insertion_point(field_release:proto3_arena_lite_unittest.NestedTestAllTypes.child)
-
- ::proto3_arena_lite_unittest::NestedTestAllTypes* temp = child_;
- if (GetArenaNoVirtual() != NULL) {
- temp = ::google::protobuf::internal::DuplicateIfNonNull(temp);
- }
- child_ = NULL;
- return temp;
- }
- inline ::proto3_arena_lite_unittest::NestedTestAllTypes* NestedTestAllTypes::unsafe_arena_release_child() {
- // @@protoc_insertion_point(field_unsafe_arena_release:proto3_arena_lite_unittest.NestedTestAllTypes.child)
-
- ::proto3_arena_lite_unittest::NestedTestAllTypes* temp = child_;
- child_ = NULL;
- return temp;
- }
- inline ::proto3_arena_lite_unittest::NestedTestAllTypes* NestedTestAllTypes::mutable_child() {
-
- if (child_ == NULL) {
- auto* p = CreateMaybeMessage<::proto3_arena_lite_unittest::NestedTestAllTypes>(GetArenaNoVirtual());
- child_ = p;
- }
- // @@protoc_insertion_point(field_mutable:proto3_arena_lite_unittest.NestedTestAllTypes.child)
- return child_;
- }
- inline void NestedTestAllTypes::set_allocated_child(::proto3_arena_lite_unittest::NestedTestAllTypes* child) {
- ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
- if (message_arena == NULL) {
- delete child_;
- }
- if (child) {
- ::google::protobuf::Arena* submessage_arena =
- ::google::protobuf::Arena::GetArena(child);
- if (message_arena != submessage_arena) {
- child = ::google::protobuf::internal::GetOwnedMessage(
- message_arena, child, submessage_arena);
- }
-
- } else {
-
- }
- child_ = child;
- // @@protoc_insertion_point(field_set_allocated:proto3_arena_lite_unittest.NestedTestAllTypes.child)
- }
- // .proto3_arena_lite_unittest.TestAllTypes payload = 2;
- inline bool NestedTestAllTypes::has_payload() const {
- return this != internal_default_instance() && payload_ != NULL;
- }
- inline void NestedTestAllTypes::clear_payload() {
- if (GetArenaNoVirtual() == NULL && payload_ != NULL) {
- delete payload_;
- }
- payload_ = NULL;
- }
- inline const ::proto3_arena_lite_unittest::TestAllTypes& NestedTestAllTypes::_internal_payload() const {
- return *payload_;
- }
- inline const ::proto3_arena_lite_unittest::TestAllTypes& NestedTestAllTypes::payload() const {
- const ::proto3_arena_lite_unittest::TestAllTypes* p = payload_;
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.NestedTestAllTypes.payload)
- return p != NULL ? *p : *reinterpret_cast<const ::proto3_arena_lite_unittest::TestAllTypes*>(
- &::proto3_arena_lite_unittest::_TestAllTypes_default_instance_);
- }
- inline ::proto3_arena_lite_unittest::TestAllTypes* NestedTestAllTypes::release_payload() {
- // @@protoc_insertion_point(field_release:proto3_arena_lite_unittest.NestedTestAllTypes.payload)
-
- ::proto3_arena_lite_unittest::TestAllTypes* temp = payload_;
- if (GetArenaNoVirtual() != NULL) {
- temp = ::google::protobuf::internal::DuplicateIfNonNull(temp);
- }
- payload_ = NULL;
- return temp;
- }
- inline ::proto3_arena_lite_unittest::TestAllTypes* NestedTestAllTypes::unsafe_arena_release_payload() {
- // @@protoc_insertion_point(field_unsafe_arena_release:proto3_arena_lite_unittest.NestedTestAllTypes.payload)
-
- ::proto3_arena_lite_unittest::TestAllTypes* temp = payload_;
- payload_ = NULL;
- return temp;
- }
- inline ::proto3_arena_lite_unittest::TestAllTypes* NestedTestAllTypes::mutable_payload() {
-
- if (payload_ == NULL) {
- auto* p = CreateMaybeMessage<::proto3_arena_lite_unittest::TestAllTypes>(GetArenaNoVirtual());
- payload_ = p;
- }
- // @@protoc_insertion_point(field_mutable:proto3_arena_lite_unittest.NestedTestAllTypes.payload)
- return payload_;
- }
- inline void NestedTestAllTypes::set_allocated_payload(::proto3_arena_lite_unittest::TestAllTypes* payload) {
- ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
- if (message_arena == NULL) {
- delete payload_;
- }
- if (payload) {
- ::google::protobuf::Arena* submessage_arena =
- ::google::protobuf::Arena::GetArena(payload);
- if (message_arena != submessage_arena) {
- payload = ::google::protobuf::internal::GetOwnedMessage(
- message_arena, payload, submessage_arena);
- }
-
- } else {
-
- }
- payload_ = payload;
- // @@protoc_insertion_point(field_set_allocated:proto3_arena_lite_unittest.NestedTestAllTypes.payload)
- }
- // -------------------------------------------------------------------
- // ForeignMessage
- // int32 c = 1;
- inline void ForeignMessage::clear_c() {
- c_ = 0;
- }
- inline ::google::protobuf::int32 ForeignMessage::c() const {
- // @@protoc_insertion_point(field_get:proto3_arena_lite_unittest.ForeignMessage.c)
- return c_;
- }
- inline void ForeignMessage::set_c(::google::protobuf::int32 value) {
-
- c_ = value;
- // @@protoc_insertion_point(field_set:proto3_arena_lite_unittest.ForeignMessage.c)
- }
- // -------------------------------------------------------------------
- // TestEmptyMessage
- #ifdef __GNUC__
- #pragma GCC diagnostic pop
- #endif // __GNUC__
- // -------------------------------------------------------------------
- // -------------------------------------------------------------------
- // -------------------------------------------------------------------
- // -------------------------------------------------------------------
- // -------------------------------------------------------------------
- // -------------------------------------------------------------------
- // @@protoc_insertion_point(namespace_scope)
- } // namespace proto3_arena_lite_unittest
- namespace google {
- namespace protobuf {
- template <> struct is_proto_enum< ::proto3_arena_lite_unittest::TestAllTypes_NestedEnum> : ::std::true_type {};
- template <> struct is_proto_enum< ::proto3_arena_lite_unittest::ForeignEnum> : ::std::true_type {};
- } // namespace protobuf
- } // namespace google
- // @@protoc_insertion_point(global_scope)
- #endif // PROTOBUF_INCLUDED_google_2fprotobuf_2funittest_5fproto3_5farena_5flite_2eproto
|