Searched +refs:calendar +refs:other +refs:month (Results 1 - 13 of 13) sorted by relevance

/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dpersncal.cpp85 PersianCalendar::PersianCalendar(const PersianCalendar& other) : Calendar(other) { argument
106 * Determine whether a year is a leap year in the Persian calendar
124 * Return the day # on which the given month starts. Days are counted
128 * @param year The Persian month, 0-based
130 int32_t PersianCalendar::monthStart(int32_t year, int32_t month) const {
131 return handleComputeMonthStart(year,month,TRUE);
139 * Return the length (in days) of the given month.
142 * @param year The Persian month, 0-based
144 int32_t PersianCalendar::handleGetMonthLength(int32_t extendedYear, int32_t month) cons
166 handleComputeMonthStart(int32_t eyear, int32_t month, UBool ) const argument
211 int32_t year, month, dayOfMonth, dayOfYear; local
[all...]
H A Dcoptccal.cpp32 CopticCalendar::CopticCalendar (const CopticCalendar& other) argument
33 : CECalendar(other)
78 int32_t eyear, month, day, era, year; local
79 jdToCE(julianDay, getJDEpochOffset(), eyear, month, day);
92 internalSet(UCAL_MONTH, month);
94 internalSet(UCAL_DAY_OF_YEAR, (30 * month) + day);
136 CopticCalendar calendar(Locale("@calendar=coptic"), status);
138 calendar.setTime(Calendar::getNow(), status);
139 calendar
[all...]
H A Dhebrwcal.cpp31 * of the start of the Hebrew calendar. In order to keep this calendar's
32 * time of day in sync with that of the Gregorian calendar, we use
90 * The cumulative # of days to the end of each month in a non-leap year
114 * The cumulative # of days to the end of each month in a leap year
173 HebrewCalendar::HebrewCalendar(const HebrewCalendar& other) : Calendar(other) { argument
185 * Add a signed amount to a specified field, using this calendar's rules.
189 * When adding to certain fields, the values of other fields may conflict and
223 // bump the other wa
224 int32_t month = get(UCAL_MONTH, status); local
316 int32_t month = get(UCAL_MONTH, status); local
575 int32_t month = 0; local
625 handleComputeMonthStart(int32_t eyear, int32_t month, UBool ) const argument
[all...]
H A Dindiancal.cpp47 IndianCalendar::IndianCalendar(const IndianCalendar& other) : Calendar(other) { argument
106 * Return the length (in days) of the given month.
109 * @param month The month(0-based) in Indian calendar
111 int32_t IndianCalendar::handleGetMonthLength(int32_t eyear, int32_t month) const {
112 if (month < 0 || month > 11) {
113 eyear += ClockMath::floorDivide(month, 1
142 gregorianToJD(int32_t year, int32_t month, int32_t date) argument
163 int32_t year, month, day; local
196 IndianToJD(int32_t year, int32_t month, int32_t date) argument
240 handleComputeMonthStart(int32_t eyear, int32_t month, UBool ) const argument
[all...]
H A Dethpccal.cpp37 EthiopicCalendar::EthiopicCalendar(const EthiopicCalendar& other) argument
38 : CECalendar(other),
39 eraType(other.eraType)
81 // Ethiopic calendar uses EXTENDED_YEAR aligned to
104 int32_t eyear, month, day, era, year; local
105 jdToCE(julianDay, getJDEpochOffset(), eyear, month, day);
123 internalSet(UCAL_MONTH, month);
125 internalSet(UCAL_DAY_OF_YEAR, (30 * month) + day);
173 EthiopicCalendar calendar(Locale("@calendar
[all...]
H A Dislamcal.cpp99 IslamicCalendar::IslamicCalendar(const IslamicCalendar& other) : Calendar(other), civil(other.civil) { argument
107 * Determines whether this object uses the fixed-cycle Islamic civil calendar
108 * or an approximation of the religious, astronomical calendar.
110 * @param beCivil <code>true</code> to use the civil calendar,
111 * <code>false</code> to use the astronomical calendar.
117 // The fields of the calendar will become invalid, because the calendar
128 * calendar, o
346 int32_t month = 12*(extendedYear-1); local
359 handleComputeMonthStart(int32_t eyear, int32_t month, UBool ) const argument
397 int32_t year, month, dayOfMonth, dayOfYear; local
[all...]
H A Dgregocal.cpp24 * 08/12/97 aliu Added equivalentTo. Misc other fixes. Updated
57 * day number of January 1, 1970 (Gregorian calendar) at noon UTC. [LIU]
141 // Note that only Italy and other Catholic countries actually
142 // observed this cutover. Most other countries followed in
220 GregorianCalendar::GregorianCalendar(int32_t year, int32_t month, int32_t date, argument
229 set(UCAL_MONTH, month);
235 GregorianCalendar::GregorianCalendar(int32_t year, int32_t month, int32_t date, argument
244 set(UCAL_MONTH, month);
252 GregorianCalendar::GregorianCalendar(int32_t year, int32_t month, int32_t date, argument
262 set(UCAL_MONTH, month);
367 int32_t eyear, month, dayOfMonth, dayOfYear, unusedRemainder; local
529 handleComputeMonthStart(int32_t eyear, int32_t month, UBool ) const argument
602 monthLength(int32_t month, int32_t year) const argument
1330 Calendar *calendar = new GregorianCalendar(status); local
[all...]
H A Dchnsecal.cpp60 * The start year of the Chinese calendar, the 61st year of the reign
139 ChineseCalendar::ChineseCalendar(const ChineseCalendar& other) : Calendar(other) { argument
140 isLeapYear = other.isLeapYear;
141 fEpochYear = other.fEpochYear;
142 fZoneAstroCalc = other.fZoneAstroCalc;
237 * extended year and month.
240 * whether or not the given month is a leap month.
243 int32_t ChineseCalendar::handleGetMonthLength(int32_t extendedYear, int32_t month) cons
325 handleComputeMonthStart(int32_t eyear, int32_t month, UBool useMonth) const argument
700 int32_t month = synodicMonthsBetween(firstMoon, thisMoon); local
[all...]
/macosx-10.9.5/CPANInternal-140/DateTime/lib/
H A DDateTime.pm124 month => { type => SCALAR, default => 1,
132 { 'an integer which is a possible valid day of month' =>
178 Carp::croak( "Invalid day of month (day = $p{day} - month = $p{month} - year = $p{year})\n" )
179 if $p{day} > $class->_month_length( $p{year}, $p{month} );
202 $class->_ymd2rd( @p{ qw( year month day ) } );
252 qw( year month day hour minute second nanosecond
404 @{ $self->{local_c} }{ qw( year month day day_of_week
420 @{ $self->{utc_c} }{ qw( year month da
644 sub month { subroutine
[all...]
/macosx-10.9.5/CPANInternal-140/DateTime/lib/DateTime/
H A DDuration.pm420 end of a month is handled.
423 end of the new month will roll over into the following month. For
426 If you specify "end_of_month" mode as "limit", the end of the month is
433 of the month the new date will also be. For instance, adding one
434 month to Feb 29, 2000 will result in Mar 31, 2000.
510 Indicates what mode is used for end of month wrapping.
518 Returns a new object with the same I<calendar> delta (months and days
519 only) and end of month mode as the current object.
524 and nanoseconds) and end of month mod
[all...]
/macosx-10.9.5/emacs-92/emacs/etc/
H A Dorgcard.tex352 Outside of tables, the same keys may have other functionality.
432 \key{...force open in emacs/other window}{C-u C-c C-o}
434 \key{...force open in emacs/other window}{mouse-3}
465 \key{\kbd{elisp:(calendar)}}{\rm elisp form}
540 \key{change year/month/day at cursor by $\pm 1$}{S-UP/DOWN$^3$}
541 \key{access the calendar for the current date}{C-c >}
542 \key{insert timestamp matching date in calendar}{C-c <}
545 %\key{... select date in calendar}{mouse-1/RET}
546 %\key{... scroll calendar back/forward one month}{< / >}
[all...]
/macosx-10.9.5/CPANInternal-140/DateTime-Locale/lib/DateTime/
H A DLocale.pm383 value you gave, even if that value was an alias to some other id.
473 # All other keys are optional. These are:
508 not be used for any other purpose.
688 part of a string, like "the month of July". The stand alone values are for
690 example, in day column heading for a calendar it's okay to have "T" for both
782 datetime, such as the year and month, or hour and minute.
800 Chinese characters for "day" (���) and month (���), so you get something like
/macosx-10.9.5/vim-53/runtime/autoload/
H A Dphpcomplete.vim650 " this is the most efficient way. The other way
683 " Keywords/reserved words, all other special things {{{
1170 \ 'cal_days_in_month(': 'int calendar, int month, int year | int',
1171 \ 'cal_from_jd(': 'int jd, int calendar | array',
1172 \ 'cal_info(': '[int calendar] | array',
1177 \ 'cal_to_jd(': 'int calendar, int month, int day, int year | int',
1196 \ 'checkdate(': 'int month, int day, int year | bool',
1764 \ 'frenchtojd(': 'int month, in
[all...]

Completed in 113 milliseconds