Home
last modified time | relevance | path

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

/packages/apps/DeskClock/src/com/android/deskclock/provider/
DClockProvider.kt50 private const val INSTANCES = 3 constant
121 sURIMatcher.addURI(ClockContract.AUTHORITY, "instances", INSTANCES)
167 INSTANCES -> qb.setTables(INSTANCES_TABLE_NAME) in query()
195 INSTANCES -> "vnd.android.cursor.dir/instances" in getType()
236 INSTANCES -> db.insert(INSTANCES_TABLE_NAME, null, initialValues) in insert()
262 INSTANCES -> count = in delete()
288 if (match == ALARMS || match == INSTANCES || match == ALARMS_ID || match == INSTANCES_ID) { in notifyChange()
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
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[] { 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()
DCalendarAlarmManager.java69 + " LEFT OUTER JOIN " + Tables.INSTANCES
77 + " WHERE " + Tables.INSTANCES + "." + Instances.BEGIN + " ISNULL"
316 + " AS myAlarmTime" + "," + Tables.INSTANCES + "." + Instances.EVENT_ID in scheduleNextAlarmLocked()
319 + Reminders.MINUTES + " FROM " + Tables.INSTANCES + " INNER JOIN " + Views.EVENTS in scheduleNextAlarmLocked()
320 + " ON (" + Views.EVENTS + "." + Events._ID + "=" + Tables.INSTANCES + "." in scheduleNextAlarmLocked()
322 + Tables.INSTANCES + "." + Instances.EVENT_ID + "=" + Tables.REMINDERS + "." in scheduleNextAlarmLocked()
DCalendarProvider2.java282 CalendarDatabaseHelper.Tables.INSTANCES + " INNER JOIN " +
285 " ON (" + CalendarDatabaseHelper.Tables.INSTANCES + "."
291 CalendarDatabaseHelper.Tables.INSTANCES + " INNER JOIN " +
294 " ON (" + CalendarDatabaseHelper.Tables.INSTANCES + "."
1079 case INSTANCES: in queryInternal()
1476 Tables.INSTANCES + "." + Instances._ID /* groupBy */, in handleInstanceSearchQuery()
1592 mDb.execSQL("DELETE FROM " + Tables.INSTANCES + ";"); in acquireInstanceRangeLocked()
1675 case INSTANCES: in getType()
2632 case INSTANCES: in insertInTransactionInner()
3486 case INSTANCES: in deleteInTransactionInner()
[all …]
DCalendarDatabaseHelper.java145 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()