Home | History | Annotate | Download | only in i18n

Lines Matching defs:sec

1041     int32_t sec = offset % 60;
1050 if (sec != 0) {
1052 zeroPaddingNumber(currentNumberFormat,appendTo, sec, 2, 2);
1104 int32_t sec = 0;
1126 sec = number.getLong();
1147 sec = numVal % 100;
1159 sec = numVal % 100;
1162 int32_t offset = ((hour*60 + min)*60 + sec)*1000;
2698 int32_t hour = 0, min = 0, sec = 0;
2713 sec = val % 100;
2716 if (hour > 23 || min > 59 || sec > 59) {
2720 offset = (((hour * 60) + min) * 60 + sec) * 1000 * sign;