Home | History | Annotate | Download | only in html

Lines Matching refs:minute

169 static bool withinHTMLDateLimits(int year, int month, int monthDay, int hour, int minute, int second, int millisecond)
182 return !hour && !minute && !second && !millisecond;
238 bool DateComponents::addMinute(int minute)
245 // minute can be negative or greater than 59.
246 minute += m_minute;
247 if (minute > 59) {
248 carry = minute / 60;
249 minute = minute % 60;
252 minute += carry * 60;
254 ASSERT(minute >= 0 && minute <= 59);
256 if (!withinHTMLDateLimits(m_year, m_month, m_monthDay, m_hour, minute, m_second, m_millisecond))
258 m_minute = minute;
272 if (!withinHTMLDateLimits(m_year, m_month, m_monthDay, hour, minute, m_second, m_millisecond))
274 m_minute = minute;
280 if (!withinHTMLDateLimits(m_year, m_month, m_monthDay, hour, minute, m_second, m_millisecond))
282 m_minute = minute;
287 // Parses a timezone part, and adjust year, month, monthDay, hour, minute, second, millisecond.
308 int minute;
317 if (!toInt(src, length, index, 2, minute) || minute < 0 || minute > 59)
323 minute = -minute;
327 if (!addMinute(-(hour * 60 + minute)))
420 int minute;
421 if (!toInt(src, length, index, 2, minute) || minute < 0 || minute > 59)
454 m_minute = minute;