Home | History | Annotate | Download | only in common

Lines Matching defs:size

83      * equal if they are of the same size and all elements are equal,
123 int32_t size(void) const;
127 // Inline. Use this one for speedy size check.
134 * Change the size of this vector as follows: If newSize is
195 int64_t *reserveBlock(int32_t size, UErrorCode &status);
196 int64_t *popFrame(int32_t size);
222 inline int64_t *UVector64::reserveBlock(int32_t size, UErrorCode &status) {
223 if (ensureCapacity(count+size, status) == FALSE) {
227 count += size;
231 inline int64_t *UVector64::popFrame(int32_t size) {
232 U_ASSERT(count >= size);
233 count -= size;
237 return elements+count-size;
242 inline int32_t UVector64::size(void) const {