Home | History | Annotate | Download | only in i18n

Lines Matching defs:sec

1127     int32_t sign, hour, min, sec;
1128 if (parseCustomID(id, sign, hour, min, sec)) {
1130 formatCustomID(hour, min, sec, (sign < 0), customID);
1131 int32_t offset = sign * ((hour * 60 + min) * 60 + sec) * 1000;
1143 int32_t sign, hour, min, sec;
1144 if (parseCustomID(id, sign, hour, min, sec)) {
1145 formatCustomID(hour, min, sec, (sign < 0), normalized);
1152 int32_t& hour, int32_t& min, int32_t& sec) {
1166 sec = 0;
1224 sec = n.getLong();
1254 sec = hour % 100;
1263 if (hour > kMAX_CUSTOM_HOUR || min > kMAX_CUSTOM_MIN || sec > kMAX_CUSTOM_SEC) {
1272 TimeZone::formatCustomID(int32_t hour, int32_t min, int32_t sec,
1276 if (hour | min | sec) {
1297 if (sec) {
1299 if (sec < 10) {
1302 id += (UChar)(ZERO_DIGIT + sec/10);
1304 id += (UChar)(ZERO_DIGIT + sec%10);