Home
last modified time | relevance | path

Searched refs:leapdays (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Lib/test/
Dtest_calendar.py795 self.assertEqual(calendar.leapdays(2010,2010), 0)
799 self.assertEqual(calendar.leapdays(2010,2011), 0)
803 self.assertEqual(calendar.leapdays(2010,2012), 0)
807 self.assertEqual(calendar.leapdays(2012,2013), 1)
810 self.assertEqual(calendar.leapdays(1997,2020), 5)
/third_party/skia/third_party/externals/icu/source/tools/tzcode/
Dlocaltime.c1461 register int leapdays; in timesub() local
1473 leapdays = leaps_thru_end_of(newy - 1) - in timesub()
1476 tdays -= leapdays; in timesub()
/third_party/icu/icu4c/source/tools/tzcode/
Dlocaltime.c1463 register int leapdays; in timesub() local
1475 leapdays = leaps_thru_end_of(newy - 1) - in timesub()
1478 tdays -= leapdays; in timesub()
/third_party/tzdata/
Dlocaltime.c1795 register int leapdays; in timesub() local
1796 leapdays = leaps_thru_end_of(newy - 1) - in timesub()
1799 idays -= leapdays; in timesub()
/third_party/python/Lib/
Dcalendar.py105 def leapdays(y1, y2): function
/third_party/python/Doc/library/
Dcalendar.rst323 .. function:: leapdays(y1, y2)