Searched refs:IsLeapYear (Results 1 - 12 of 12) sorted by relevance

/macosx-10.10/webdavfs-367/mount.tproj/
H A Dwebdav_utils.h55 Boolean IsLeapYear(SInt32 year);
H A Dwebdav_utils.c432 Boolean IsLeapYear(SInt32 year) { function
453 leap = IsLeapYear(date.year - 2001);
/macosx-10.10/tcl-105/tcl84/tcl/compat/
H A Dstrftime.c60 #define IsLeapYear(x) ((x % 4 == 0) && (x % 100 != 0 || x % 400 == 0)) macro
131 (365 + IsLeapYear((t->tm_year + TM_YEAR_BASE)))),
487 if ( IsLeapYear(( t->tm_year + TM_YEAR_BASE - 1 )) ) {
497 } else if ( ( IsLeapYear(( t -> tm_year + TM_YEAR_BASE ))
499 || ( !IsLeapYear(( t -> tm_year
/macosx-10.10/tcl-105/tcl84/tcl/unix/
H A DtclUnixTime.c19 #define IsLeapYear(x) ((x % 4 == 0) && (x % 100 != 0 || x % 400 == 0)) macro
324 (365 + IsLeapYear((t->tm_year + TM_YEAR_BASE)))),
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/calendar/
H A Dgregorian.tcl214 namespace export IsLeapYear
243 # ::calendar::GregorianCalendar::IsLeapYear
262 proc ::calendar::GregorianCalendar::IsLeapYear { y } {
312 + ( [IsLeapYear $y] ?
637 if { [IsLeapYear $year] } {
/macosx-10.10/apr-32/apr/apr/time/win32/
H A Dtime.c35 #define IsLeapYear(y) ((!(y % 4)) ? (((y % 400) && !(y % 100)) ? 0 : 1) : 0) macro
75 if (IsLeapYear(tm->wYear) && (xt->tm_yday > 58))
/macosx-10.10/tcl-105/tcl84/tcl/generic/
H A DtclGetDate.y57 #define IsLeapYear(x) ((x % 4 == 0) && (x % 100 != 0 || x % 400 == 0))
355 yyRelDay += (($2%1000)*(365 + IsLeapYear(yyYear)))/1000;
683 DaysInMonth[1] = IsLeapYear(Year) ? 29 : 28;
698 Julian += 365 + IsLeapYear(i);
701 Julian -= 365 + IsLeapYear(i);
H A DtclDate.c40 #define IsLeapYear(x) ((x % 4 == 0) && (x % 100 != 0 || x % 400 == 0)) macro
464 DaysInMonth[1] = IsLeapYear(Year) ? 29 : 28;
479 Julian += 365 + IsLeapYear(i);
482 Julian -= 365 + IsLeapYear(i);
1832 TclDateRelDay += ((TclDatepvt[-2].Number%1000)*(365 + IsLeapYear(TclDateYear)))/1000;
/macosx-10.10/tcl-105/tcl/tcl/unix/
H A DtclUnixTime.c22 #define IsLeapYear(x) (((x)%4 == 0) && ((x)%100 != 0 || (x)%400 == 0)) macro
/macosx-10.10/tcl-105/tcl/tcl/generic/
H A DtclGetDate.y135 #define IsLeapYear(x) ((x % 4 == 0) && (x % 100 != 0 || x % 400 == 0))
429 yyRelDay += (($2%1000)*(365 + IsLeapYear(yyYear)))/1000;
H A DtclDate.c230 #define IsLeapYear(x) ((x % 4 == 0) && (x % 100 != 0 || x % 400 == 0)) macro
1954 yyRelDay += (((yyvsp[(2) - (4)].Number)%1000)*(365 + IsLeapYear(yyYear)))/1000;
/macosx-10.10/vim-55/runtime/syntax/
H A Dcf.vim234 syn keyword cfFunctionName contained IsLeapYear IsLocalHost IsNumeric

Completed in 149 milliseconds