HomeSort by relevance Sort by last modified time
    Searched full:month (Results 76 - 100 of 787) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/icu4c/i18n/
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...]
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...]
indiancal.h 37 * Month Length Start date (Gregorian)
77 * Constant for Chaitra, the 1st month of the Indian year.
82 * Constant for Vaisakha, the 2nd month of the Indian year.
87 * Constant for Jyaistha, the 3rd month of the Indian year.
92 * Constant for Asadha, the 4th month of the Indian year.
97 * Constant for Sravana, the 5th month of the Indian year.
102 * Constant for Bhadra the 6th month of the Indian year
107 * Constant for the Asvina, the 7th month of the Indian year.
112 * Constant for Kartika, the 8th month of the Indian year.
117 * Constant for Agrahayana, the 9th month of the Indian year.
    [all...]
gregocal.cpp 81 { 0, 0, 11, 11}, // MONTH
111 * MONTH 0 0 11 11
220 GregorianCalendar::GregorianCalendar(int32_t year, int32_t month, int32_t date,
229 set(UCAL_MONTH, month);
235 GregorianCalendar::GregorianCalendar(int32_t year, int32_t month, int32_t date,
244 set(UCAL_MONTH, month);
252 GregorianCalendar::GregorianCalendar(int32_t year, int32_t month, int32_t date,
262 set(UCAL_MONTH, month);
367 int32_t eyear, month, dayOfMonth, dayOfYear; local
381 month = getGregorianMonth()
    [all...]
japancal.h 192 * Called by computeJulianDay. Returns the default month (0-based) for the year,
193 * taking year and era into account. Will return the first month of the given era, if
201 * Called by computeJulianDay. Returns the default day (1-based) for the month,
203 * era, if the current month is an ascension year and month.
205 * @param mon the month in the year
208 virtual int32_t getDefaultDayInMonth(int32_t eyear, int32_t month);
  /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/chromium/chrome/browser/autofill/
credit_card_field_unittest.cc 46 new AutofillField(webkit_glue::FormField(ASCIIToUTF16("Exp Month"),
92 new AutofillField(webkit_glue::FormField(ASCIIToUTF16("Exp Month"),
135 webkit_glue::FormField(ASCIIToUTF16("Exp Month"),
186 new AutofillField(webkit_glue::FormField(ASCIIToUTF16("Exp Month"),
251 webkit_glue::FormField(ASCIIToUTF16("Exp Month"),
318 webkit_glue::FormField(ASCIIToUTF16("ExpDate Month / Year"),
324 ASCIIToUTF16("month")));
327 webkit_glue::FormField(ASCIIToUTF16("ExpDate Month / Year"),
346 field_type_map_.find(ASCIIToUTF16("month")) != field_type_map_.end());
347 EXPECT_EQ(CREDIT_CARD_EXP_MONTH, field_type_map_[ASCIIToUTF16("month")]);
    [all...]
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/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
GregorianCalendarTest.java 49 gc.get(Calendar.MONTH) == Calendar.OCTOBER);
67 gc.get(Calendar.MONTH) == Calendar.OCTOBER);
96 gc.get(Calendar.MONTH) == Calendar.OCTOBER);
152 c1.set(Calendar.MONTH,Calendar.JUNE);
200 gc1.add(Calendar.MONTH, 7);
202 assertTrue("Wrong result month 1",
203 gc1.get(Calendar.MONTH) == Calendar.FEBRUARY);
208 assertTrue("Wrong result month 2",
209 gc1.get(Calendar.MONTH) == Calendar.FEBRUARY);
267 .get(Calendar.MONTH) == Calendar.APRI
    [all...]
  /packages/apps/Calendar/res/values-xlarge/
integers.xml 15 <!-- size of day date font in month view -->
17 <!-- margin between the day number and the edge of the day in month view -->
  /packages/apps/Calendar/src/com/android/calendar/
CalendarViewAdapter.java 50 // Week view: show the month + year
51 // Month view: show the month + year
192 case ViewType.MONTH:
261 // Used when the user selects a new day/week/month to watch
297 // Full date: Month,day Year
298 // Month year
299 // Month day
300 // Month
301 // Week: month day-day or month day - month da
    [all...]
  /external/icu4c/i18n/unicode/
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...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
SIPDate.java 108 /** month member
110 protected int month; field in class:SIPDate
141 this.month == other.month &&
154 month = -1;
202 month = javaCal.get(Calendar.MONTH);
203 switch (month) {
242 "No date map for month " + month);
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/month/
SimpleWeekView.java 17 package com.android.calendar.month;
82 * Which month is currently in focus, as defined by {@link Time#month}
87 * If this month should display week numbers. false if 0, true otherwise.
120 // Quick lookup for checking which days are in the focus month
124 // The month of the first day in this week
126 // The month of the last day in this week
202 * will only update if a new value is included, except for focus month,
203 * which will always default to no focus month if no value is passed in. See
271 mFirstMonth = time.month;
    [all...]
SimpleDayPickerFragment.java 17 package com.android.calendar.month;
53 * easily display a month selection component in a given style.
61 // Affects when the month selection will change while scrolling up
70 // The size of the month name displayed above the week list
106 // The first day of the focus month
110 // The name of the month to display
114 // which month should be displayed/highlighted [0-11]
240 // set the title to the month of the second week
367 * in range it will move the list so that the first of the month containing
443 // and if so scroll to the month that contains i
    [all...]
  /cts/tests/tests/text/src/android/text/format/cts/
TimeTest.java 80 time.month = 2;
86 assertEquals(3, cal.get(Calendar.MONTH));
88 assertEquals(expectedMonth, time.month);
92 time.month = 2;
95 assertEquals(expectedMonth, time.month);
127 final int month = 5; local
130 time.set(date, month, year);
132 assertEquals(month, time.month);
147 assertEquals(time.month, anotherTime.month)
700 final int month = 6; local
    [all...]
  /frameworks/base/core/java/android/widget/
CalendarView.java 103 * Affects when the month selection will change while scrolling upe
124 * String for formatting the month name in the title text view.
228 * The name of the month to display.
248 * Which month should be displayed/highlighted [0-11].
288 * The first day of the focused month.
322 * @param month The month that was set [0-11].
323 * @param dayOfMonth The day of the month that was set.
325 public void onSelectedDayChange(CalendarView view, int year, int month, int dayOfMonth);
707 selectedDay.get(Calendar.MONTH),
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/datepicker/
DatePicker.java 47 * A view for selecting a month / year / day based on a calendar like layout.
85 * @param monthOfYear The month that was set (0-11) for compatibility
87 * @param dayOfMonth The day of the month that was set.
116 mMonthPicker = (NumberPicker) findViewById(R.id.month);
122 * If the user is in a locale where the month names are numeric,
123 * use just the number instead of the "month" character for
142 /* We display the month 1-12 but store it 0-11 so always
146 // Adjust max day of the month
190 init(cal.get(Calendar.YEAR), cal.get(Calendar.MONTH), cal.get(Calendar.DAY_OF_MONTH), null);
252 } else if ((c == DateFormat.MONTH || c == 'L') && !didMonth)
    [all...]
  /external/bluetooth/glib/glib/
gdate.h 52 typedef guint8 GDateDay; /* day of the month */
63 /* actual week and month values */
114 guint month : 4; member in struct:_GDate
124 GDateMonth month,
136 gboolean g_date_valid_month (GDateMonth month) G_GNUC_CONST;
141 GDateMonth month,
182 GDateMonth month);
189 GDateMonth month,
214 guint8 g_date_get_days_in_month (GDateMonth month,
  /external/webkit/Source/JavaScriptCore/wtf/
DateMath.cpp 136 // Day of year for the first day of each month, where index 0 is January, and day 0 is January 1.
311 static inline int monthToDayInYear(int month, bool isLeapYear)
313 return firstDayOfMonth[isLeapYear][month];
321 double dateToDaysFrom1970(int year, int month, int day)
323 year += month / 12;
325 month %= 12;
326 if (month < 0) {
327 month += 12;
333 int monthday = monthToDayInYear(month, isLeapYear(year));
471 int month = monthFromDayInYear(dayInYearLocal, leapYear) local
589 long month; local
747 long month = -1; local
    [all...]
  /external/chromium/chrome/browser/ui/webui/
history2_ui.h 72 int* month,
75 // Figure out the query options for a month-wide query.
76 history::QueryOptions CreateMonthQueryOptions(int month);
history_ui.h 68 int* month,
71 // Figure out the query options for a month-wide query.
72 history::QueryOptions CreateMonthQueryOptions(int month);
  /external/libxml2/include/libxml/
nanoftp.h 32 * @month: the month
44 const char *month, int day, int hour,
  /external/v8/src/
date.js 339 // Compute number of days given a year, month, date.
340 // Note that month and date can lie outside the normal range.
345 function MakeDay(year, month, date) {
346 if (!$isFinite(year) || !$isFinite(month) || !$isFinite(date)) return $NaN;
350 month = TO_INTEGER_MAP_MINUS_ZERO(month);
354 month < kMinMonth || month > kMaxMonth ||
359 // Now we rely on year, month and date being SMIs.
360 return %DateMakeDay(year, month, date)
    [all...]
  /external/markdown/markdown/extensions/
rss.py 27 month, date, year = heading.split()
28 month = month_map[month]
30 return rdftime(" ".join((month, date, year, "12:00:00 AM")))

Completed in 1372 milliseconds

1 2 34 5 6 7 8 91011>>