Home | History | Annotate | Download | only in i18n

Lines Matching refs:hms

68             const UnicodeString &hms,
72 hourMinuteSecond(hms, status) {
482 loadNumericDateFormatterPattern(resource, "hms", status),
547 // Converts a composite measure into hours-minutes-seconds and stores at hms
557 Formattable *hms,
575 hms[0] = measures[i].getNumber();
576 if (hms[0].getDouble() < 0.0) {
585 hms[1] = measures[i].getNumber();
586 if (hms[1].getDouble() < 0.0) {
595 hms[2] = measures[i].getNumber();
596 if (hms[2].getDouble() < 0.0) {
800 Formattable hms[3];
801 int32_t bitMap = toHMS(measures, measureCount, hms, status);
803 return formatNumeric(hms, bitMap, appendTo, status);
965 const Formattable *hms, // always length 3
973 (UDate) (((uprv_trunc(hms[0].getDouble(status)) * 60.0
974 + uprv_trunc(hms[1].getDouble(status))) * 60.0
975 + uprv_trunc(hms[2].getDouble(status))) * 1000.0);
978 case 7: // hms
983 hms[2],
992 hms[2],
1001 hms[1],