Searched refs:listMax (Results 1 – 7 of 7) sorted by relevance
/external/icu/icu4c/source/test/intltest/ |
D | colldata.cpp | 41 : 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()
|
D | colldata.h | 116 int32_t listMax; variable 180 int32_t listMax; variable
|
D | ssearch.cpp | 349 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/ |
D | colldata.cpp | 50 : 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/ |
D | colldata.h | 150 int32_t listMax; variable 244 int32_t listMax; variable
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
D | ssearch.cpp | 700 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/ |
D | clang.patch | 19 int32_t newMax = listMax + STRING_LIST_BUFFER_SIZE;
|