Home
last modified time | relevance | path

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

/external/icu/icu4c/source/test/intltest/
Dcolldata.cpp42 : ces(NULL), listMax(CELIST_BUFFER_SIZE), listSize(0) in CEList()
112 if (listSize >= listMax) { in add()
113 int32_t newMax = listMax + CELIST_BUFFER_SIZE; in add()
128 listMax = newMax; in add()
169 : strings(NULL), listMax(STRING_LIST_BUFFER_SIZE), listSize(0) in StringList()
175 strings = new UnicodeString [listMax]; in StringList()
193 if (listSize >= listMax) { in add()
194 int32_t newMax = listMax + STRING_LIST_BUFFER_SIZE; in add()
205 listMax = newMax; in add()
Dcolldata.h118 int32_t listMax; variable
182 int32_t listMax; variable
Dssearch.cpp350 int32_t listMax; member in OrderList
355 : list(NULL), listMax(16), listSize(0) in OrderList()
357 list = new Order[listMax]; in OrderList()
361 : list(NULL), listMax(16), listSize(0) in OrderList()
380 list = new Order[listMax]; in OrderList()
408 if (listSize >= listMax) { in add()
409 listMax *= 2; in add()
411 Order *newList = new Order[listMax]; in add()