HomeSort by relevance Sort by last modified time
    Searched refs:monthDay (Results 1 - 25 of 29) sorted by null

1 2

  /frameworks/base/core/tests/coretests/src/android/text/format/
TimeTest.java 35 // + t.month + '-' + t.monthDay
188 local.monthDay += test.offset;
191 || local.monthDay != test.day2 || local.hour != test.hour2
196 local.year, local.month, local.monthDay, local.hour, local.minute);
205 local.monthDay += test.offset;
209 || local.monthDay != test.day2 || local.hour != test.hour2
214 local.year, local.month, local.monthDay, local.hour, local.minute);
232 || local.monthDay != test.day2 || local.hour != test.hour2
238 local.year, local.month, local.monthDay, local.hour, local.minute,
254 || local.monthDay != test.day2 || local.hour != test.hour
    [all...]
  /external/webkit/JavaScriptCore/wtf/
DateMath.h 116 , monthDay(0)
136 , monthDay(inTm.tm_mday)
167 ret.tm_mday = monthDay;
189 monthDay = rhs.monthDay;
207 int monthDay;
DateMath.cpp 325 int monthday = monthToDayInYear(month, isLeapYear(year)); local
327 return yearday + monthday + day - 1;
939 double day = dateToDaysFrom1970(t.year + 1900, t.month, t.monthDay);
969 tm.monthDay = dayInMonthFromDayInYear(tm.yearDay, isLeapYear(year));
  /cts/tests/tests/text/src/android/text/format/cts/
TimeTest.java 81 time.monthDay = 32;
89 assertEquals(expectedDate, time.monthDay);
93 time.monthDay = 32;
96 assertEquals(expectedDate, time.monthDay);
133 assertEquals(date, time.monthDay);
146 assertEquals(time.monthDay, anotherTime.monthDay);
192 assertEquals(time.monthDay, anotherTime.monthDay);
399 local.monthDay += test.offset
    [all...]
  /frameworks/base/core/java/android/text/format/
Time.java 68 public int monthDay;
160 this.monthDay = 1;
268 this.monthDay = 0;
511 * time.monthDay += 1; // changes the date to Nov 5, 2007, 12am
518 * after adding or subtracting days or explicitly setting the "monthDay"
556 this.monthDay = that.monthDay;
569 public void set(int second, int minute, int hour, int monthDay, int month, int year) {
574 this.monthDay = monthDay;
    [all...]
DateUtils.java     [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
RecurrenceProcessor.java 218 iterator.monthDay,
322 + "/" + iterator.monthDay
332 day = t.monthDay;
335 + "/" + t.monthDay
352 + "/" + t.monthDay
392 j = generated.monthDay;
709 iterator.monthDay = 1;
758 int iteratorDay = iterator.monthDay;
787 dayIndex = iterator.monthDay - dow;
    [all...]
CalendarAppWidgetService.java 317 time.monthDay++;
385 int dateNumber = time.monthDay;
392 views.setTextViewText(R.id.day_of_month, Integer.toString(time.monthDay));
CalendarDatabaseHelper.java     [all...]
  /external/webkit/JavaScriptCore/runtime/
DateConversion.cpp 69 monthName[t.month], t.monthDay, t.year + 1900);
76 t.monthDay, monthName[t.month], t.year + 1900);
DateConstructor.cpp 106 t.monthDay = (numArgs >= 3) ? args.at(2).toInt32(exec) : 1;
176 t.monthDay = (n >= 3) ? args.at(2).toInt32(exec) : 1;
DatePrototype.cpp 336 t->monthDay = 0;
464 snprintf(buffer, sizeof(buffer) - 1, "%04d-%02d-%02dT%02d:%02d:%02d.%03dZ", 1900 + gregorianDateTime->year, gregorianDateTime->month + 1, gregorianDateTime->monthDay, gregorianDateTime->hour, gregorianDateTime->minute, gregorianDateTime->second, static_cast<int>(fmod(thisDateObj->internalNumber(), 1000)));
613 return jsNumber(exec, gregorianDateTime->monthDay);
626 return jsNumber(exec, gregorianDateTime->monthDay);
    [all...]
  /external/webkit/WebCore/html/
DateComponents.h 66 int monthDay() const { return m_monthDay; }
96 // Sets year, month and monthDay.
102 // Sets year, month, monthDay, hour, minute, second and millisecond.
104 // Sets year, month, monthDay, hour, minute, second and millisecond, and adjusts timezone.
DateComponents.cpp 145 static bool beforeGregorianStartDate(int year, int month, int monthDay)
149 || year == gregorianStartYear && month == gregorianStartMonth && monthDay < gregorianStartDay;
241 // Parses a timezone part, and adjust year, month, monthDay, hour, minute, second, millisecond.
  /packages/apps/Calendar/src/com/android/calendar/
MonthView.java 249 mViewCalendar.monthDay = 1;
256 mViewCalendar.monthDay, mParentActivity.getStartDay());
465 monthStart.monthDay = 1;
705 // monthDay might be negative or it might be greater than the number
708 time.monthDay = 7 * row + column - c.getOffset() + 1;
793 if (dayOfBox == mToday.monthDay && mCursor.getYear() == mToday.year
820 // Draw the cell contents (excluding monthDay number)
    [all...]
EditEvent.java 322 endTime.monthDay = startTime.monthDay + 1;
356 public void onDateSet(DatePicker view, int year, int month, int monthDay) {
370 int monthDayDuration = endTime.monthDay - startTime.monthDay;
374 startTime.monthDay = monthDay;
380 endTime.monthDay = monthDay + monthDayDuration;
390 endTime.monthDay = monthDay
    [all...]
CalendarView.java 671 mBaseDate.monthDay -= diff;
682 mFirstDate = mBaseDate.monthDay;
689 mBaseDate.monthDay += mNumDays - 1;
691 mBaseDate.monthDay -= mNumDays - 1;
    [all...]
Event.java 276 local.monthDay += days;
  /frameworks/base/core/java/android/widget/
DateTimeView.java 99 mTime = new Date(t.year-1900, t.month, t.monthDay, t.hour, t.minute, 0);
124 t.monthDay++;
  /development/samples/Wiktionary/src/com/example/android/wiktionary/
WordWidget.java 89 monthNames[today.month], today.monthDay);
  /development/samples/WiktionarySimple/src/com/example/android/simplewiktionary/
WordWidget.java 78 monthNames[today.month], today.monthDay);
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
RecurrenceProcessorTest.java     [all...]
  /frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/cdma/sms/
CdmaSmsTest.java 289 assertEquals(bearerData.msgCenterTimeStamp.monthDay, 1);
297 assertEquals(bearerData.deferredDeliveryTimeAbsolute.monthDay, 18);
336 assertEquals(bearerData.msgCenterTimeStamp.monthDay, 1);
344 assertEquals(bearerData.deferredDeliveryTimeAbsolute.monthDay, 18);
    [all...]
  /external/webkit/WebCore/bridge/qt/
qt_runtime.cpp 463 ret = QDateTime(QDate(gdt.year + 1900, gdt.month + 1, gdt.monthDay), QTime(gdt.hour, gdt.minute, gdt.second), Qt::UTC);
466 ret = QDate(gdt.year + 1900, gdt.month + 1, gdt.monthDay);
477 ret = QDateTime(QDate(gdt.year + 1900, gdt.month + 1, gdt.monthDay), QTime(gdt.hour, gdt.minute, gdt.second), Qt::UTC);
480 ret = QDate(gdt.year + 1900, gdt.month + 1, gdt.monthDay);
832 dt.monthDay = date.day();
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
SmsMessage.java 592 time.monthDay = day;
    [all...]

Completed in 603 milliseconds

1 2