/external/icu4c/i18n/ |
dtrule.cpp | 20 DateTimeRule::DateTimeRule(int32_t month, 24 : fMonth(month), fDayOfMonth(dayOfMonth), fDayOfWeek(0), fWeekInMonth(0), fMillisInDay(millisInDay), 28 DateTimeRule::DateTimeRule(int32_t month, 33 : fMonth(month), fDayOfMonth(0), fDayOfWeek(dayOfWeek), fWeekInMonth(weekInMonth), fMillisInDay(millisInDay), 37 DateTimeRule::DateTimeRule(int32_t month, 44 fMonth(month), fDayOfMonth(dayOfMonth), fDayOfWeek(dayOfWeek), fWeekInMonth(0), fMillisInDay(millisInDay),
|
islamcal.h | 42 * Each month of the calendar starts when the new moon's crescent is visible 50 * and 30-day months, with a leap day added to the last month of 11 out of 61 * start of a month in the religious calendar to differ from the civil calendar 66 * of a lunar month with a fairly high degree of certainty. However, these 73 * which approach is used to determine the start of a month. By default, the 104 * Constant for Muharram, the 1st month of the Islamic year. 110 * Constant for Safar, the 2nd month of the Islamic year. 116 * Constant for Rabi' al-awwal (or Rabi' I), the 3rd month of the Islamic year. 122 * Constant for Rabi' al-thani or (Rabi' II), the 4th month of the Islamic year. 128 * Constant for Jumada al-awwal or (Jumada I), the 5th month of the Islamic year. [all...] |
persncal.h | 40 * months are 30 days long. The last month is 29 days long in normal years, 59 * Constant for Farvardin, the 1st month of the Persian year. 65 * Constant for Ordibehesht, the 2nd month of the Persian year. 71 * Constant for Khordad, the 3rd month of the Persian year. 77 * Constant for Tir, the 4th month of the Persian year. 83 * Constant for Mordad, the 5th month of the Persian year. 89 * Constant for Shahrivar, the 6th month of the Persian year. 95 * Constant for Mehr, the 7th month of the Persian year. 101 * Constant for Aban, the 8th month of the Persian year. 107 * Constant for Azar, the 9th month of the Persian year. [all...] |
japancal.cpp | 37 int8_t month; member in struct:__anon5994 40 // Year Month Day 329 int32_t month = 0; local 335 return kEraInfo[era].month-1; 338 return month; 341 int32_t JapaneseCalendar::getDefaultDayInMonth(int32_t eyear, int32_t month) 347 if(month == (kEraInfo[era].month-1)) { 389 // the binary search to handle the month/dom comparison. 412 diff,low, high, i, kEraInfo[i].month-1, kEraInfo[i].day, kEraInfo[i].year, internalGet(UCAL_MONTH), internalGet(UCAL_DATE),year) [all...] |
/external/icu4c/test/cintltst/ |
ccaltst.h | 81 static void verify1(const char* msg, UCalendar* c, UDateFormat* dat, int32_t year, int32_t month, int32_t day); 83 static void verify2(const char* msg, UCalendar* c, UDateFormat* dat, int32_t year, int32_t month, int32_t day,
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/ |
15.9.4.3.js | 26 var TITLE = "Date.UTC( year, month, date, hours, minutes, seconds, ms )"; 33 this.month = 0; 41 function utc( year, month, date, hours, minutes, seconds, ms ) { 45 if (month) 46 d.month = Number(month); 62 if (isNaN(month) || isNaN(year) || isNaN(date) || isNaN(hours) || 65 d.month = Number.NaN; 77 d.day = MakeDay( d.year, d.month, d.date ); 179 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMonth()", ExpectDate.month, DateCase.getUTCMonth() ) [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ |
shell.js | 259 * year-month-day mode: dt = new Date(2000, 5, 1, ...); 279 ResultArray[MONTH] = MonthFromTime(t); 426 var month = MonthFromTime(t); 428 if ( month == 0 ) { 431 if ( month == 1 ) { 434 if ( month == 2 ) { 437 if ( month == 3 ) { 440 if ( month == 4 ) { 443 if ( month == 5 ) { 446 if ( month == 6 ) [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Date/ |
shell.js | 375 var month = MonthFromTime(t); 377 if ( month == 0) {return ( day + 1 );} 378 if ( month == 1) {return ( day - 30 );} 379 if ( month == 2) {return ( day - 58 - InLeapYear(t) );} 380 if ( month == 3) {return ( day - 89 - InLeapYear(t));} 381 if ( month == 4) {return ( day - 119 - InLeapYear(t));} 382 if ( month == 5) {return ( day - 150 - InLeapYear(t));} 383 if ( month == 6) {return ( day - 180 - InLeapYear(t));} 384 if ( month == 7) {return ( day - 211 - InLeapYear(t));} 385 if ( month == 8) {return ( day - 242 - InLeapYear(t)); [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);
|
/system/core/include/cutils/ |
tztime.h | 34 const char *month[12]; /* long names */ member in struct:strftime_locale
|
/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...] |
ftp_directory_listing_parser_unittest.cc | 75 mock_current_time_exploded.month = 11; 114 int year, month, day_of_month, hour, minute; local 116 base::StringToInt(lines[8 * i + 4], &month); 139 EXPECT_EQ(month, time_exploded.month);
|
/external/icu4c/i18n/unicode/ |
dtrule.h | 24 * a rule specified by month, day of month, day of week and 37 DOM = 0, /**< The exact day of month, 43 DOW_LEQ_DOM /**< The last occurence of the day of week on or before the day of month, 58 * Constructs a <code>DateTimeRule</code> by the day of month and 62 * @param month The rule month, for example, <code>Calendar::JANUARY</code> 63 * @param dayOfMonth The day of month, 1-based. 69 DateTimeRule(int32_t month, int32_t dayOfMonth, 77 * @param month The rule month, for example, <code>Calendar::JANUARY</code> [all...] |
gregocal.h | 100 * cout << "MONTH: " << calendar->get( UCAL_MONTH, success ) << endl; 122 * cout << "MONTH: " << calendar->get( UCAL_MONTH, success ) << endl; 235 * @param month The value used to set the MONTH time field in the calendar. Month 242 GregorianCalendar(int32_t year, int32_t month, int32_t date, UErrorCode& success); 249 * @param month The value used to set the MONTH time field in the calendar. Month 258 GregorianCalendar(int32_t year, int32_t month, int32_t date, int32_t hour, int32_t minute, UErrorCode& success) [all...] |
/frameworks/base/media/mtp/ |
MtpUtils.cpp | 30 representation, YYYY shall be replaced by the year, MM replaced by the month (01-12), 37 int year, month, day, hour, minute, second; local 41 &year, &month, &day, &hour, &minute, &second) != 6) 58 tm.tm_mon = month - 1; // mktime uses months in 0 - 11 range
|
/libcore/luni/src/main/java/java/util/ |
GregorianCalendar.java | 85 * 1 to 4 or 5. Week 1 of a month (the days with <code>WEEK_OF_MONTH = 88 * contiguous days in that month, ending on the day before 90 * month may be shorter than 7 days, need not start on 92 * previous month. Days of a month before week 1 have a 133 * System.out.println("MONTH: " + calendar.get(Calendar.MONTH)); 158 * System.out.println("MONTH: " + calendar.get(Calendar.MONTH)); 248 * @param month 390 int month = fields[MONTH] + value; local 506 int month = dayOfYear \/ 32; local 815 int month = fields[MONTH]; local 1211 int month = dayOfYear \/ 32; local [all...] |
SimpleTimeZone.java | 31 * {@code SimpleTimeZone} should count from the end of the month 102 * By default, this constructor specifies day-of-week-in-month rules. That 108 * Day of month: To specify an exact day of the month, such as March 1, set 111 * Day of week after day of month: To specify the first day of the week 112 * occurring on or after an exact day of the month, make the day of the week 117 * Day of week before day of month: To specify the last day of the week 118 * occurring on or before an exact day of the month, make the day of the 119 * week and the day of the month negative. For example, if {@code startDay} is {@code -21} 134 * the daylight savings starting month. The month indexing is 0-based. eg, [all...] |
Date.java | 60 * @param month 61 * the month, 0 - 11. 63 * the day of the month, 1 - 31. 69 public Date(int year, int month, int day) { 71 cal.set(1900 + year, month, day); 81 * @param month 82 * the month, 0 - 11. 84 * the day of the month, 1 - 31. 94 public Date(int year, int month, int day, int hour, int minute) { 96 cal.set(1900 + year, month, day, hour, minute) 379 int year = -1, month = -1, date = -1; local [all...] |
/external/chromium/chrome/browser/autofill/ |
credit_card.cc | 210 string16 month = ExpirationMonthAsString(); local 212 if (!month.empty() && !year.empty()) 213 return month + ASCIIToUTF16("/") + year; 218 string16 month = ExpirationMonthAsString(); local 220 if (!month.empty() && !year.empty()) 221 return month + ASCIIToUTF16("/") + year; 304 // Check if |text| is "yyyy-mm" format first, and check normal month format. 438 string16 month = base::IntToString16(expiration_month_); 440 return month; 443 zero.append(month); 462 int month; local 507 int month; local [all...] |
/external/chromium/chrome/browser/ui/webui/ |
history2_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, 307 *month = 0; 318 // Get search month. 325 base::StringToInt(string16_value, month); 330 int month) { 334 // current month [all...] |
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/webkit/Source/JavaScriptCore/wtf/ |
DateMath.h | 85 double dateToDaysFrom1970(int year, int month, int day); 134 , month(0) 148 , month(inTm.tm_mon) 179 ret.tm_mon = month; 201 month = rhs.month; 219 int month; member in struct:JSC::GregorianDateTime
|
/frameworks/opt/calendar/src/com/android/calendarcommon/ |
RecurrenceProcessor.java | 204 iterator.month + 1); 321 * Compute the day of the week for the first day of the month. "instance" has a 326 * (day of the month - 1) mod 7, and then make sure it's positive. We can simplify 341 * Generate a set according to the BYDAY rules. For each day of the month, determine 349 // For each month day, see if it's part of the set. (This makes some assumptions 433 int realMonth = iterator.month; 439 + " " + iterator.month 444 // if might be past the end of the month, we need to normalize it 449 realMonth = t.month; 452 Log.i(TAG, "normalized t=" + t + " " + t.month 890 int month = usebymonth local 1123 int month = date.month; local [all...] |