Lines Matching refs:UnknownFieldSet
63 // An UnknownFieldSet contains fields that were encountered while parsing a
70 // To get the UnknownFieldSet attached to any message, call
75 class LIBPROTOBUF_EXPORT UnknownFieldSet {
77 UnknownFieldSet();
78 ~UnknownFieldSet();
89 // Merge the contents of some other UnknownFieldSet with this one.
90 void MergeFrom(const UnknownFieldSet& other);
93 void MergeFromAndDestroy(UnknownFieldSet* other);
95 // Swaps the contents of some other UnknownFieldSet with this one.
96 inline void Swap(UnknownFieldSet* x);
106 // Returns the number of fields present in the UnknownFieldSet.
123 UnknownFieldSet* AddGroup(int number);
148 static const UnknownFieldSet* default_instance();
152 // Merges from other UnknownFieldSet. This method assumes, that this object
154 void InternalMergeFrom(const UnknownFieldSet& other);
164 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(UnknownFieldSet);
167 // Represents one field in an UnknownFieldSet.
191 inline const UnknownFieldSet& group() const;
198 inline UnknownFieldSet* mutable_group();
210 friend class UnknownFieldSet;
237 UnknownFieldSet* group_;
244 inline void UnknownFieldSet::Clear() {
250 inline bool UnknownFieldSet::empty() const {
255 inline void UnknownFieldSet::Swap(UnknownFieldSet* x) {
259 inline int UnknownFieldSet::field_count() const {
262 inline const UnknownField& UnknownFieldSet::field(int index) const {
266 inline UnknownField* UnknownFieldSet::mutable_field(int index) {
270 inline void UnknownFieldSet::AddLengthDelimited(
297 inline const UnknownFieldSet& UnknownField::group() const {
322 inline UnknownFieldSet* UnknownField::mutable_group() {