Home | History | Annotate | Download | only in i18n

Lines Matching refs:argTypeCount

224   argTypeCount(0),
245 argTypeCount(0),
267 argTypeCount(0),
288 argTypeCount(0),
485 argTypeCount = 0;
798 t->formatAliasesCapacity = (argTypeCount<10) ? 10 : argTypeCount;
806 } else if (argTypeCount > formatAliasesCapacity) {
808 uprv_realloc(formatAliases, sizeof(Format*) * argTypeCount);
814 t->formatAliasesCapacity = argTypeCount;
1184 argTypeCount = that.argTypeCount;
1185 if (argTypeCount > 0) {
1186 if (!allocateArgTypes(argTypeCount, ec)) {
1189 uprv_memcpy(argTypes, that.argTypes, argTypeCount * sizeof(argTypes[0]));
1252 LocalArray<Formattable> resultArray(new Formattable[argTypeCount ? argTypeCount : 1]);
1464 argTypeCount = 0;
1467 // We determine the argTypeCount first so that we can allocateArgTypes
1474 if (argNumber >= argTypeCount) {
1475 argTypeCount = argNumber + 1;
1479 if (!allocateArgTypes(argTypeCount, status)) {
1484 for (int32_t i = 0; i < argTypeCount; ++i) {
1711 return argTypeCount;