Home
last modified time | relevance | path

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

/external/icu4c/i18n/
Dcolldata.cpp51 : ces(NULL), listMax(CELIST_BUFFER_SIZE), listSize(0) in CEList()
132 if (listSize >= listMax) { in add()
133 int32_t newMax = listMax + CELIST_BUFFER_SIZE; in add()
153 listMax = newMax; in add()
202 : strings(NULL), listMax(STRING_LIST_BUFFER_SIZE), listSize(0) in StringList()
208 strings = new UnicodeString [listMax]; in StringList()
236 if (listSize >= listMax) { in add()
237 int32_t newMax = listMax + STRING_LIST_BUFFER_SIZE; in add()
259 listMax = newMax; in add()
/external/icu4c/i18n/unicode/
Dcolldata.h151 int32_t listMax; variable
245 int32_t listMax; variable
/external/icu4c/test/intltest/
Dssearch.cpp700 int32_t listMax; member in OrderList
705 : list(NULL), listMax(16), listSize(0) in OrderList()
707 list = new Order[listMax]; in OrderList()
711 : list(NULL), listMax(16), listSize(0) in OrderList()
732 list = new Order[listMax]; in OrderList()
760 if (listSize >= listMax) { in add()
761 listMax *= 2; in add()
763 Order *newList = new Order[listMax]; in add()
1107 int32_t listMax; member in PCEList
1118 list = new PCE[listMax]; in PCEList()
[all …]