Searched refs:INSTANCES (Results 1 - 5 of 5) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/provider/
H A DClockProvider.java51 private static final int INSTANCES = 3; field in class:ClockProvider
118 sURIMatcher.addURI(ClockContract.AUTHORITY, "instances", INSTANCES);
164 case INSTANCES:
200 case INSTANCES:
244 case INSTANCES:
274 case INSTANCES:
302 if (match == ALARMS || match == INSTANCES || match == ALARMS_ID || match == INSTANCES_ID) {
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DCalendarAlarmManager.java79 + " LEFT OUTER JOIN " + Tables.INSTANCES
87 + " WHERE " + Tables.INSTANCES + "." + Instances.BEGIN + " ISNULL"
336 + " AS myAlarmTime" + "," + Tables.INSTANCES + "." + Instances.EVENT_ID
339 + Reminders.MINUTES + " FROM " + Tables.INSTANCES + " INNER JOIN " + Views.EVENTS
340 + " ON (" + Views.EVENTS + "." + Events._ID + "=" + Tables.INSTANCES + "."
342 + Tables.INSTANCES + "." + Instances.EVENT_ID + "=" + Tables.REMINDERS + "."
H A DCalendarInstancesHelper.java81 "(SELECT " + Tables.INSTANCES + "." + Instances._ID + " as _id" +
82 " FROM " + Tables.INSTANCES +
85 Tables.EVENTS + "." + Events._ID + "=" + Tables.INSTANCES + "." + Instances.EVENT_ID +
97 "(SELECT " + Tables.INSTANCES + "." + Instances._ID + " as _id" +
98 " FROM " + Tables.INSTANCES +
101 Tables.EVENTS + "." + Events._ID + "=" + Tables.INSTANCES + "." + Instances.EVENT_ID +
645 db.delete(Tables.INSTANCES, Instances.EVENT_ID + "=?", new String[] {
792 delCount = db.delete(Tables.INSTANCES, where, new String[] {
800 delCount = db.delete(Tables.INSTANCES, where, new String[] {
918 Cursor cursor = db.query(Tables.INSTANCES, nul
[all...]
H A DCalendarProvider2.java264 CalendarDatabaseHelper.Tables.INSTANCES + " INNER JOIN " +
267 " ON (" + CalendarDatabaseHelper.Tables.INSTANCES + "."
273 CalendarDatabaseHelper.Tables.INSTANCES + " INNER JOIN " +
276 " ON (" + CalendarDatabaseHelper.Tables.INSTANCES + "."
892 case INSTANCES:
1273 Tables.INSTANCES + "." + Instances._ID /* groupBy */,
1389 mDb.execSQL("DELETE FROM " + Tables.INSTANCES + ";");
1472 case INSTANCES:
2357 case INSTANCES:
3198 case INSTANCES
4563 private static final int INSTANCES = 3; field in class:CalendarProvider2
[all...]
H A DCalendarDatabaseHelper.java145 public static final String INSTANCES = "Instances"; field in interface:CalendarDatabaseHelper.Tables
166 "DELETE FROM " + Tables.INSTANCES +
333 mInstancesInserter = new DatabaseUtils.InsertHelper(db, Tables.INSTANCES);
409 db.execSQL("CREATE TABLE " + Tables.INSTANCES + " (" +
424 db.execSQL("CREATE INDEX instancesStartDayIndex ON " + Tables.INSTANCES + " (" +

Completed in 220 milliseconds