Searched refs:INSTANCES (Results 1 – 5 of 5) sorted by relevance
/packages/apps/DeskClock/src/com/android/deskclock/provider/ |
D | ClockProvider.java | 51 private static final int INSTANCES = 3; field in ClockProvider 118 sURIMatcher.addURI(ClockContract.AUTHORITY, "instances", INSTANCES); in sURIMatcher.addURI() argument 164 case INSTANCES: in query() 200 case INSTANCES: in getType() 244 case INSTANCES: in insert() 274 case INSTANCES: in delete() 302 if (match == ALARMS || match == INSTANCES || match == ALARMS_ID || match == INSTANCES_ID) { in notifyChange()
|
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
D | CalendarInstancesHelper.java | 81 "(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[] { in updateInstancesLocked() 792 delCount = db.delete(Tables.INSTANCES, where, new String[] { in updateRecurrenceInstancesLocked() 800 delCount = db.delete(Tables.INSTANCES, where, new String[] { in updateRecurrenceInstancesLocked() 918 Cursor cursor = db.query(Tables.INSTANCES, null, null, null, null, null, null); in dumpInstancesTable()
|
D | CalendarAlarmManager.java | 79 + " LEFT OUTER JOIN " + Tables.INSTANCES 87 + " WHERE " + Tables.INSTANCES + "." + Instances.BEGIN + " ISNULL" 336 + " AS myAlarmTime" + "," + Tables.INSTANCES + "." + Instances.EVENT_ID in scheduleNextAlarmLocked() 339 + Reminders.MINUTES + " FROM " + Tables.INSTANCES + " INNER JOIN " + Views.EVENTS in scheduleNextAlarmLocked() 340 + " ON (" + Views.EVENTS + "." + Events._ID + "=" + Tables.INSTANCES + "." in scheduleNextAlarmLocked() 342 + Tables.INSTANCES + "." + Instances.EVENT_ID + "=" + Tables.REMINDERS + "." in scheduleNextAlarmLocked()
|
D | CalendarProvider2.java | 264 CalendarDatabaseHelper.Tables.INSTANCES + " INNER JOIN " + 267 " ON (" + CalendarDatabaseHelper.Tables.INSTANCES + "." 273 CalendarDatabaseHelper.Tables.INSTANCES + " INNER JOIN " + 276 " ON (" + CalendarDatabaseHelper.Tables.INSTANCES + "." 892 case INSTANCES: in queryInternal() 1273 Tables.INSTANCES + "." + Instances._ID /* groupBy */, in handleInstanceSearchQuery() 1389 mDb.execSQL("DELETE FROM " + Tables.INSTANCES + ";"); in acquireInstanceRangeLocked() 1472 case INSTANCES: in getType() 2357 case INSTANCES: in insertInTransaction() 3198 case INSTANCES: in deleteInTransaction() [all …]
|
D | CalendarDatabaseHelper.java | 145 public static final String INSTANCES = "Instances"; field 166 "DELETE FROM " + Tables.INSTANCES + 333 mInstancesInserter = new DatabaseUtils.InsertHelper(db, Tables.INSTANCES); in onOpen() 409 db.execSQL("CREATE TABLE " + Tables.INSTANCES + " (" + in bootstrapDB() 424 db.execSQL("CREATE INDEX instancesStartDayIndex ON " + Tables.INSTANCES + " (" + in bootstrapDB()
|