HomeSort by relevance Sort by last modified time
    Searched refs:isleap (Results 1 - 16 of 16) sorted by null

  /bionic/libc/tzcode/
tzfile.h 153 #define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) macro
156 ** Since everything in isleap is modulo 400 (or a factor of 400), we know that
157 ** isleap(y) == isleap(y % 400)
159 ** isleap(a + b) == isleap((a + b) % 400)
161 ** isleap(a + b) == isleap(a % 400 + b % 400)
167 #define isleap_sum(a, b) isleap((a) % 400 + (b) % 400)
localtime.c 853 leapyear = isleap(year);
    [all...]
  /external/chromium_org/third_party/icu/source/tools/tzcode/
tzfile.h 164 #define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) macro
167 ** Since everything in isleap is modulo 400 (or a factor of 400), we know that
168 ** isleap(y) == isleap(y % 400)
170 ** isleap(a + b) == isleap((a + b) % 400)
172 ** isleap(a + b) == isleap(a % 400 + b % 400)
178 #define isleap_sum(a, b) isleap((a) % 400 + (b) % 400)
localtime.c 825 leapyear = isleap(year);
1027 newfirst += year_lengths[isleap(year)] *
    [all...]
zdump.c 92 #ifndef isleap
93 #define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) macro
94 #endif /* !defined isleap */
100 #define isleap_sum(a, b) isleap((a) % 400 + (b) % 400)
652 seconds = isleap(myy) ? SECSPERLYEAR : SECSPERNYEAR;
661 seconds = isleap(myy) ? SECSPERLYEAR : SECSPERNYEAR;
zic.c 1287 i = len_years[isleap(j)];
1291 i = -len_years[isleap(j)];
1302 i = len_months[isleap(year)][j];
1308 day <= 0 || day > len_months[isleap(year)][month]) {
    [all...]
  /external/icu/icu4c/source/tools/tzcode/
tzfile.h 164 #define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) macro
167 ** Since everything in isleap is modulo 400 (or a factor of 400), we know that
168 ** isleap(y) == isleap(y % 400)
170 ** isleap(a + b) == isleap((a + b) % 400)
172 ** isleap(a + b) == isleap(a % 400 + b % 400)
178 #define isleap_sum(a, b) isleap((a) % 400 + (b) % 400)
localtime.c 825 leapyear = isleap(year);
1027 newfirst += year_lengths[isleap(year)] *
    [all...]
zdump.c 92 #ifndef isleap
93 #define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) macro
94 #endif /* !defined isleap */
100 #define isleap_sum(a, b) isleap((a) % 400 + (b) % 400)
652 seconds = isleap(myy) ? SECSPERLYEAR : SECSPERNYEAR;
661 seconds = isleap(myy) ? SECSPERLYEAR : SECSPERNYEAR;
zic.c 1287 i = len_years[isleap(j)];
1291 i = -len_years[isleap(j)];
1302 i = len_months[isleap(year)][j];
1308 day <= 0 || day > len_months[isleap(year)][month]) {
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_calendar.py 211 self.assertEqual(calendar.isleap(2000), 1)
212 self.assertEqual(calendar.isleap(2001), 0)
213 self.assertEqual(calendar.isleap(2002), 0)
214 self.assertEqual(calendar.isleap(2003), 0)
test_datetime.py 596 for year, isleap in (2000, True), (2002, False):
599 if month == 2 and isleap:
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_calendar.py 211 self.assertEqual(calendar.isleap(2000), 1)
212 self.assertEqual(calendar.isleap(2001), 0)
213 self.assertEqual(calendar.isleap(2002), 0)
214 self.assertEqual(calendar.isleap(2003), 0)
test_datetime.py 596 for year, isleap in (2000, True), (2002, False):
599 if month == 2 and isleap:
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
calendar.py 13 "firstweekday", "isleap", "leapdays", "weekday", "monthrange",
97 def isleap(year): function
122 ndays = mdays[month] + (month == February and isleap(year))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
calendar.py 13 "firstweekday", "isleap", "leapdays", "weekday", "monthrange",
97 def isleap(year): function
122 ndays = mdays[month] + (month == February and isleap(year))

Completed in 427 milliseconds