Searched refs:week (Results 1 - 25 of 39) sorted by relevance

12

/macosx-10.10/ksh-23/ksh/src/lib/libast/tm/
H A Dtmweek.c44 * type is week type
45 * 0 sunday first day of week
46 * 1 monday first day of week
47 * 2 monday first day of iso week
48 * if week<0 then return week for tm
49 * if day<0 then set tm to first day of week
50 * otherwise set tm to day in week
55 tmweek(Tm_t* tm, int type, int week, int day) argument
59 if (week <
[all...]
H A Dtmxscan.c43 int week; member in struct:__anon9376
55 #define CLEAR(s) (s.year=s.mon=s.week=s.weektype=s.yday=s.mday=s.wday=s.hour=s.min=s.sec=s.meridian=(-1),s.nsec=1000000000L,s.zone=TM_LOCALZONE)
90 if (set->week >= 0)
94 tmweek(tm, set->weektype, set->week, set->wday);
339 set.week = n;
344 set.week = n;
353 set.week = n;
/macosx-10.10/misc_cmds-33/ncal/
H A Dcalendar.h41 int week(int _nd, int *_year);
H A Dcalendar.c228 * Compute the week number from the number of days since March 1st year 0.
230 * week of a year includes at least four days of that year it is week 1,
231 * otherwise it gets the number of the last week of the previous year.
233 * part of the week.
236 week(int nd, int *y) function
239 int fw; /* 1st day of week 1 of previous, this and
247 /* return the first day of week 1 of year y */
260 * If more than 3 days of this week are in the preceding year, the
261 * next week i
[all...]
/macosx-10.10/WebCore-7600.1.25/html/
H A DInputTypeNames.h53 const AtomicString& week();
H A DWeekInputType.cpp49 return InputTypeNames::week();
H A DInputTypeNames.cpp164 const AtomicString& week() function in namespace:WebCore::InputTypeNames
166 DEPRECATED_DEFINE_STATIC_LOCAL(AtomicString, name, ("week", AtomicString::ConstructFromLiteral));
/macosx-10.10/emacs-93/emacs/lisp/calendar/
H A Dcal-iso.el46 weeks start on Monday and end on Sunday. The first week of the ISO year is
47 the first such week in which at least 4 days are in a year. The ISO
48 commercial DATE has the form (week day year) in which week is in the range
51 (let* ((week (extract-calendar-month date))
56 (* 7 (1- week))
62 start on Monday and end on Sunday. The first week of the ISO year is the
63 first such week in which at least 4 days are in a year. The ISO commercial
64 date has the form (week day year) in which week i
[all...]
/macosx-10.10/tcl-105/tcl84/tcl/compat/
H A Dstrftime.c323 int week = ISO8601Week( t, NULL ); local
324 if (!_conv(week, 2, '0'))
474 * the week in question. */
477 int week; local
486 /* This is the last week of the previous year. */
492 week = ydayThursday / 7 + 1;
503 /* This is week 1 of the following year */
505 week = 1;
512 week = ydayThursday / 7 + 1;
519 return week;
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/sample/tkextlib/blt/
H A Dcalendar.rb79 week = 0
91 [week+3, wkday], :fill=>:both, :ipadx=>10, :ipady=>4)
95 week += 1
107 Tk::BLT::Table.add(cal, f, [week+4, 5], :cspan=>2, :pady=>4)
/macosx-10.10/CPANInternal-159.1/DateTime-Format-ISO8601-0.07/lib/DateTime/Format/
H A DISO8601.pm322 params => [ qw( year week day_of_year ) ],
331 params => [ qw( year week ) ],
340 params => [ qw( year week day_of_year ) ],
349 params => [ qw( year week ) ],
358 params => [ qw( year week day_of_year ) ],
367 params => [ qw( year week ) ],
376 params => [ qw( week day_of_year ) ],
384 params => [ qw( week ) ],
405 params => [ qw( year week day_of_year ) ],
414 params => [ qw( year week ) ],
[all...]
/macosx-10.10/CPANInternal-159.1/Log-Log4perl-1.40/lib/Log/Log4perl/
H A DDateFormat.pm223 #E - day of week #
264 #(F=day of week in month
265 # w=week in year W=week in month
361 E day in week (Text) Tuesday
363 F day of week in month (Number) 2 (2nd Wed in July)
364 w week in year (Number) 27
365 W week in month (Number) 2
418 F day of week in month
419 w week i
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/
H A DDateComponents.cpp42 // HTML5 specification defines minimum week of year is one.
45 // HTML5 specification defines maximum week of year is 53.
50 static const int maximumWeekInMaximumYear = 37; // The week of 275760-09-13
394 int week; local
395 if (!toInt(src, length, index, 2, week) || week < minimumWeekNumber || week > maxWeekNumberInYear())
397 if (m_year == maximumYear() && week > maximumWeekInMaximumYear)
399 m_week = week;
605 // Offset from January 1st to Monday of the ISO 8601's first week
[all...]
H A DDateComponents.h43 // * Week type: year-week
78 int week() const { return m_week; } function in class:WebCore::DateComponents
108 // Sets year and week.
160 static inline double maximumWeek() { return 8639999568000000.0; } // 275760-09-08, the Monday of the week including 275760-09-13.
172 // Returns the maximum week number in this DateComponents's year.
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/modules/widget/
H A Dcalendar.tcl374 foreach tag {title otherday day highlight week} {
437 set week [$self getweek $d $data(month) $data(year)]
438 $hull create text [expr {$x0}] $y -text $week -tag week \
445 set week [$self getweek $dmax $data(month) $data(year)]
446 $hull create text [expr {$x0}] $y -text $week -tag week \
460 -tag week -font $options(-font) -fill black
/macosx-10.10/ruby-106/ruby/test/rdoc/
H A Dtest_rdoc_comment.rb121 Otherwise, returns a +Date+ for the commercial week year, commercial week,
122 and commercial week day given. Ignores the 4th argument.
/macosx-10.10/CPANInternal-159.1/DateTime-Format-Strptime-1.52/lib/DateTime/Format/
H A DStrptime.pm677 "Your day of the week ($dow_mon_1) does not match the date supplied: "
684 "Your day of the week ($dow_sun_0) does not match the date supplied: "
717 "Your day of the week ($dow_name) does not match the date supplied: "
725 "Your week number ($week_sun_0) does not match the date supplied: "
731 "Your week number ($week_mon_1) does not match the date supplied: "
737 "Your ISO week year ($iso_week_year) does not match the date supplied: "
743 "Your ISO week year ($iso_week_year_100) does not match the date supplied: "
872 # %a is the day of the week, using the locale's weekday names; either the abbreviated or full name may be specified.
914 # The year corresponding to the ISO week number, but without the century (0-99).
919 # The year corresponding to the ISO week numbe
[all...]
/macosx-10.10/CPANInternal-159.1/DateTime-Format-Strptime-1.54/lib/DateTime/Format/
H A DStrptime.pm677 "Your day of the week ($dow_mon_1) does not match the date supplied: "
684 "Your day of the week ($dow_sun_0) does not match the date supplied: "
717 "Your day of the week ($dow_name) does not match the date supplied: "
725 "Your week number ($week_sun_0) does not match the date supplied: "
731 "Your week number ($week_mon_1) does not match the date supplied: "
737 "Your ISO week year ($iso_week_year) does not match the date supplied: "
743 "Your ISO week year ($iso_week_year_100) does not match the date supplied: "
872 # %a is the day of the week, using the locale's weekday names; either the abbreviated or full name may be specified.
914 # The year corresponding to the ISO week number, but without the century (0-99).
919 # The year corresponding to the ISO week numbe
[all...]
/macosx-10.10/emacs-93/emacs/lisp/gnus/
H A Dgnus-diary.el71 an integer and UNIT is one of 'year 'month 'week 'day 'hour or 'minute.
115 ((eq (cdr del) 'week)
183 (week . ,(* 7 24 3600))
/macosx-10.10/vim-55/runtime/syntax/
H A Dfdcc.vim33 syn keyword fdccKeywordTime copy abday day abmon mon d_t_fmt d_fmt t_fmt am_pm t_fmt_ampm date_fmt era_d_fmt first_weekday first_workday week cal_direction time_zone era alt_digits era_d_t_fmt
H A Dopl.vim61 syn keyword OPLStatement use usr usr$ usub val var vector week while year
H A Dsqr.vim118 syn keyword sqrParam day-of-week-case day-of-week-full
119 syn keyword sqrParam day-of-week-short decimal decimal-seperator
/macosx-10.10/WebCore-7600.1.25/platform/text/
H A DPlatformLocale.cpp128 appendNumber(m_date.week(), 2);
/macosx-10.10/ICU-531.30/icuSources/tools/tzcode/
H A Dzic.c1977 register int week; local
1980 week = 1 + rp->r_dayofmonth / DAYSPERWEEK;
1981 if ((week - 1) * DAYSPERWEEK + 1 != rp->r_dayofmonth)
1985 week = 5;
1987 week = 1 + rp->r_dayofmonth / DAYSPERWEEK;
1988 if (week * DAYSPERWEEK - 1 != rp->r_dayofmonth)
1993 rp->r_month + 1, week, rp->r_wday);
/macosx-10.10/tcl-105/tcl/tcl/tools/
H A DmakeTestCases.tcl72 # on each day of the week -- in the XIXth, XXth and XXIth centuries.
375 # a 52-week year.
376 # 1 January is ISO week 52 of the prior year. 2 January
377 # begins ISO week 1 of the current year.
378 # 1 January is week 1 according to %U. According to %W,
379 # week 1 begins on 2 January
391 # a 52-week year.
392 # 1 January is ISO week 1 of the current year
393 # According to %U, it's week 0 until 7 January
394 # 1 January is week
[all...]

Completed in 237 milliseconds

12