OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CalendarAppWidgetService
(Results
1 - 4
of
4
) sorted by null
/packages/apps/Calendar/tests/src/com/android/calendar/widget/
CalendarAppWidgetServiceTest.java
21
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
.INDEX_ALL_DAY] = new Integer(allDay)
[
all
...]
/packages/apps/Calendar/src/com/android/calendar/widget/
CalendarAppWidgetModel.java
256
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
.INDEX_START_DAY)
[
all
...]
CalendarAppWidgetProvider.java
72
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);
CalendarAppWidgetService.java
53
public class
CalendarAppWidgetService
extends RemoteViewsService {
Completed in 36 milliseconds