Searched defs:cCapacity (Results 1 - 1 of 1) sorted by relevance

/vbox/include/iprt/cpp/
H A Dlist.h208 * This preallocates @a cCapacity elements within the list.
213 RTCListBase(size_t cCapacity = kDefaultCapacity)
218 if (cCapacity > 0)
219 growArray(cCapacity);
268 * @param cCapacity The new capacity within the list.
271 void setCapacity(size_t cCapacity) argument
274 resizeArray(cCapacity);
923 * This preallocates @a cCapacity elements within the list.
928 RTCList(size_t cCapacity = BASE::kDefaultCapacity)
929 : BASE(cCapacity) {}
[all...]

Completed in 45 milliseconds