HomeSort by relevance Sort by last modified time
    Searched refs:month (Results 251 - 275 of 481) sorted by null

<<11121314151617181920

  /packages/apps/Settings/src/com/android/settings/
DateTimeSettings.java 191 public void onDateSet(DatePicker view, int year, int month, int day) {
194 setDate(activity, year, month, day);
245 calendar.get(Calendar.MONTH),
285 calendar.get(Calendar.MONTH),
354 /* package */ static void setDate(Context context, int year, int month, int day) {
358 c.set(Calendar.MONTH, month);
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
DateTest.java 100 static private long getTime(int year, int month, int date, int hour,
102 aCal.set(year, month, date, hour, minute, second);
  /external/chromium/base/
time_unittest.cc 34 EXPECT_EQ(tms.tm_mon + 1, exploded.month);
216 exploded.month = 1;
time_win.cc 186 st.wMonth = exploded.month;
232 exploded->month = st.wMonth;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/dropSiteRootFiles/
index.php 73 $month = substr($timePart, 4, 2); variable
77 $timeStamp = mktime($hour, $minute, 0, $month, $day, $year);
  /external/openssl/crypto/
o_time.c 179 short year, month, day, hour, minute, second, member in struct:vms_vectime
206 result->tm_mon = time_values.month - 1;
  /external/v8/src/
objects-debug.cc 383 CHECK(month()->IsUndefined() || month()->IsSmi() || month()->IsNaN());
393 if (month()->IsSmi()) {
394 int month = Smi::cast(this->month())->value(); local
395 CHECK(0 <= month && month <= 11);
  /external/webkit/Source/JavaScriptCore/runtime/
DateConstructor.cpp 113 t.month = JSC::toInt32(doubleArguments[1]);
193 t.month = JSC::toInt32(doubleArguments[1]);
  /external/wpa_supplicant_8/src/utils/
os.h 52 * @month: Month (1 .. 12)
53 * @day: Day of month (1 .. 31)
64 int os_mktime(int year, int month, int day, int hour, int min, int sec,
72 int month; /* 1..12 */ member in struct:os_tm
  /frameworks/base/core/java/android/text/format/
DateUtils.java 103 * This is not actually a useful month name in all locales.
143 // used for formatting a start and end date that fall in the same month.
264 * Return a localized string for the month of the year.
265 * @param month One of {@link Calendar#JANUARY Calendar.JANUARY},
271 * @return Localized month of the year.
275 public static String getMonthString(int month, int abbrev) {
286 return names[month];
625 && thenCal.get(Calendar.MONTH) == nowCal.get(Calendar.MONTH)
642 int thenMonth = time.month;
    [all...]
  /libcore/luni/src/main/java/libcore/util/
ZoneInfo.java 176 public int getOffset(int era, int year, int month, int day, int dayOfWeek, int millis) {
194 calc += mlen[month] * MILLISECONDS_PER_DAY;
  /packages/apps/Contacts/src/com/android/contacts/util/
DateUtils.java 114 private static final Calendar getUtcDate(int year, int month, int dayOfMonth) {
118 calendar.set(Calendar.MONTH, month);
191 if (dateFormatOrder[i] == DateFormat.MONTH) {
202 * determine whether the month field should be displayed before the day field, and returns
245 final int targetMonth = target.get(Calendar.MONTH);
  /external/icu4c/test/intltest/
tsdtfmsy.cpp 40 const UnicodeString* month; local
45 month=symbol->getMonths(cnt);
51 logln(month[i]);
70 const UnicodeString * month = symbol->getMonths(cnt,context[i],width[j]); local
75 logln(month[k]);
  /packages/apps/Exchange/exchange2/src/com/android/exchange/utility/
CalendarUtilities.java 238 int month; field in class:CalendarUtilities.TimeZoneDate
254 setWord(bytes, offset + MSFT_SYSTEMTIME_MONTH, rrule.month);
271 setWord(bytes, offset + MSFT_SYSTEMTIME_MONTH, cal.get(Calendar.MONTH) + 1);
293 // MSFT month = 0 means no daylight time
299 tzd.month = num -1;
333 testCalendar.set(GregorianCalendar.MONTH, tzd.month);
411 int month; field in class:CalendarUtilities.RRule
415 * Create an RRULE based on month and date
416 * @param _month the month (1 = JAN, 12 = DEC
462 int month = calendar.get(Calendar.MONTH); local
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
httpcommon.cc 362 char month[4], zone[6]; local
363 memset(month, 0, sizeof(month));
367 &tval.tm_mday, month, &tval.tm_year,
371 switch (toupper(month[2])) {
372 case 'N': tval.tm_mon = (month[1] == 'A') ? 0 : 5; break;
374 case 'R': tval.tm_mon = (month[0] == 'M') ? 2 : 3; break;
  /external/icu4c/i18n/
rbtz.cpp 347 RuleBasedTimeZone::getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
352 if (month < UCAL_JANUARY || month > UCAL_DECEMBER) {
356 return getOffset(era, year, month, day, dayOfWeek, millis,
357 Grego::monthLength(year, month), status);
362 RuleBasedTimeZone::getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
374 UDate time = (UDate)Grego::fieldsToDay(year, month, day) * U_MILLIS_PER_DAY + millis;
ucal.cpp 391 int32_t month,
398 ((Calendar*)cal)->set(year, month, date);
405 int32_t month,
414 ((Calendar*)cal)->set(year, month, date, hour, minute, second);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DatePicker.java 41 * A view for selecting a month / year / day based on a calendar like layout.
79 * @param monthOfYear The month that was set (0-11) for compatibility
81 * @param dayOfMonth The day of the month that was set.
113 mMonthPicker = (NumberPicker) findViewById(R.id.month);
119 * If the user is in a locale where the month names are numeric,
120 * use just the number instead of the "month" character for
139 /* We display the month 1-12 but store it 0-11 so always
143 // Adjust max day of the month
187 init(cal.get(Calendar.YEAR), cal.get(Calendar.MONTH), cal.get(Calendar.DAY_OF_MONTH), null);
249 } else if ((c == DateFormat.MONTH || c == 'L') && !didMonth)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/datepicker/
DatePicker.java 48 * A view for selecting a month / year / day based on a calendar like layout.
89 * @param monthOfYear The month that was set (0-11) for compatibility
91 * @param dayOfMonth The day of the month that was set.
122 mMonthPicker = (NumberPicker) findViewById(R.id.month);
128 * If the user is in a locale where the month names are numeric,
129 * use just the number instead of the "month" character for
149 /* We display the month 1-12 but store it 0-11 so always
153 // Adjust max day of the month
198 init(cal.get(Calendar.YEAR), cal.get(Calendar.MONTH), cal.get(Calendar.DAY_OF_MONTH), null);
260 } else if ((c == DateFormat.MONTH || c == 'L') && !didMonth)
    [all...]
  /bionic/libc/kernel/common/linux/
telephony.h 65 char month[3]; member in struct:__anon573
  /development/ndk/platforms/android-3/include/linux/
telephony.h 57 char month[3]; member in struct:__anon1205
  /development/samples/Wiktionary/src/com/example/android/wiktionary/
WordWidget.java 79 // Pick out month names from resources
83 // Find current month and day
89 monthNames[today.month], today.monthDay);
  /development/samples/WiktionarySimple/src/com/example/android/simplewiktionary/
WordWidget.java 68 // Pick out month names from resources
72 // Find current month and day
78 monthNames[today.month], today.monthDay);
  /external/chromium/chrome/browser/chromeos/
version_loader.cc 172 ctime.month,
  /external/chromium/chrome/browser/history/
history_publisher_win.cc 73 system_time.wMonth = exploded.month;

Completed in 1051 milliseconds

<<11121314151617181920