HomeSort by relevance Sort by last modified time
    Searched refs:monthDay (Results 1 - 25 of 40) 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/Source/JavaScriptCore/wtf/
DateMath.h 132 , monthDay(0)
146 , monthDay(inTm.tm_mday)
177 ret.tm_mday = monthDay;
199 monthDay = rhs.monthDay;
217 int monthDay;
  /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/opt/calendar/src/com/android/calendarcommon/
RecurrenceProcessor.java 234 iterator.monthDay,
329 int dotw = (instance.weekDay - instance.monthDay + 36) % 7;
371 if (daySet[index-1] == instance.monthDay) {
378 if (daySet[daySetLength + index] == instance.monthDay) {
440 + "/" + iterator.monthDay
450 day = t.monthDay;
453 + "/" + t.monthDay
470 + "/" + t.monthDay
510 j = generated.monthDay;
830 iterator.monthDay = 1
    [all...]
  /frameworks/base/core/java/android/text/format/
Time.java 74 public int monthDay;
166 this.monthDay = 1;
274 this.monthDay = 0;
536 * time.monthDay += 1; // changes the date to Nov 5, 2007, 12am
543 * after adding or subtracting days or explicitly setting the "monthDay"
581 this.monthDay = that.monthDay;
594 public void set(int second, int minute, int hour, int monthDay, int month, int year) {
599 this.monthDay = monthDay;
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
DateConversion.cpp 74 monthName[t.month], t.monthDay, t.year + 1900);
81 t.monthDay, monthName[t.month], t.year + 1900);
DateConstructor.cpp 114 t.monthDay = (numArgs >= 3) ? JSC::toInt32(doubleArguments[2]) : 1;
194 t.monthDay = (n >= 3) ? JSC::toInt32(doubleArguments[2]) : 1;
DatePrototype.cpp 370 t->monthDay = 0;
504 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)));
665 return JSValue::encode(jsNumber(gregorianDateTime->monthDay));
679 return JSValue::encode(jsNumber(gregorianDateTime->monthDay));
    [all...]
  /frameworks/base/core/java/android/net/
NetworkPolicyManager.java 147 lastMonth.monthDay = 1;
173 nextMonth.monthDay = 1;
194 time.monthDay = 1;
197 time.monthDay = cycleDay;
  /external/webkit/Source/WebCore/html/
DateComponents.h 65 int monthDay() const { return m_monthDay; }
95 // Sets year, month and monthDay.
101 // Sets year, month, monthDay, hour, minute, second and millisecond.
103 // Sets year, month, monthDay, hour, minute, second and millisecond, and adjusts timezone.
DateComponents.cpp 158 static bool withinHTMLDateLimits(int year, int month, int monthDay)
166 return monthDay <= maximumDayInMaximumMonth;
169 static bool withinHTMLDateLimits(int year, int month, int monthDay, int hour, int minute, int second, int millisecond)
177 if (monthDay < maximumDayInMaximumMonth)
179 if (monthDay > maximumDayInMaximumMonth)
181 // (year, month, monthDay) = (maximumYear, maximumMonthInMaximumYear, maximumDayInMaximumMonth)
287 // Parses a timezone part, and adjust year, month, monthDay, hour, minute, second, millisecond.
  /packages/apps/Calendar/src/com/android/calendar/month/
SimpleWeekView.java 266 time.monthDay -= diff;
284 if (time.monthDay == 1) {
296 mDayNumbers[i] = Integer.toString(time.monthDay++);
301 if (time.monthDay == 1) {
302 time.monthDay--;
SimpleDayPickerFragment.java 136 midnight.monthDay++;
446 mFirstDayOfMonth.monthDay = 1;
  /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++;
DatePicker.java 213 public void onSelectedDayChange(CalendarView view, int year, int month, int monthDay) {
214 setDate(year, month, monthDay);
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventView.java 243 endTime.monthDay = startTime.monthDay + 1;
280 public void onDateSet(DatePicker view, int year, int month, int monthDay) {
281 Log.d(TAG, "onDateSet: " + year + " " + month + " " + monthDay);
295 int monthDayDuration = endTime.monthDay - startTime.monthDay;
299 startTime.monthDay = monthDay;
305 endTime.monthDay = monthDay + monthDayDuration
    [all...]
  /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);
  /frameworks/opt/calendar/tests/src/com/android/calendarcommon/
RecurrenceProcessorTest.java     [all...]
  /frameworks/base/telephony/java/android/telephony/
SmsCbMessage.java 437 time.monthDay = day;
  /packages/apps/Settings/src/com/android/settings/net/
NetworkPolicyEditor.java 146 final int cycleDay = time.monthDay;
  /packages/apps/Calendar/src/com/android/calendar/
DayView.java     [all...]
CalendarViewAdapter.java 353 t.monthDay -= diff;
Utils.java 540 recycle.monthDay ++;
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/widget/
CalendarAppWidgetService.java 432 time.monthDay++;
440 time.monthDay++;

Completed in 988 milliseconds

1 2