Searched refs:CalendarAppWidgetService (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Calendar/tests/src/com/android/calendar/widget/
H A DCalendarAppWidgetServiceTest.java21 import com.android.calendar.widget.CalendarAppWidgetService.CalendarFactory;
40 private static final String TAG = "CalendarAppWidgetService";
59 // MatrixCursor cursor = new MatrixCursor(CalendarAppWidgetService.EVENT_PROJECTION, 0);
67 // MarkedEvents events = CalendarAppWidgetService.buildMarkedEvents(cursor, null, now);
68 // CalendarAppWidgetModel actual = CalendarAppWidgetService.getAppWidgetModel(
101 MatrixCursor cursor = new MatrixCursor(CalendarAppWidgetService.EVENT_PROJECTION, 0);
131 MatrixCursor cursor = new MatrixCursor(CalendarAppWidgetService.EVENT_PROJECTION, 0);
170 CalendarAppWidgetModel actual = CalendarAppWidgetService.CalendarFactory.buildAppWidgetModel(
178 Object[] row = new Object[CalendarAppWidgetService.EVENT_PROJECTION.length];
179 row[CalendarAppWidgetService
[all...]
/packages/apps/Calendar/src/com/android/calendar/widget/
H A DCalendarAppWidgetModel.java256 mMaxJulianDay = mTodayJulianDay + CalendarAppWidgetService.MAX_DAYS - 1;
266 new ArrayList<LinkedList<RowInfo>>(CalendarAppWidgetService.MAX_DAYS);
267 for (int i = 0; i < CalendarAppWidgetService.MAX_DAYS; i++) {
281 final long eventId = cursor.getLong(CalendarAppWidgetService.INDEX_EVENT_ID);
282 final boolean allDay = cursor.getInt(CalendarAppWidgetService.INDEX_ALL_DAY) != 0;
283 long start = cursor.getLong(CalendarAppWidgetService.INDEX_BEGIN);
284 long end = cursor.getLong(CalendarAppWidgetService.INDEX_END);
285 final String title = cursor.getString(CalendarAppWidgetService.INDEX_TITLE);
287 cursor.getString(CalendarAppWidgetService.INDEX_EVENT_LOCATION);
290 final int startDay = cursor.getInt(CalendarAppWidgetService
[all...]
H A DCalendarAppWidgetProvider.java72 Intent service = new Intent(context, CalendarAppWidgetService.class);
109 * actually fires an intent to start {@link CalendarAppWidgetService} as a
113 * @param context Context to use when starting {@link CalendarAppWidgetService}.
125 Intent updateIntent = new Intent(context, CalendarAppWidgetService.class);
H A DCalendarAppWidgetService.java53 public class CalendarAppWidgetService extends RemoteViewsService { class in inherits:RemoteViewsService

Completed in 67 milliseconds