/external/icu4c/i18n/ |
vtzone.cpp | 77 // Month length for non-leap year 190 int32_t year, month, dom, dow, doy, mid; local 191 Grego::timeToFields(time, year, month, dom, dow, doy, mid); 195 appendAsciiDigits(month + 1, 2, str); 230 int32_t year = 0, month = 0, day = 0, hour = 0, min = 0, sec = 0; local 253 month = parseAsciiDigits(str, 4, 2, status) - 1; // 0-based 264 int32_t maxDayOfMonth = Grego::monthLength(year, month); 265 if (year < 0 || month < 0 || month > 11 || day < 1 || day > maxDayOfMonth || 278 UDate time = Grego::fieldsToDay(year, month, day) * U_MILLIS_PER_DAY 539 int32_t month, dayOfWeek, nthDayOfWeek, dayOfMonth = 0; local 815 int32_t month = -1, dom = 0, dow = 0; local 1934 int32_t year, month, dom, dow, doy, mid; local [all...] |
hebrwcal.h | 39 * the lunar month (approximately 29.53 days) an extra "leap month" is 46 * The leap month is known as "Adar 1" and is inserted between the 47 * months of Shevat and Adar in leap years. Since the leap month does 49 * month numbers are particularly complex. Users of this class should 91 * Constant for Tishri, the 1st month of the Hebrew year. 95 * Constant for Heshvan, the 2nd month of the Hebrew year. 99 * Constant for Kislev, the 3rd month of the Hebrew year. 104 * Constant for Tevet, the 4th month of the Hebrew year. 109 * Constant for Shevat, the 5th month of the Hebrew year. [all...] |
persncal.cpp | 26 jalali_to_julian(int year, int month, int day) 32 month -= 1; 78 for (i = 0; i < month; i++) { 89 int year=0, month=0, day=0,scalarDays=0; local 165 month = i + 1; 170 *h_m = month; 212 { 0, 0, 11, 11}, // MONTH 248 // len length of month 249 // len2 length of month in a leap year 250 // st days in year before start of month [all...] |
islamcal.cpp | 149 { 0, 0, 11, 11}, // MONTH 204 * Return the day # on which the given month starts. Days are counted 208 * @param year The hijri month, 0-based 210 int32_t IslamicCalendar::monthStart(int32_t year, int32_t month) const { 212 return (int32_t)uprv_ceil(29.5*month) 215 return trueMonthStart(12*(year-1) + month); 220 * Find the day number on which a particular month of the true/lunar 223 * @param month The month in question, origin 0 from the Hijri epoch 225 * @return The day number on which the given month starts 343 int32_t month = 12*(extendedYear-1); local 394 int32_t year, month, dayOfMonth, dayOfYear; local [all...] |
cecal.h | 66 * Return JD of start of given month/extended year 69 virtual int32_t handleComputeMonthStart(int32_t eyear, int32_t month, UBool useMonth) const; 104 * Convert an Coptic/Ethiopic year, month, and day to a Julian day. 107 * @param month the month 113 static int32_t ceToJD(int32_t year, int32_t month, int32_t date, 117 * Convert a Julian day to an Coptic/Ethiopic year, month and day 122 * @param month receives the month 127 int32_t& year, int32_t& month, int32_t& day) [all...] |
coptccal.h | 34 * the 1st month of the Coptic year. 40 * the 2nd month of the Coptic year. 46 * the 3rd month of the Coptic year. 52 * the 4th month of the Coptic year. 58 * the 5th month of the Coptic year. 64 * the 6th month of the Coptic year. 70 * the 7th month of the Coptic year. 76 * the 8th month of the Coptic year. 82 * the 9th month of the Coptic year. 88 * the 10th month of the Coptic year. [all...] |
/external/chromium/chrome/browser/ui/webui/ |
history_ui.cc | 180 int month = 0; local 182 ExtractSearchHistoryArguments(args, &month, &query); 184 // Set the query ranges for the given month. 185 history::QueryOptions options = CreateMonthQueryOptions(month); 305 int* month, 313 *month = 0; 314 base::StringToInt(string16_value, month); 318 int month) { 322 // current month. 327 if (month == 0) [all...] |
/external/icu4c/test/compat/ |
tzdate.c | 32 int64_t getSystemCurrentTime(char* systime, int year, int month, int day, int hour, int minute, int useCurrentTime); 39 int year, month, day, hour, minute; local 44 sysyear = year = month = day = 0; 52 month = atoi(argv[2]); 61 systemtime = getSystemCurrentTime(systime, sysyear, month, day, hour, minute, useCurrentTime); 109 int64_t getSystemCurrentTime(char* systime, int year, int month, int day, int hour, int minute, int useCurrentTime) { 120 ts.tm_mon = month - OFFSET_MONTH;
|
/frameworks/base/core/tests/coretests/src/android/util/ |
DayOfMonthCursorTest.java | 58 // wrap over to previous column, same month 64 // wrap to previous month 88 // wrap to next column, same month 94 // next month 112 // up, same month 136 // down, same month 142 // down, next month
|
/external/bluetooth/glib/docs/reference/glib/tmpl/ |
date.sgml | 23 can keep both a Julian and day-month-year representation of the date, 50 struct.</emphasis> Often only the day-month-year or only the Julian 144 month, and year. 149 @dmy: this is set if @day, @month and @year are valid 150 @day: the day of the day-month-year representation of the date, as 152 @month: the day of the day-month-year representation of the date, as 154 @year: the day of the day-month-year representation of the date 186 to mark a number as a day, month, or year. 190 @G_DATE_MONTH: a month [all...] |
/external/icu4c/samples/cal/ |
cal.c | 43 static void cal(int32_t month, int32_t year, 115 int32_t month = -1, year = -1; local 152 /* Get the month and year to display, if specified */ 155 /* Month and year specified */ 157 sscanf(argv[optind], "%d", (int*)&month); 160 /* Make sure the month value is legal */ 161 if(month < 0 || month > 12) { 162 printf("icucal: Bad value for month -- %d\n", (int)month); [all...] |
/frameworks/base/core/java/android/widget/ |
DatePicker.java | 49 * year, month, and day spinners or a {@link CalendarView}. The set of spinners 132 * @param monthOfYear The month that was set (0-11) for compatibility 134 * @param dayOfMonth The day of the month that was set. 188 mTempDate.add(Calendar.MONTH, 1); 190 mTempDate.add(Calendar.MONTH, -1); 192 mTempDate.add(Calendar.MONTH, newVal - oldVal); 200 setDate(mTempDate.get(Calendar.YEAR), mTempDate.get(Calendar.MONTH), 213 public void onSelectedDayChange(CalendarView view, int year, int month, int monthDay) { 214 setDate(year, month, monthDay); 227 // month [all...] |
/external/chromium/net/ftp/ |
ftp_util.cc | 138 // Loop over all abbreviated month names in given locale. 141 for (int32_t month = 0; month < months_count; month++) { 147 if (months[month].caseCompare(0, 3, unicode_text, 0) == 0) { 148 *number = month + 1; 158 bool FtpUtil::LsDateListingToTime(const string16& month, const string16& day, 164 if (!AbbreviatedMonthToNumber(month, &time_exploded.month)) 205 if (time_exploded.month > current_exploded.month | [all...] |
/external/webkit/Source/WebCore/html/ |
DateComponents.h | 41 // * Month type: year-month 42 // * Date type: year-month-day 45 // * DateTime or DateTimeLocal type: year-month-day hour-minute-second-millisecond 66 int month() const { return m_month; } function in class:WebCore::DateComponents 93 // Sets year and month. 95 // Sets year, month and monthDay. 101 // Sets year, month, monthDay, hour, minute, second and millisecond. 103 // Sets year, month, monthDay, hour, minute, second and millisecond, and adjusts timezone. 118 // For Month type. Updates m_year and m_month [all...] |
/frameworks/base/core/java/android/net/ |
NetworkPolicyManager.java | 128 * 20th. When cycle day doesn't exist in current month, it snaps to the 1st 129 * of following month. 137 // first, find cycle boundary for current month 144 // pushing ourselves squarely into last month. 148 lastMonth.month -= 1; 163 // first, find cycle boundary for current month 170 // pushing ourselves squarely into next month. 174 nextMonth.month += 1; 185 * Snap to the cycle day for the current month given; when cycle day doesn't 186 * exist, it snaps to 1st of following month [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
CalendarTest.java | 50 cal.set(Calendar.MONTH, Calendar.MARCH); 60 cal.set(Calendar.MONTH, Calendar.OCTOBER); 62 cal.set(Calendar.MONTH, Calendar.NOVEMBER); 64 assertTrue("Incorrect month: " + cal.get(Calendar.MONTH), cal 65 .get(Calendar.MONTH) == Calendar.NOVEMBER); 122 // WEEK_OF_YEAR has priority over MONTH/DATE 127 cal.set(Calendar.MONTH, Calendar.JANUARY); 133 // WEEK_OF_YEAR has priority over MONTH/DATE 137 cal.set(Calendar.MONTH, Calendar.JANUARY) [all...] |
/libcore/luni/src/test/java/tests/api/java/util/ |
CalendarTest.java | 50 cal.set(Calendar.MONTH, Calendar.MARCH); 60 cal.set(Calendar.MONTH, Calendar.OCTOBER); 62 cal.set(Calendar.MONTH, Calendar.NOVEMBER); 64 assertTrue("Incorrect month: " + cal.get(Calendar.MONTH), cal 65 .get(Calendar.MONTH) == Calendar.NOVEMBER); 122 // WEEK_OF_YEAR has priority over MONTH/DATE 127 cal.set(Calendar.MONTH, Calendar.JANUARY); 133 // WEEK_OF_YEAR has priority over MONTH/DATE 137 cal.set(Calendar.MONTH, Calendar.JANUARY) [all...] |
/libcore/luni/src/main/java/java/util/ |
Calendar.java | 32 * {@code YEAR}, {@code MONTH}, {@code DAY}, 57 * fields, as well as their meaning. For example, the first month of the year 58 * has value {@code MONTH} == {@code JANUARY} for all calendars. 66 * {@code GregorianCalendar} interprets {@code MONTH} == 72 * values between 1 and the length of the month. 84 * the first week of the month or year as a reference point. The first week of a 85 * month or year is defined as the earliest seven day period beginning on 87 * {@code getMinimalDaysInFirstWeek()} days of that month or year. Weeks 97 * {@code Date} (such as only year and month but no day in the month), o [all...] |
/libcore/luni/src/main/java/javax/xml/datatype/ |
DatatypeConstants.java | 42 * Value for first month of year. 47 * Value for second month of year. 52 * Value for third month of year. 57 * Value for fourth month of year. 62 * Value for fifth month of year. 67 * Value for sixth month of year. 72 * Value for seventh month of year. 77 * Value for eighth month of year. 82 * Value for ninth month of year. 87 * Value for tenth month of year [all...] |
/external/icu4c/samples/translit/answers/ |
main_3.cpp | 66 for (int32_t month = Calendar::JANUARY; 67 month <= Calendar::DECEMBER; 68 ++month) { 72 cal->set(1999, month, 4);
|
main_4.cpp | 70 for (int32_t month = Calendar::JANUARY; 71 month <= Calendar::DECEMBER; 72 ++month) { 76 cal->set(1999, month, 4);
|
/external/icu4c/samples/translit/ |
main.cpp | 72 for (int32_t month = Calendar::JANUARY; 73 month <= Calendar::DECEMBER; 74 ++month) { 78 cal->set(1999, month, 4);
|
/external/v8/src/ |
dateparser.cc | 37 // Day and month defaults to 1. 43 int month = kNone; local 50 month = comp_[1]; 54 month = comp_[0]; 59 month = named_month_; 77 if (!Smi::IsValid(year) || !IsMonth(month) || !IsDay(day)) return false; 80 output->set(MONTH, Smi::FromInt(month - 1)); // 0-based 168 // Word longer than keyword is only allowed for month names.
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/ |
15.9.5.35-1.js | 78 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMonth()", UTCDate.month, DateCase.getUTCMonth() ); 87 testcases[item++] = new TestCase( SECTION, DateString+".getMonth()", LocalDate.month, DateCase.getMonth() ); 104 this.month = 0; 121 d.month = MonthFromTime(t); 129 d.value = TimeClip( MakeDate( MakeDay( d.year, d.month, d.date ), d.time ) ); 134 function SetUTCMonth( t, month, date ) { 136 var MONTH = Number( month ); 139 var RESULT4 = MakeDay(YearFromTime(T), MONTH, DATE );
|
/external/webkit/Tools/iExploder/iexploder-1.7.2/src/html-values/ |
webkit | 53 month
|