Home | History | Annotate | Download | only in i18n

Lines Matching full:hour

1044     int32_t hour = offset / 60;
1047 zeroPaddingNumber(currentNumberFormat,appendTo, hour, 2, 2);
1102 int32_t hour = 0;
1108 hour = numVal;
1141 hour = numVal / 100;
1145 hour = numVal / 10000;
1157 hour = numVal / 10000;
1162 int32_t offset = ((hour*60 + min)*60 + sec)*1000;
1178 // Hour patterns
1180 // No Hour pattern is set
1534 // for "k" and "kk", write out the hour, adjusting midnight to appear as "24"
1620 // for "h" and "hh", write out the hour, adjusting noon and midnight to show up
2698 int32_t hour = 0, min = 0, sec = 0;
2702 hour = val;
2706 hour = val / 100;
2711 hour = val / 10000;
2716 if (hour > 23 || min > 59 || sec > 59) {
2720 offset = (((hour * 60) + min) * 60 + sec) * 1000 * sign;