Searched refs:leapdays (Results 1 – 6 of 6) sorted by relevance
/third_party/python/Lib/test/ |
D | test_calendar.py | 795 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/ |
D | localtime.c | 1461 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/ |
D | localtime.c | 1463 register int leapdays; in timesub() local 1475 leapdays = leaps_thru_end_of(newy - 1) - in timesub() 1478 tdays -= leapdays; in timesub()
|
/third_party/tzdata/ |
D | localtime.c | 1795 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/ |
D | calendar.py | 105 def leapdays(y1, y2): function
|
/third_party/python/Doc/library/ |
D | calendar.rst | 323 .. function:: leapdays(y1, y2)
|