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

1 2 3

  /packages/apps/Calendar/tests/src/com/android/calendar/alerts/
Utils.java 22 public static long createTimeInMillis(int second, int minute, int hour, int monthDay,
25 t.set(second, minute, hour, monthDay, month, year);
  /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...]
  /frameworks/base/core/java/android/text/format/
Time.java 76 public int monthDay;
171 this.monthDay = 1;
279 this.monthDay = 0;
516 * time.monthDay += 1; // changes the date to Nov 5, 2007, 12am
523 * after adding or subtracting days or explicitly setting the "monthDay"
561 this.monthDay = that.monthDay;
574 public void set(int second, int minute, int hour, int monthDay, int month, int year) {
579 this.monthDay = monthDay;
    [all...]
DateUtils.java 643 int thenMonthDay = time.monthDay;
648 && (thenMonthDay == time.monthDay);
    [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 45 time.monthDay = 32;
53 assertEquals(expectedDate, time.monthDay);
57 time.monthDay = 32;
60 assertEquals(expectedDate, time.monthDay);
80 assertEquals(date, time.monthDay);
93 assertEquals(time.monthDay, anotherTime.monthDay);
117 assertEquals(time.monthDay, anotherTime.monthDay);
333 local.monthDay += test.offset
    [all...]
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
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...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
TimeTest.java 36 assertEquals(t.monthDay, t2.monthDay);
51 assertEquals(t.monthDay, t2.monthDay);
63 assertEquals(t.monthDay, 1);
72 assertEquals(t.monthDay, 1);
92 assertEquals(0, t.monthDay);
137 assertEquals(13, t.monthDay);
145 assertEquals(13, t.monthDay);
163 assertEquals(13, t.monthDay);
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTime.java 36 time.monthDay = 1;
50 time.monthDay = other.monthDay;
92 time.monthDay += diff;
123 public void set(int second, int minute, int hour, int monthDay, int month, int year) {
127 time.monthDay = monthDay;
137 public void set(int monthDay, int month, int year) {
138 set(0, 0, 0, monthDay, month, year);
151 time.monthDay = 0
    [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;
  /frameworks/base/core/java/android/net/
NetworkPolicyManager.java 174 lastMonth.monthDay = 1;
204 nextMonth.monthDay = 1;
225 time.monthDay = 1;
228 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/tests/src/com/android/calendar/widget/
CalendarAppWidgetServiceTest.java 83 time.monthDay += 1;
151 time.monthDay += 5;
155 time.monthDay += 1;
  /packages/apps/Calendar/src/com/android/calendar/month/
SimpleWeekView.java 269 time.monthDay -= diff;
287 if (time.monthDay == 1) {
300 mDayNumbers[i] = Integer.toString(time.monthDay++);
305 if (time.monthDay == 1) {
306 time.monthDay--;
MonthListView.java 165 mTempTime.monthDay = 1;
SimpleDayPickerFragment.java 135 midnight.monthDay++;
444 mFirstDayOfMonth.monthDay = 1;
  /frameworks/opt/telephony/src/java/android/telephony/
SmsCbEtwsInfo.java 160 time.monthDay = day;
  /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);
  /frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
RecurrenceProcessorTest.java     [all...]
  /packages/apps/Calendar/tests/src/com/android/calendar/
UtilsTests.java 140 private static long createTimeInMillis(int second, int minute, int hour, int monthDay,
142 return createTimeInMillis(second, minute, hour, monthDay, month, year,
146 private static long createTimeInMillis(int second, int minute, int hour, int monthDay,
149 t.set(second, minute, hour, monthDay, month, year);
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventView.java 275 endTime.monthDay = startTime.monthDay + 1;
338 public void onDateSet(DatePickerDialog view, int year, int month, int monthDay) {
339 Log.d(TAG, "onDateSet: " + year + " " + month + " " + monthDay);
353 int monthDayDuration = endTime.monthDay - startTime.monthDay;
357 startTime.monthDay = monthDay;
363 endTime.monthDay = monthDay + monthDayDuration
    [all...]

Completed in 348 milliseconds

1 2 3