Home
last modified time | relevance | path

Searched refs:SpaceUsedExcludingSelf (Results 1 – 8 of 8) sorted by relevance

/external/protobuf/src/google/protobuf/
Dextension_set_heavy.cc235 int ExtensionSet::SpaceUsedExcludingSelf() const { in SpaceUsedExcludingSelf() function in google::protobuf::internal::ExtensionSet
242 total_size += iter->second.SpaceUsedExcludingSelf(); in SpaceUsedExcludingSelf()
249 return field->SpaceUsedExcludingSelf<GenericTypeHandler<Message> >(); in RepeatedMessage_SpaceUsedExcludingSelf()
252 int ExtensionSet::Extension::SpaceUsedExcludingSelf() const { in SpaceUsedExcludingSelf() function in google::protobuf::internal::ExtensionSet::Extension
259 repeated_##LOWERCASE##_value->SpaceUsedExcludingSelf();\ in SpaceUsedExcludingSelf()
Dunknown_field_set.cc68 int UnknownFieldSet::SpaceUsedExcludingSelf() const { in SpaceUsedExcludingSelf() function in google::protobuf::UnknownFieldSet
90 return sizeof(*this) + SpaceUsedExcludingSelf(); in SpaceUsed()
Drepeated_field.h127 int SpaceUsedExcludingSelf() const;
225 int SpaceUsedExcludingSelf() const;
366 int SpaceUsedExcludingSelf() const;
570 inline int RepeatedField<Element>::SpaceUsedExcludingSelf() const { in SpaceUsedExcludingSelf() function
714 inline int RepeatedPtrFieldBase::SpaceUsedExcludingSelf() const { in SpaceUsedExcludingSelf() function
869 inline int RepeatedPtrField<Element>::SpaceUsedExcludingSelf() const { in SpaceUsedExcludingSelf() function
870 return RepeatedPtrFieldBase::SpaceUsedExcludingSelf<TypeHandler>(); in SpaceUsedExcludingSelf()
Dgenerated_message_reflection.cc214 total_size += GetUnknownFields(message).SpaceUsedExcludingSelf(); in SpaceUsed()
217 total_size += GetExtensionSet(message).SpaceUsedExcludingSelf(); in SpaceUsed()
228 .SpaceUsedExcludingSelf(); \ in SpaceUsed()
246 .SpaceUsedExcludingSelf(); in SpaceUsed()
256 .SpaceUsedExcludingSelf<GenericTypeHandler<Message> >(); in SpaceUsed()
Dunknown_field_set.h83 int SpaceUsedExcludingSelf() const;
Drepeated_field_unittest.cc80 EXPECT_EQ(field.SpaceUsedExcludingSelf(), 0); in TEST()
90 EXPECT_EQ(field.SpaceUsedExcludingSelf(), 0); in TEST()
109 EXPECT_GE(field.SpaceUsedExcludingSelf(), expected_usage); in TEST()
321 EXPECT_GE(field.SpaceUsedExcludingSelf(), min_expected_usage); in TEST()
Dextension_set.h380 int SpaceUsedExcludingSelf() const;
451 int SpaceUsedExcludingSelf() const;
Dextension_set_unittest.cc336 TEST(ExtensionSetTest, SpaceUsedExcludingSelf) { in TEST() argument