Home | History | Annotate | Download | only in i18n

Lines Matching refs:hour

1131     int32_t sign, hour, min, sec;
1132 if (parseCustomID(id, sign, hour, min, sec)) {
1134 formatCustomID(hour, min, sec, (sign < 0), customID);
1135 int32_t offset = sign * ((hour * 60 + min) * 60 + sec) * 1000;
1147 int32_t sign, hour, min, sec;
1148 if (parseCustomID(id, sign, hour, min, sec)) {
1149 formatCustomID(hour, min, sec, (sign < 0), normalized);
1156 int32_t& hour, int32_t& min, int32_t& sec) {
1168 hour = 0;
1194 hour = n.getLong();
1249 // already set to hour
1253 min = hour % 100;
1254 hour /= 100;
1258 sec = hour % 100;
1259 min = (hour/100) % 100;
1260 hour /= 10000;
1267 if (hour > kMAX_CUSTOM_HOUR || min > kMAX_CUSTOM_MIN || sec > kMAX_CUSTOM_SEC) {
1276 TimeZone::formatCustomID(int32_t hour, int32_t min, int32_t sec,
1280 if (hour | min | sec) {
1287 if (hour < 10) {
1290 id += (UChar)(ZERO_DIGIT + hour/10);
1292 id += (UChar)(ZERO_DIGIT + hour%10);