HomeSort by relevance Sort by last modified time
    Searched defs:UnknownFieldSet (Results 1 - 3 of 3) sorted by null

  /external/protobuf/src/google/protobuf/
unknown_field_set.cc 46 UnknownFieldSet::UnknownFieldSet()
49 UnknownFieldSet::~UnknownFieldSet() {
54 void UnknownFieldSet::ClearFallback() {
62 void UnknownFieldSet::MergeFrom(const UnknownFieldSet& other) {
68 int UnknownFieldSet::SpaceUsedExcludingSelf() const {
89 int UnknownFieldSet::SpaceUsed() const {
93 void UnknownFieldSet::AddVarint(int number, uint64 value)
    [all...]
unknown_field_set.h 51 // An UnknownFieldSet contains fields that were encountered while parsing a
58 // To get the UnknownFieldSet attached to any message, call
63 class LIBPROTOBUF_EXPORT UnknownFieldSet {
65 UnknownFieldSet();
66 ~UnknownFieldSet();
74 // Merge the contents of some other UnknownFieldSet with this one.
75 void MergeFrom(const UnknownFieldSet& other);
77 // Swaps the contents of some other UnknownFieldSet with this one.
78 inline void Swap(UnknownFieldSet* x);
88 // Returns the number of fields present in the UnknownFieldSet
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
UnknownFieldSet.java 46 * {@code UnknownFieldSet} is used to keep track of fields which were seen when
52 * <p>Every {@link Message} contains an {@code UnknownFieldSet} (and every
59 public final class UnknownFieldSet implements MessageLite {
60 private UnknownFieldSet() {}
71 public static Builder newBuilder(final UnknownFieldSet copyFrom) {
75 /** Get an empty {@code UnknownFieldSet}. */
76 public static UnknownFieldSet getDefaultInstance() {
79 public UnknownFieldSet getDefaultInstanceForType() {
82 private static final UnknownFieldSet defaultInstance =
83 new UnknownFieldSet(Collections.<Integer, Field>emptyMap())
    [all...]

Completed in 47 milliseconds