Lines Matching full:len
29 _createTimeZone(const UChar* zoneID, int32_t len, UErrorCode* ec) {
35 int32_t l = (len<0 ? u_strlen(zoneID) : len);
37 zoneStrID.setTo((UBool)(len < 0), zoneID, l); /* temporary read-only alias */
58 int32_t len = 0;
67 len = id.extract(result, resultCapacity, *ec);
70 return len;
121 int32_t len,
130 : _createTimeZone(zoneID, len, status);
174 int32_t len,
182 : _createTimeZone(zoneID, len, status);
502 ucal_getCanonicalTimeZoneID(const UChar* id, int32_t len,
510 if (id == 0 || len == 0 || result == 0 || resultCapacity <= 0) {
517 TimeZone::getCanonicalID(UnicodeString(id, len), canonical, systemID, *status);
592 int32_t len;
593 const UChar *type = ures_getStringByIndex(order, i, &len, status);
594 char *caltype = (char*)uprv_malloc(len + 1);
599 u_UCharsToChars(type, caltype, len);
600 *(caltype + len) = 0;