Home | History | Annotate | Download | only in i18n

Lines Matching defs:sec

1039     int32_t sec = offset % 60;
1048 if (sec != 0) {
1050 zeroPaddingNumber(currentNumberFormat,appendTo, sec, 2, 2);
1102 int32_t sec = 0;
1124 sec = number.getLong();
1145 sec = numVal % 100;
1157 sec = numVal % 100;
1160 int32_t offset = ((hour*60 + min)*60 + sec)*1000;
2739 int32_t hour = 0, min = 0, sec = 0;
2754 sec = val % 100;
2757 if (hour > 23 || min > 59 || sec > 59) {
2761 offset = (((hour * 60) + min) * 60 + sec) * 1000 * sign;