Home
last modified time | relevance | path

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

/external/protobuf/src/google/protobuf/
Dmap_field_test.cc137 TEST_F(MapFieldBasePrimitiveTest, SpaceUsedExcludingSelf) { in TEST_F() argument
138 EXPECT_LT(0, map_field_base_->SpaceUsedExcludingSelf()); in TEST_F()
453 TEST_P(MapFieldStateTest, SpaceUsedExcludingSelf) { in TEST_P() argument
454 map_field_base_->SpaceUsedExcludingSelf(); in TEST_P()
Dextension_set_heavy.cc319 int ExtensionSet::SpaceUsedExcludingSelf() const { in SpaceUsedExcludingSelf() function in google::protobuf::internal::ExtensionSet
326 total_size += iter->second.SpaceUsedExcludingSelf(); in SpaceUsedExcludingSelf()
333 return field->SpaceUsedExcludingSelf<GenericTypeHandler<Message> >(); in RepeatedMessage_SpaceUsedExcludingSelf()
336 int ExtensionSet::Extension::SpaceUsedExcludingSelf() const { in SpaceUsedExcludingSelf() function in google::protobuf::internal::ExtensionSet::Extension
343 repeated_##LOWERCASE##_value->SpaceUsedExcludingSelf();\ in SpaceUsedExcludingSelf()
Dunknown_field_set.cc133 int UnknownFieldSet::SpaceUsedExcludingSelf() const { in SpaceUsedExcludingSelf() function in google::protobuf::UnknownFieldSet
157 return sizeof(*this) + SpaceUsedExcludingSelf(); in SpaceUsed()
Dmap_field.cc80 int MapFieldBase::SpaceUsedExcludingSelf() const { in SpaceUsedExcludingSelf() function in google::protobuf::internal::MapFieldBase
89 return repeated_field_->SpaceUsedExcludingSelf(); in SpaceUsedExcludingSelfNoLock()
427 size += MapFieldBase::repeated_field_->SpaceUsedExcludingSelf(); in SpaceUsedExcludingSelfNoLock()
Dunknown_field_set.h101 int SpaceUsedExcludingSelf() const;
Drepeated_field.h209 int SpaceUsedExcludingSelf() const;
442 int SpaceUsedExcludingSelf() const;
832 int SpaceUsedExcludingSelf() const;
1252 inline int RepeatedField<Element>::SpaceUsedExcludingSelf() const {
1562 inline int RepeatedPtrFieldBase::SpaceUsedExcludingSelf() const {
2002 inline int RepeatedPtrField<Element>::SpaceUsedExcludingSelf() const {
2003 return RepeatedPtrFieldBase::SpaceUsedExcludingSelf<TypeHandler>();
Dunknown_field_set_unittest.cc488 TEST_F(UnknownFieldSetTest, SpaceUsedExcludingSelf) { in TEST_F() argument
492 empty.SpaceUsedExcludingSelf()); in TEST_F()
Dgenerated_message_reflection.cc284 total_size += GetUnknownFields(message).SpaceUsedExcludingSelf(); in SpaceUsed()
287 total_size += GetExtensionSet(message).SpaceUsedExcludingSelf(); in SpaceUsed()
298 .SpaceUsedExcludingSelf(); \ in SpaceUsed()
316 .SpaceUsedExcludingSelf(); in SpaceUsed()
324 GetRaw<MapFieldBase>(message, field).SpaceUsedExcludingSelf(); in SpaceUsed()
330 .SpaceUsedExcludingSelf<GenericTypeHandler<Message> >(); in SpaceUsed()
Dmap_field.h102 int SpaceUsedExcludingSelf() const;
Drepeated_field_unittest.cc98 EXPECT_EQ(field.SpaceUsedExcludingSelf(), expected_usage); in TEST()
119 EXPECT_GE(field.SpaceUsedExcludingSelf(), expected_usage); in TEST()
539 EXPECT_GE(field.SpaceUsedExcludingSelf(), min_expected_usage); in TEST()
Dextension_set.h427 int SpaceUsedExcludingSelf() const;
539 int SpaceUsedExcludingSelf() const;
Dmap_field_inl.h456 size += MapFieldBase::repeated_field_->SpaceUsedExcludingSelf(); in SpaceUsedExcludingSelfNoLock()
Dextension_set_unittest.cc644 TEST(ExtensionSetTest, SpaceUsedExcludingSelf) { in TEST() argument