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

/packages/apps/DeskClock/src/com/android/deskclock/provider/
H A DClockProvider.java36 private static final int INSTANCES = 3; field in class:ClockProvider
45 sURLMatcher.addURI(ClockContract.AUTHORITY, "instances", INSTANCES);
76 case INSTANCES:
117 case INSTANCES:
172 case INSTANCES:
206 case INSTANCES:
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DCalendarAlarmManager.java80 + " LEFT OUTER JOIN " + Tables.INSTANCES
88 + " WHERE " + Tables.INSTANCES + "." + Instances.BEGIN + " ISNULL"
366 + " AS myAlarmTime" + "," + Tables.INSTANCES + "." + Instances.EVENT_ID
369 + Reminders.MINUTES + " FROM " + Tables.INSTANCES + " INNER JOIN " + Views.EVENTS
370 + " ON (" + Views.EVENTS + "." + Events._ID + "=" + Tables.INSTANCES + "."
372 + 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.java263 CalendarDatabaseHelper.Tables.INSTANCES + " INNER JOIN " +
266 " ON (" + CalendarDatabaseHelper.Tables.INSTANCES + "."
272 CalendarDatabaseHelper.Tables.INSTANCES + " INNER JOIN " +
275 " ON (" + CalendarDatabaseHelper.Tables.INSTANCES + "."
914 case INSTANCES:
1295 Tables.INSTANCES + "." + Instances._ID /* groupBy */,
1411 mDb.execSQL("DELETE FROM " + Tables.INSTANCES + ";");
1494 case INSTANCES:
2379 case INSTANCES:
3220 case INSTANCES
4609 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 79 milliseconds