Home
last modified time | relevance | path

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

/external/icu/icu4c/source/test/intltest/
Dcolldata.cpp43 : ces(NULL), listMax(CELIST_BUFFER_SIZE), listSize(0) in CEList()
113 if (listSize >= listMax) { in add()
114 int32_t newMax = listMax + CELIST_BUFFER_SIZE; in add()
129 listMax = newMax; in add()
170 : strings(NULL), listMax(STRING_LIST_BUFFER_SIZE), listSize(0) in StringList()
176 strings = new UnicodeString [listMax]; in StringList()
194 if (listSize >= listMax) { in add()
195 int32_t newMax = listMax + STRING_LIST_BUFFER_SIZE; in add()
206 listMax = newMax; in add()
Dcolldata.h118 int32_t listMax; variable
182 int32_t listMax; variable
Dssearch.cpp360 int32_t listMax; member in OrderList
365 : list(NULL), listMax(16), listSize(0) in OrderList()
367 list = new Order[listMax]; in OrderList()
371 : list(NULL), listMax(16), listSize(0) in OrderList()
390 list = new Order[listMax]; in OrderList()
418 if (listSize >= listMax) { in add()
419 listMax *= 2; in add()
421 Order *newList = new Order[listMax]; in add()