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

1 2 3 4 56 7 8 91011>>

  /external/icu4c/i18n/unicode/
dtfmtsym.h 234 * Gets month strings. For example: "January", "February", etc.
236 * @return the month strings. (DateFormatSymbols retains ownership.)
242 * Sets month strings. For example: "January", "February", etc.
244 * @param months the new month strings. (not adopted; caller retains ownership)
251 * Gets short month strings. For example: "Jan", "Feb", etc.
254 * @return the short month strings. (DateFormatSymbols retains ownership.)
260 * Sets short month strings. For example: "Jan", "Feb", etc.
262 * @param shortMonths the new short month strings. (not adopted; caller retains ownership)
289 * Gets month strings by width and context. For example: "January", "February", etc.
293 * @return the month strings. (DateFormatSymbols retains ownership.
    [all...]
  /bionic/libc/include/
time.h 49 int tm_mday; /* day of the month */
50 int tm_mon; /* month */
85 const char * month[12]; member in struct:strftime_locale
  /external/bluetooth/glib/tests/
date-test.c 86 TEST("Returned month is January", g_date_get_month(d) == G_DATE_JANUARY);
90 TEST("Bad month is invalid", !g_date_valid_month(G_DATE_BAD_MONTH));
91 TEST("Month 13 is invalid", !g_date_valid_month(13));
122 g_date_strftime(buf,100,"1 second into the Unix epoch it was a %A, in the month of %B, %x\n", d);
128 g_date_strftime(buf,100,"Our \"Julian\" epoch begins on a %A, in the month of %B, %x\n",
183 TEST("Sensible number of days in month", (dim > 0 && dim < 32));
185 TEST("Month between 1 and 12 is valid", g_date_valid_month(m));
216 TEST("Month accessor works", g_date_get_month(d) == m);
218 TEST("Day of month accessor works", g_date_get_day(d) == day);
334 TEST("Forward days then backward days returns us to current month",
    [all...]
  /external/icu4c/i18n/
basictz.cpp 151 int32_t year, month, dom, dow, doy, mid; local
156 year, month, dom, dow, doy, mid);
157 int32_t weekInMonth = Grego::dayOfWeekInMonth(year, month, dom);
159 DateTimeRule *dtr = new DateTimeRule(month, weekInMonth, dow, mid, DateTimeRule::WALL_TIME);
175 year, month, dom, dow, doy, mid);
176 weekInMonth = Grego::dayOfWeekInMonth(year, month, dom);
178 dtr = new DateTimeRule(month, weekInMonth, dow, mid, DateTimeRule::WALL_TIME);
205 year, month, dom, dow, doy, mid);
206 weekInMonth = Grego::dayOfWeekInMonth(year, month, dom);
207 dtr = new DateTimeRule(month, weekInMonth, dow, mid, DateTimeRule::WALL_TIME)
450 int32_t year, month, dom, dow, doy, mid; local
    [all...]
  /dalvik/libcore/sql/src/main/java/java/sql/
Date.java 24 * format only deals with year, month and day values. There are no values for
41 * month and day.
48 * the month, specified as a number with 0 = January. Must be in
51 * the day in the month. Must be in the range {@code [1,31]}.
231 int month = Integer.parseInt(dateString.substring(firstIndex + 1, local
235 return new Date(year - 1900, month - 1, day);
  /frameworks/base/core/java/com/android/internal/http/
HttpDateTime.java 55 * Mon can be the full name of the month.
89 int month = Calendar.JANUARY; local
96 month = getMonth(rfcMatcher.group(2));
102 month = getMonth(ansicMatcher.group(1));
114 month = Calendar.JANUARY;
120 month, year);
  /external/webkit/WebCore/loader/
FTPDirectoryDocument.cpp 177 static bool wasLastDayOfMonth(int year, int month, int day)
180 if (month < 0 || month > 11)
183 if (month == 2) {
195 return lastDays[month] == day;
246 int month = fileTime.tm_mon; local
247 if (month < 0 || month > 11)
248 month = 12;
253 dateString = String::format("%s %i, %i", months[month], fileTime.tm_mday, fileTime.tm_year)
    [all...]
  /packages/apps/Email/src/com/android/exchange/utility/
CalendarUtilities.java 182 int month; field in class:CalendarUtilities.TimeZoneDate
193 setWord(bytes, offset + MSFT_SYSTEMTIME_MONTH, rrule.month);
210 setWord(bytes, offset + MSFT_SYSTEMTIME_MONTH, cal.get(Calendar.MONTH) + 1);
232 // MSFT month = 0 means no daylight time
238 tzd.month = num -1;
272 testCalendar.set(GregorianCalendar.MONTH, tzd.month);
349 int month; field in class:CalendarUtilities.RRule
353 * Create an RRULE based on month and date
354 * @param _month the month (1 = JAN, 12 = DEC
400 int month = calendar.get(Calendar.MONTH); local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
MonthView.java 96 // This Time object is used to set the time for the other Month view.
163 * The first Julian day of the current month.
234 mCursor = new DayOfMonthCursor(mViewCalendar.year, mViewCalendar.month,
290 // Switch to a different month
294 time.month += 1;
296 time.month -= 1;
444 // Get the date for the beginning of the month
615 // column are in a different month from the current one, then the
617 // of days in this month, but that is okay because the normalize()
618 // method will adjust the month (and year) if necessary
915 int month = mCursor.getMonth(); local
    [all...]
  /cts/tests/tests/text/src/android/text/format/cts/
DateFormatTest.java 44 private static final int MONTH = 11;
139 Date date = new Date(YEAR_FROM_1900, MONTH, DAY, HOUR, MINUTE);
168 Calendar calendar = new GregorianCalendar(YEAR, MONTH, DAY);
171 Date formatDate = new Date(YEAR_FROM_1900, MONTH, DAY);
  /external/clearsilver/cgi/
date.c 33 * prefix.mon - numeric month
138 int year = 0, month = 0, day = 0, hour = 0, min = 0, sec = 0, x; local
175 month = find_month(mname);
179 if((x = lms->tm_mon - month))
  /external/icu4c/samples/datecal/
cal.cpp 35 printf("year: %d, month: %d (%d in the implementation), day: %d\n",
ccal.c 37 printf("year: %d, month: %d (%d in the implementation), day: %d\n",
  /external/icu4c/test/compat/
readme.txt 32 tzone.pl year month day
  /external/icu4c/test/intltest/
calcasts.h 31 int32_t month; member in struct:CalendarCaseTest::TestCase
tzrulets.h 46 UDate getUTCMillis(int32_t year, int32_t month, int32_t dom,
  /external/icu4c/test/testmap/
testmap.c 30 int32_t month = -1, year = -1; local
  /external/opencore/fileformats/mp4/parser/src/
movieheaderatom.cpp 150 int32 month = 0; local
178 month = (i + 1);
199 month = (i + 1);
229 year, month, numDays, numHrs,
  /external/wpa_supplicant/
os_unix.c 45 int os_mktime(int year, int month, int day, int hour, int min, int sec,
52 if (year < 1970 || month < 1 || month > 12 || day < 1 || day > 31 ||
59 tm.tm_mon = month - 1;
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
os_unix.c 45 int os_mktime(int year, int month, int day, int hour, int min, int sec,
52 if (year < 1970 || month < 1 || month > 12 || day < 1 || day > 31 ||
59 tm.tm_mon = month - 1;
  /frameworks/base/core/tests/coretests/src/android/util/
MonthDisplayHelperTest.java 190 // last day of previous month
193 // first day of next month
196 // first day in month
199 // last day in month
  /frameworks/base/docs/html/guide/tutorials/views/
hello-datepicker.jd 6 <p>A {@link android.widget.DatePicker} is a widget that allows the user to select a month, day and year.</p>
68 mMonth = c.get(Calendar.MONTH);
83 instance of {@link java.util.Calendar} and get the current year, month and day. Finally, we call
111 // Month is 0 based so add 1
  /frameworks/base/media/libdrm/mobile1/include/objmng/
drm_time.h 46 uint16_t month; member in struct:__db_system_time_
  /frameworks/base/media/libdrm/mobile1/src/objmng/
drm_time.c 47 time_ptr->month = tm_t->tm_mon + 1;
  /system/core/include/cutils/
tztime.h 34 const char *month[12]; /* long names */ member in struct:strftime_locale

Completed in 79 milliseconds

1 2 3 4 56 7 8 91011>>