Searched refs:listMax (Results 1 - 3 of 3) sorted by relevance

/macosx-10.10/ICU-531.30/icuSources/test/intltest/
H A Dcolldata.h116 int32_t listMax; member in class:CEList
180 int32_t listMax; member in class:StringList
H A Dcolldata.cpp41 : ces(NULL), listMax(CELIST_BUFFER_SIZE), listSize(0)
113 if (listSize >= listMax) {
114 int32_t newMax = listMax + CELIST_BUFFER_SIZE;
129 listMax = newMax;
170 : strings(NULL), listMax(STRING_LIST_BUFFER_SIZE), listSize(0)
176 strings = new UnicodeString [listMax];
194 if (listSize >= listMax) {
195 int32_t newMax = listMax + STRING_LIST_BUFFER_SIZE;
206 listMax = newMax;
H A Dssearch.cpp349 int32_t listMax; member in class:OrderList
354 : list(NULL), listMax(16), listSize(0)
356 list = new Order[listMax];
360 : list(NULL), listMax(16), listSize(0)
381 list = new Order[listMax];
409 if (listSize >= listMax) {
410 listMax *= 2;
412 Order *newList = new Order[listMax];

Completed in 114 milliseconds