Home
last modified time | relevance | path

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

/external/icu/icu4c/source/test/intltest/
Dcolldata.cpp41 : 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.h116 int32_t listMax; variable
180 int32_t listMax; variable
Dssearch.cpp349 int32_t listMax; member in OrderList
354 : list(NULL), listMax(16), listSize(0) in OrderList()
356 list = new Order[listMax]; in OrderList()
360 : list(NULL), listMax(16), listSize(0) in OrderList()
381 list = new Order[listMax]; in OrderList()
409 if (listSize >= listMax) { in add()
410 listMax *= 2; in add()
412 Order *newList = new Order[listMax]; in add()
/external/chromium_org/third_party/icu/source/i18n/
Dcolldata.cpp50 : ces(NULL), listMax(CELIST_BUFFER_SIZE), listSize(0) in CEList()
131 if (listSize >= listMax) { in add()
132 int32_t newMax = listMax + CELIST_BUFFER_SIZE; in add()
152 listMax = newMax; in add()
201 : strings(NULL), listMax(STRING_LIST_BUFFER_SIZE), listSize(0) in StringList()
207 strings = new UnicodeString [listMax]; in StringList()
235 if (listSize >= listMax) { in add()
236 int32_t newMax = listMax + STRING_LIST_BUFFER_SIZE; in add()
259 listMax = newMax; in add()
/external/chromium_org/third_party/icu/source/i18n/unicode/
Dcolldata.h150 int32_t listMax; variable
244 int32_t listMax; variable
/external/chromium_org/third_party/icu/source/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()
1108 int32_t listMax; member in PCEList
1119 list = new PCE[listMax]; in PCEList()
[all …]
/external/chromium_org/third_party/icu/patches/
Dclang.patch19 int32_t newMax = listMax + STRING_LIST_BUFFER_SIZE;