Home | History | Annotate | Download | only in containers

Lines Matching full:items

25 // POD-struct compatible items only. This allows the implementation to
26 // use ::memmove() to move items, and also malloc_usable_size() to
33 // Note that a PodVector can be used to store items that contain pointers,
34 // as long as these do not point to items in the same container.
106 // A PodVector<T> holds a vector (dynamically resizable array) or items
113 // cost when appending, inserting, removing items in the collection.
121 // Copy constructor. This copies all items from |other| into
132 // holds all the items, but doesn't touch them otherwise.
136 // have any items.
139 // Return the number of items in the current PodVector<T> instance.
153 // items. This may or may not call reserve() under the hood.
160 // least |newSize| items. It's a fatal error to try to resize above
206 // Increase the vector's size by 1, then move all items past a given
223 // Prepend an item at the start of a vector. This moves all vector items