Searched refs:IndexedCollectionVector (Results 1 – 2 of 2) sorted by relevance
283 template<class T> class IndexedCollectionVector : public CollectionVector<T> {286 IndexedCollectionVector() = default;287 explicit IndexedCollectionVector(size_t size) : CollectionVector<T>(size) { } in IndexedCollectionVector() function302 DISALLOW_COPY_AND_ASSIGN(IndexedCollectionVector);438 IndexedCollectionVector<StringId>& StringIds() { return string_ids_; } in StringIds()439 const IndexedCollectionVector<StringId>& StringIds() const { return string_ids_; } in StringIds()440 IndexedCollectionVector<TypeId>& TypeIds() { return type_ids_; } in TypeIds()441 const IndexedCollectionVector<TypeId>& TypeIds() const { return type_ids_; } in TypeIds()442 IndexedCollectionVector<ProtoId>& ProtoIds() { return proto_ids_; } in ProtoIds()443 const IndexedCollectionVector<ProtoId>& ProtoIds() const { return proto_ids_; } in ProtoIds()[all …]
215 Type* CreateAndAddIndexedItem(IndexedCollectionVector<Type>& vector, in CreateAndAddIndexedItem()