OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:listMax
(Results
1 - 3
of
3
) sorted by null
/external/icu/icu4c/source/test/intltest/
colldata.h
118
int32_t
listMax
;
182
int32_t
listMax
;
colldata.cpp
42
: ces(NULL),
listMax
(CELIST_BUFFER_SIZE), listSize(0)
112
if (listSize >=
listMax
) {
113
int32_t newMax =
listMax
+ CELIST_BUFFER_SIZE;
128
listMax
= newMax;
169
: strings(NULL),
listMax
(STRING_LIST_BUFFER_SIZE), listSize(0)
175
strings = new UnicodeString [
listMax
];
193
if (listSize >=
listMax
) {
194
int32_t newMax =
listMax
+ STRING_LIST_BUFFER_SIZE;
205
listMax
= newMax;
ssearch.cpp
350
int32_t
listMax
;
355
: list(NULL),
listMax
(16), listSize(0)
357
list = new Order[
listMax
];
361
: list(NULL),
listMax
(16), listSize(0)
380
list = new Order[
listMax
];
408
if (listSize >=
listMax
) {
409
listMax
*= 2;
411
Order *newList = new Order[
listMax
];
[
all
...]
Completed in 81 milliseconds