HomeSort by relevance Sort by last modified time
    Searched defs:month (Results 1 - 25 of 155) sorted by null

1 2 3 4 5 6 7

  /frameworks/base/media/libdrm/mobile1/include/objmng/
drm_time.h 46 uint16_t month; member in struct:__db_system_time_
  /external/apache-harmony/support/src/test/java/tests/support/
Support_TimeZone.java 47 * let's assume this timezone has daylight savings from the 4th month till
48 * the 10th month of the year to ame things simple.
57 int month = cal.get(Calendar.MONTH); local
59 if (month > 4 && month < 10) {
  /external/icu4c/test/intltest/
calcasts.h 31 int32_t month; member in struct:CalendarCaseTest::TestCase
  /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.
  /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
  /system/core/include/cutils/
tztime.h 34 const char *month[12]; /* long names */ member in struct:strftime_locale
  /external/chromium/net/ftp/
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);
ftp_directory_listing_parser_unittest.h 25 int month; member in struct:net::FtpDirectoryListingParserTest::SingleLineTestData
55 EXPECT_EQ(test_case.month, time_exploded.month);
66 mock_current_time_exploded.month = 11;
ftp_util_unittest.cc 114 const char* month; member in struct:__anon3572::__anon3576
158 kTestCases[i].month, kTestCases[i].day,
163 UTF8ToUTF16(kTestCases[i].month), UTF8ToUTF16(kTestCases[i].day),
169 EXPECT_EQ(kTestCases[i].expected_month, time_exploded.month);
  /external/icu4c/i18n/
coptccal.cpp 78 int32_t eyear, month, day, era, year; local
79 jdToCE(julianDay, getJDEpochOffset(), eyear, month, day);
92 internalSet(UCAL_MONTH, month);
94 internalSet(UCAL_DAY_OF_YEAR, (30 * month) + day);
169 CopticCalendar::copticToJD(int32_t year, int32_t month, int32_t day)
171 return CECalendar::ceToJD(year, month, day, COPTIC_JD_EPOCH_OFFSET);
ethpccal.cpp 104 int32_t eyear, month, day, era, year; local
105 jdToCE(julianDay, getJDEpochOffset(), eyear, month, day);
123 internalSet(UCAL_MONTH, month);
125 internalSet(UCAL_DAY_OF_YEAR, (30 * month) + day);
206 EthiopicCalendar::ethiopicToJD(int32_t year, int32_t month, int32_t date)
208 return ceToJD(year, month, date, JD_EPOCH_OFFSET_AMETE_MIHRET);
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/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;
  /external/v8/test/mjsunit/
to_number_order.js 60 var month = { valueOf: function() { x += 2; return 2; } };
68 new Date(year, month, date, hours, minutes, seconds, ms);
73 Date(year, month, date, hours, minutes, seconds, ms);
77 Date.UTC(year, month, date, hours, minutes, seconds, ms);
118 new Date().setMonth(month, date, hours, minutes, seconds, ms);
122 new Date().setUTCMonth(month, date, hours, minutes, seconds, ms);
126 new Date().setFullYear(year, month, date, hours, minutes, seconds, ms);
130 new Date().setUTCFullYear(year, month, date, hours, minutes, seconds, ms);
  /libcore/luni/src/main/java/java/sql/
Date.java 24 * format only deals with year, month and day values. There are no values for
42 * month and day.
49 * the month, specified as a number with 0 = January. Must be in
52 * the day in the month. Must be in the range {@code [1,31]}.
230 int month = Integer.parseInt(dateString.substring(firstIndex + 1, local
234 return new Date(year - 1900, month - 1, day);
  /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/chromium/chrome/browser/history/
text_database.cc 85 // Identifiers are intended to be a combination of the year and month, for
114 int year, month; local
116 base::StringToInt(suffix.begin() + 5, suffix.begin() + 7, &month);
118 return year * 100 + month;
  /external/nist-sip/java/gov/nist/javax/sip/parser/
HeaderParser.java 90 String month = lexer.ttoken().toLowerCase(); local
91 if (month.equals("jan")) {
92 retval.set(Calendar.MONTH, Calendar.JANUARY);
93 } else if (month.equals("feb")) {
94 retval.set(Calendar.MONTH, Calendar.FEBRUARY);
95 } else if (month.equals("mar")) {
96 retval.set(Calendar.MONTH, Calendar.MARCH);
97 } else if (month.equals("apr")) {
98 retval.set(Calendar.MONTH, Calendar.APRIL);
99 } else if (month.equals("may"))
    [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/base/core/java/android/app/
DatePickerDialog.java 40 private static final String MONTH = "month";
54 * @param monthOfYear The month that was set (0-11) for compatibility
56 * @param dayOfMonth The day of the month that was set.
65 * @param monthOfYear The initial month of the dialog.
81 * @param monthOfYear The initial month of the dialog.
116 int month, int day) {
117 mDatePicker.init(year, month, day, null);
133 * @param monthOfYear The date month.
134 * @param dayOfMonth The date day of month
153 int month = savedInstanceState.getInt(MONTH); local
    [all...]
  /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);
  /libcore/luni/src/main/java/java/util/
Grego.java 66 * Return the number of days in the given month.
68 * @param month 0-based month, with 0==Jan
69 * @return the number of days in the given month
71 public static final int monthLength(int year, int month) {
72 return MONTH_LENGTH[month + (isLeapYear(year) ? 12 : 0)];
76 * Return the length of a previous month of the Gregorian calendar.
78 * @param month 0-based month, with 0==Jan
79 * @return the number of days in the month previous to the given month
143 int month = (12 * (dayOfYear + correction) + 6) \/ 367; \/\/ zero-based month local
    [all...]
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/datetime/
DateTime.java 35 private final int month; field in class:DateTime
42 public DateTime(String yearString, int month, int day, int hour, int minute, int second, int timeZone) {
44 this.date = convertToDate(year, month, day, hour, minute, second, timeZone);
45 this.month = month;
69 public static Date convertToDate(int year, int month, int day, int hour, int minute, int second, int timeZone) {
71 c.set(year, month - 1, day, hour, minute, second);
91 return month;
  /bionic/libc/tzcode/
strftime.c 50 const char * month[MONSPERYEAR]; member in struct:lc_time_T
233 "?" : locale->month[t->tm_mon],
  /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,

Completed in 6856 milliseconds

1 2 3 4 5 6 7