Lines Matching refs:hms
74 const UnicodeString &hms) : in NumericDateFormatters() argument
77 hourMinuteSecond(hms) { in NumericDateFormatters()
302 Formattable *hms, in toHMS() argument
320 hms[0] = measures[i].getNumber(); in toHMS()
321 if (hms[0].getDouble() < 0.0) { in toHMS()
330 hms[1] = measures[i].getNumber(); in toHMS()
331 if (hms[1].getDouble() < 0.0) { in toHMS()
340 hms[2] = measures[i].getNumber(); in toHMS()
341 if (hms[2].getDouble() < 0.0) { in toHMS()
539 Formattable hms[3]; in formatMeasures() local
540 int32_t bitMap = toHMS(measures, measureCount, hms, status); in formatMeasures()
542 return formatNumeric(hms, bitMap, appendTo, status); in formatMeasures()
721 const Formattable *hms, // always length 3 in formatNumeric() argument
731 double hours = hms[0].getDouble(status); in formatNumeric()
732 double minutes = hms[1].getDouble(status); in formatNumeric()
733 double seconds = hms[2].getDouble(status); in formatNumeric()