HomeSort by relevance Sort by last modified time
    Searched refs:monthLength (Results 1 - 25 of 42) sorted by null

1 2

  /external/icu/icu4c/source/i18n/
gregoimp.h 152 static inline int8_t monthLength(int32_t year, int32_t month);
266 Grego::monthLength(int32_t year, int32_t month) {
272 return (m > 0) ? monthLength(y, m-1) : 31;
simpletz.cpp 48 // For actual getOffset() calculations, use Grego::monthLength() and
398 // Check the month before calling Grego::monthLength(). This
410 return getOffset(era, year, month, day, dayOfWeek, millis, Grego::monthLength(year, month), status);
416 int32_t /*monthLength*/, UErrorCode& status) const
418 // Check the month before calling Grego::monthLength(). This
431 // We ignore monthLength because it can be derived from year and month.
435 Grego::monthLength(year, month),
443 int32_t monthLength, int32_t prevMonthLength,
452 || day > monthLength
457 || monthLength < 2
    [all...]
vzone.cpp 127 int32_t monthLength, UErrorCode& status) {
128 return ((VTimeZone*)zone)->VTimeZone::getOffset(era, year, month, day, dayOfWeek, millis, monthLength, status);
gregoimp.cpp 149 if (dom + 7 > monthLength(year, month)) {
olsontz.h 178 int32_t millis, int32_t monthLength,
vzone.h 209 * @param monthLength The length of the given month in days.
216 int32_t monthLength, UErrorCode& status);
olsontz.cpp 341 Grego::monthLength(year, month),
351 int32_t millis, int32_t monthLength,
361 || dom > monthLength
366 || monthLength < 28
367 || monthLength > 31) {
378 millis, monthLength, ec);
    [all...]
gregocal.cpp 17 * 04/22/97 aliu Cleaned up code drastically. Added monthLength().
595 GregorianCalendar::monthLength(int32_t month) const
604 GregorianCalendar::monthLength(int32_t month, int32_t year) const
636 int32_t monthLen = monthLength(internalGet(UCAL_MONTH));
662 date > monthLength(internalGet(UCAL_MONTH))) {
842 int32_t max = monthLength(internalGet(UCAL_MONTH));
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Grego.java 75 public static final int monthLength(int year, int month) {
86 return (month > 0) ? monthLength(year, month-1) : 31;
210 if (dayOfMonth + 7 > monthLength(year, month)) {
OlsonTimeZone.java 132 return getOffset(era, year, month, day, dayOfWeek, milliseconds, Grego.monthLength(year, month));
139 public int getOffset(int era, int year, int month,int dom, int dow, int millis, int monthLength){
145 || dom > monthLength
150 || monthLength < 28
151 || monthLength > 31) {
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Grego.java 73 public static final int monthLength(int year, int month) {
84 return (month > 0) ? monthLength(year, month-1) : 31;
208 if (dayOfMonth + 7 > monthLength(year, month)) {
OlsonTimeZone.java 130 return getOffset(era, year, month, day, dayOfWeek, milliseconds, Grego.monthLength(year, month));
137 public int getOffset(int era, int year, int month,int dom, int dow, int millis, int monthLength){
143 || dom > monthLength
148 || monthLength < 28
149 || monthLength > 31) {
    [all...]
  /libcore/ojluni/src/main/java/java/util/
JapaneseImperialCalendar.java 680 int monthLen = monthLength(mon);
    [all...]
GregorianCalendar.java     [all...]
  /external/icu/icu4c/source/i18n/unicode/
gregocal.h 547 virtual int32_t monthLength(int32_t month) const;
556 virtual int32_t monthLength(int32_t month, int32_t year) const;
rbtz.h 167 * @param monthLength The length of the given month in days.
174 int32_t monthLength, UErrorCode& status) const;
simpletz.h 584 * @param monthLength the length of the given month in days.
591 int32_t monthLength, UErrorCode& status) const;
602 * @param monthLength the length of the given month in days.
610 int32_t monthLength, int32_t prevMonthLength,
    [all...]
timezone.h 496 * @param monthLength the length of the given month in days.
503 int32_t monthLength, UErrorCode& status) const = 0;
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
SimpleTimeZone.java 612 // For actual getOffset() calculations, use TimeZone::monthLength() and
626 // Check the month before calling Grego.monthLength(). This
637 return getOffset(era, year, month, day, dayOfWeek, millis, Grego.monthLength(year, month));
647 int monthLength) {
648 // Check the month before calling Grego.monthLength(). This
660 Grego.monthLength(year, month), Grego.previousMonthLength(year, month));
665 int monthLength, int prevMonthLength ){
675 || day > monthLength
680 || monthLength < 28
681 || monthLength > 3
    [all...]
AnnualTimeZoneRule.java 121 Grego.monthLength(year, dateTimeRule.getRuleMonth()));
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
SimpleTimeZone.java 632 // For actual getOffset() calculations, use TimeZone::monthLength() and
647 // Check the month before calling Grego.monthLength(). This
658 return getOffset(era, year, month, day, dayOfWeek, millis, Grego.monthLength(year, month));
668 int monthLength) {
669 // Check the month before calling Grego.monthLength(). This
681 Grego.monthLength(year, month), Grego.previousMonthLength(year, month));
686 int monthLength, int prevMonthLength ){
696 || day > monthLength
701 || monthLength < 28
702 || monthLength > 3
    [all...]
AnnualTimeZoneRule.java 131 Grego.monthLength(year, dateTimeRule.getRuleMonth()));
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DateTimeGeneratorTest.java 659 int monthLength;
663 return monthLength == other.monthLength;
675 return "{" + monthLength + ", " + fields[0] + ", " + fields[1] + ", " + fields[2] + "}";
680 return monthLength == other.monthLength && fields[0] == other.fields[0] && fields[1] == other.fields[1] && fields[2] == other.fields[2];
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DateTimeGeneratorTest.java 658 int monthLength;
662 return monthLength == other.monthLength;
674 return "{" + monthLength + ", " + fields[0] + ", " + fields[1] + ", " + fields[2] + "}";
679 return monthLength == other.monthLength && fields[0] == other.fields[0] && fields[1] == other.fields[1] && fields[2] == other.fields[2];
    [all...]
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
RecurrenceProcessor.java     [all...]

Completed in 3086 milliseconds

1 2