Home | History | Annotate | Download | only in i18n

Lines Matching defs:requiredLength

329     UChar** nextArray(int32_t& requiredLength);
399 int32_t requiredLength = -1;
402 UChar** elem = nextArray(requiredLength);
435 return new StringLocalizationInfo(data, result, requiredLength-2, numLocs); // subtract first, NULL
443 LocDataParser::nextArray(int32_t& requiredLength) {
481 if (requiredLength == -1) {
482 requiredLength = array.length() + 1;
483 } else if (array.length() != requiredLength) {