HomeSort by relevance Sort by last modified time
    Searched refs:Instances (Results 1 - 8 of 8) sorted by null

  /packages/apps/Calendar/src/com/android/calendar/
Event.java 27 import android.provider.Calendar.Instances;
43 Instances.TITLE, // 0
44 Instances.EVENT_LOCATION, // 1
45 Instances.ALL_DAY, // 2
46 Instances.COLOR, // 3
47 Instances.EVENT_TIMEZONE, // 4
48 Instances.EVENT_ID, // 5
49 Instances.BEGIN, // 6
50 Instances.END, // 7
51 Instances._ID, //
    [all...]
AgendaWindowAdapter.java 26 import android.provider.Calendar.Instances;
80 Instances._ID, // 0
81 Instances.TITLE, // 1
82 Instances.EVENT_LOCATION, // 2
83 Instances.ALL_DAY, // 3
84 Instances.HAS_ALARM, // 4
85 Instances.COLOR, // 5
86 Instances.RRULE, // 6
87 Instances.BEGIN, // 7
88 Instances.END, //
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarAppWidgetService.java 34 import android.provider.Calendar.Instances;
56 Instances.ALL_DAY,
57 Instances.BEGIN,
58 Instances.END,
59 Instances.COLOR,
60 Instances.TITLE,
61 Instances.RRULE,
62 Instances.HAS_ALARM,
63 Instances.EVENT_LOCATION,
64 Instances.CALENDAR_ID
    [all...]
CalendarProvider2.java 51 import android.provider.Calendar.Instances;
83 + " LEFT OUTER JOIN Instances USING (event_id, begin, end)"
86 + " WHERE Instances.begin ISNULL OR ca.alarmTime<?"
197 InstancesList instances = get(syncIdKey); local
198 if (instances == null) {
199 instances = new InstancesList();
200 put(syncIdKey, instances);
202 instances.add(values);
312 new String[] { Instances.START_DAY, Instances.END_DAY
    [all...]
CalendarDatabaseHelper.java 152 mInstancesInserter = new DatabaseUtils.InsertHelper(db, "Instances");
318 db.execSQL("CREATE TABLE Instances (" +
330 db.execSQL("CREATE INDEX instancesStartDayIndex ON Instances (" +
331 Calendar.Instances.START_DAY +
397 "DELETE FROM Instances WHERE event_id = old._id;" +
449 // Define the default timezone type for Instances timezone management
458 // Define the default timezone for Instances
465 // Define the default previous timezone for Instances
601 db.execSQL("DELETE FROM Instances;");
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarProvider2Test.java 32 import android.provider.Calendar.Instances;
214 * This command dumps the list of instances to the log for debugging.
236 * This command queries the number of instances and compares it to the given
261 * When this command runs it verifies that all of the instances in the
262 * given range match the expected instances (each instance is specified by
268 long[] instances; field in class:CalendarProvider2Test.VerifyAllInstances
285 this.instances = new long[len];
289 this.instances[index++] = time.toMillis(false /* use isDst */);
296 if (instances != null) {
297 len = instances.length
    [all...]
CalendarSyncTestingBase.java 68 INSTANCES_COLUMNS_TO_SKIP.add(Calendar.Instances._ID);
  /frameworks/base/core/java/android/provider/
Calendar.java     [all...]

Completed in 7451 milliseconds