HomeSort by relevance Sort by last modified time
    Searched full:month (Results 226 - 250 of 541) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/
FieldPositionTest.java 59 FieldPosition fpos = new FieldPosition(DateFormat.Field.MONTH);
61 DateFormat.Field.MONTH, fpos.getFieldAttribute());
77 FieldPosition fpos = new FieldPosition(DateFormat.Field.MONTH,
80 DateFormat.Field.MONTH, fpos.getFieldAttribute());
  /development/apps/BuildWidget/src/com/android/buildwidget/
BuildWidget.java 61 // Pick out month names from resources
  /external/icu4c/i18n/
ucal.cpp 344 int32_t month,
351 ((Calendar*)cal)->set(year, month, date);
358 int32_t month,
367 ((Calendar*)cal)->set(year, month, date, hour, minute, second);
  /external/icu4c/test/cintltst/
cdtdptst.c 277 log_err("Error in handling the czech month june\n");
279 log_verbose("Pass: Date = %s (czech month June)\n", aescstrdup(date, -1));
287 log_err("Error in handling the czech month july\n");
289 log_verbose("Pass: Date = %s (czech month July)\n", aescstrdup(date, -1));
  /external/icu4c/test/intltest/
calcasts.cpp 63 checkField(cal, UCAL_MONTH, cases[i].month - 1,status);
75 cal->set(UCAL_MONTH, cases[i].month - 1);
128 // Julian Day Era Year Month Day WkDay Hour Min Sec
217 // Julian Day Era Year Month Day WkDay Hour Min Sec
287 // Julian Day Era Year Month Day WkDay Hour Min Sec
303 // G.YY/MM/DD Era Year Month Day WkDay Hour Min Sec
335 // Julian Day Era Year Month Day WkDay Hour Min Sec
391 // JD Era Year Month Day WkDay Hour Min Sec
434 // JD Era Year Month Day WkDay Hour Min Sec
tzbdtest.h 82 void verifyMapping(Calendar& cal, int year, int month, int dom, int hour,
  /external/kernel-headers/original/linux/mmc/
card.h 23 unsigned char month; member in struct:mmc_cid
  /external/stlport/src/c_locale_win32/
c_wlocale_win32.c 292 const wchar_t * _WLocale_full_monthname(_Locale_time_t * ltime, int month,
294 { GetLocaleInfoW(ltime->lc.id, LOCALE_SMONTHNAME1 + month, buf, (int)bufSize); return buf; }
296 const wchar_t * _WLocale_abbrev_monthname(_Locale_time_t * ltime, int month,
298 { GetLocaleInfoW(ltime->lc.id, LOCALE_SABBREVMONTHNAME1 + month, buf, (int)bufSize); return buf; }
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.2.2-6.js 25 Date( year, month, date, hours, minutes, seconds )
  /external/zlib/contrib/minizip/
ChangeLogUnzip 35 - fix problem in month in date handling
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/mmc/
card.h 25 unsigned char month; member in struct:mmc_cid
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/mmc/
card.h 25 unsigned char month; member in struct:mmc_cid
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/mmc/
card.h 25 unsigned char month; member in struct:mmc_cid
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/mmc/
card.h 25 unsigned char month; member in struct:mmc_cid
  /ndk/build/platforms/android-8/arch-arm/usr/include/linux/mmc/
card.h 25 unsigned char month; member in struct:mmc_cid
  /ndk/build/platforms/android-8/arch-x86/usr/include/linux/mmc/
card.h 25 unsigned char month; member in struct:mmc_cid
  /packages/apps/Calendar/src/com/android/calendar/
MonthActivity.java 102 // Compute a month number that is monotonically increasing for any
107 int currentMonth = currentTime.month + currentTime.year * 12;
108 int nextMonth = time.month + time.year * 12;
290 // Record Month View as the (new) start view
  /dalvik/libcore/text/src/main/java/java/text/
DateFormat.java 187 * to the {@link Calendar#MONTH} field.
773 * Marks the month part of a date.
775 public final static Field MONTH = new Field("month", Calendar.MONTH); //$NON-NLS-1$
811 * Marks the day of the month part of a date.
813 public final static Field DAY_OF_MONTH = new Field("day of month", //$NON-NLS-1$
823 * Marks the day of the week in the month part of a date.
826 "day of week in month", Calendar.DAY_OF_WEEK_IN_MONTH); //$NON-NLS-1$
835 * Marks the week of the month part of a date
    [all...]
  /dalvik/libcore/luni/src/main/java/java/util/
TimeZone.java 375 * @param month
376 * the {@code Calendar} month.
378 * the day of the month.
385 abstract public int getOffset(int era, int year, int month, int day,
658 * dst start week of month; tzinfo[5] -> the dst start month;
660 * week; tzinfo[8] -> the dst end week of month; tzinfo[9] -> the
661 * dst end month;
  /external/kernel-headers/original/linux/
rtc.h 104 extern int rtc_month_days(unsigned int month, unsigned int year);
105 extern int rtc_year_days(unsigned int day, unsigned int month, unsigned int year);
  /external/v8/src/
dateparser-inl.h 66 in.Skip('-'); // Ignore suffix '-' for year, month, or day.
79 in.Skip('-'); // Ignore suffix '-' for month names
  /external/webkit/JavaScriptCore/runtime/
DateConversion.cpp 69 monthName[t.month], t.monthDay, t.year + 1900);
76 t.monthDay, monthName[t.month], t.year + 1900);
  /frameworks/base/core/jni/
Time.cpp 69 static inline int days_this_month(int year, int month)
71 int n = DAYS_PER_MONTH[month];
  /frameworks/base/media/libdrm/mobile1/src/parser/
parser_rel.c 25 int32_t drm_monthDays(int32_t year, int32_t month)
27 switch (month) {
51 int32_t drm_checkDate(int32_t year, int32_t month, int32_t day,
54 if (month >= 1 && month <= 12 &&
55 day >= 1 && day <= drm_monthDays(year, month) &&
85 /** get month */
354 /** get month */
  /external/opencore/tools_v2/build/document/bin/
doc_build.bat 128 my $month;
130 if ( $date[1] =~ /Jan/ ) { $month = "January"; last SWITCH; }
131 if ( $date[1] =~ /Feb/ ) { $month = "February"; last SWITCH; }
132 if ( $date[1] =~ /Mar/ ) { $month = "March"; last SWITCH; }
133 if ( $date[1] =~ /Apr/ ) { $month = "April"; last SWITCH; }
134 if ( $date[1] =~ /May/ ) { $month = "May"; last SWITCH; }
135 if ( $date[1] =~ /Jun/ ) { $month = "Jun"; last SWITCH; }
136 if ( $date[1] =~ /Jul/ ) { $month = "July"; last SWITCH; }
137 if ( $date[1] =~ /Aug/ ) { $month = "August"; last SWITCH; }
138 if ( $date[1] =~ /Sep/ ) { $month = "September"; last SWITCH;
    [all...]

Completed in 76 milliseconds

1 2 3 4 5 6 7 8 91011>>