Lines Matching defs:size
84 * equal if they are of the same size and all elements are equal,
124 int32_t size(void) const;
128 // Inline. Use this one for speedy size check.
135 * Change the size of this vector as follows: If newSize is
206 int32_t *reserveBlock(int32_t size, UErrorCode &status);
207 int32_t *popFrame(int32_t size);
233 inline int32_t *UVector32::reserveBlock(int32_t size, UErrorCode &status) {
234 if (ensureCapacity(count+size, status) == FALSE) {
238 count += size;
242 inline int32_t *UVector32::popFrame(int32_t size) {
243 U_ASSERT(count >= size);
244 count -= size;
248 return elements+count-size;
253 inline int32_t UVector32::size(void) const {