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

  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarAlarmManager.java 38 import android.provider.CalendarContract.Instances;
69 + " LEFT OUTER JOIN " + Tables.INSTANCES
70 + " USING (" + Instances.EVENT_ID + ","
71 + Instances.BEGIN + "," + Instances.END + ")"
77 + " WHERE " + Tables.INSTANCES + "." + Instances.BEGIN + " ISNULL"
289 // alarm times are computed from Instances.begin (whose units
315 String subQueryPrefix = "SELECT " + Instances.BEGIN;
317 + " AS myAlarmTime" + "," + Tables.INSTANCES + "." + Instances.EVENT_I
    [all...]
CalendarInstancesHelper.java 34 import android.provider.CalendarContract.Instances;
48 CalendarInstancesHelper.InstancesList instances = get(syncIdKey); local
49 if (instances == null) {
50 instances = new CalendarInstancesHelper.InstancesList();
51 put(syncIdKey, instances);
53 instances.add(values);
78 * Instances whose event_id field matches one of those events.
81 Instances._ID + " IN " +
82 "(SELECT " + Tables.INSTANCES + "." + Instances._ID + " as _id"
    [all...]
CalendarDatabaseHelper.java 142 public static final String INSTANCES = "Instances";
163 "DELETE FROM " + Tables.INSTANCES +
164 " WHERE "+ CalendarContract.Instances.EVENT_ID + "=" +
330 mInstancesInserter = new DatabaseUtils.InsertHelper(db, Tables.INSTANCES);
406 db.execSQL("CREATE TABLE " + Tables.INSTANCES + " (" +
407 CalendarContract.Instances._ID + " INTEGER PRIMARY KEY," +
408 CalendarContract.Instances.EVENT_ID + " INTEGER," +
409 CalendarContract.Instances.BEGIN + " INTEGER," + // UTC millis
410 CalendarContract.Instances.END + " INTEGER," + // UTC milli
    [all...]
CalendarProvider2.java 47 import android.provider.CalendarContract.Instances;
261 CalendarDatabaseHelper.Tables.INSTANCES + " INNER JOIN " +
264 " ON (" + CalendarDatabaseHelper.Tables.INSTANCES + "."
265 + CalendarContract.Instances.EVENT_ID + "=" +
270 CalendarDatabaseHelper.Tables.INSTANCES + " INNER JOIN " +
273 " ON (" + CalendarDatabaseHelper.Tables.INSTANCES + "."
274 + CalendarContract.Instances.EVENT_ID + "=" +
284 CalendarContract.Instances.START_DAY + "<=? AND " +
285 CalendarContract.Instances.END_DAY + ">=?";
288 CalendarContract.Instances.BEGIN + "<=? AND "
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
Event.java 30 import android.provider.CalendarContract.Instances;
65 // The projection to use when querying instances to build a list of events
67 Instances.TITLE, // 0
68 Instances.EVENT_LOCATION, // 1
69 Instances.ALL_DAY, // 2
70 Instances.DISPLAY_COLOR, // 3
71 Instances.EVENT_TIMEZONE, // 4
72 Instances.EVENT_ID, // 5
73 Instances.BEGIN, // 6
74 Instances.END, //
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/widget/
CalendarAppWidgetService.java 34 import android.provider.CalendarContract.Instances;
61 private static final String EVENT_SORT_ORDER = Instances.START_DAY + " ASC, "
62 + Instances.START_MINUTE + " ASC, " + Instances.END_DAY + " ASC, "
63 + Instances.END_MINUTE + " ASC LIMIT " + EVENT_MAX_COUNT;
67 + Instances.SELF_ATTENDEE_STATUS + "!=" + Attendees.ATTENDEE_STATUS_DECLINED;
70 Instances.ALL_DAY,
71 Instances.BEGIN,
72 Instances.END,
73 Instances.TITLE
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaWindowAdapter.java 30 import android.provider.CalendarContract.Instances;
82 CalendarContract.Instances.START_DAY + " ASC, " +
83 CalendarContract.Instances.BEGIN + " ASC, " +
105 Instances._ID, // 0
106 Instances.TITLE, // 1
107 Instances.EVENT_LOCATION, // 2
108 Instances.ALL_DAY, // 3
109 Instances.HAS_ALARM, // 4
110 Instances.DISPLAY_COLOR, // 5
111 Instances.RRULE, //
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/month/
MonthByWeekFragment.java 30 import android.provider.CalendarContract.Instances;
63 private static final String INSTANCES_SORT_ORDER = Instances.START_DAY + ","
64 + Instances.START_MINUTE + "," + Instances.TITLE;
167 Uri.Builder builder = Instances.CONTENT_URI.buildUpon();
192 where += " AND " + Instances.SELF_ATTENDEE_STATUS + "!="
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarProvider2Test.java 36 import android.provider.CalendarContract.Instances;
290 * This command dumps the list of instances to the log for debugging.
312 * This command queries the number of instances and compares it to the given
337 * When this command runs it verifies that all of the instances in the
338 * given range match the expected instances (each instance is specified by
344 long[] instances; field in class:CalendarProvider2Test.VerifyAllInstances
361 this.instances = new long[len];
365 this.instances[index++] = time.toMillis(false /* use isDst */);
372 if (instances != null) {
373 len = instances.length
    [all...]
CalendarSyncTestingBase.java 67 INSTANCES_COLUMNS_TO_SKIP.add(CalendarContract.Instances._ID);
  /external/llvm/lib/MC/
MCContext.cpp 125 MCLabel *&Label = Instances[LocalLabelVal];
132 MCLabel *&Label = Instances[LocalLabelVal];
  /external/webkit/Tools/Scripts/webkitpy/common/system/
logtesting.py 43 Log messages captured by instances of this object can be tested
104 This method should never be called directly. Instances should
  /cts/tests/tests/provider/src/android/provider/cts/
CalendarTest.java 36 import android.provider.CalendarContract.Instances;
1911 Cursor instances = getInstances(timeZone, rangeStart, rangeEnd, projection, local
1917 Cursor instances; local
2233 Cursor instances = getInstances(timeZone, "2003-08-05T00:00:00", "2003-08-31T11:59:59", local
2318 Cursor instances = getInstances(timeZone, testStart, testEnd, projection, local
2507 Cursor instances = getInstances(timeZone, testStart, testEnd, projection, local
2676 Cursor instances = getInstances(timeZone, testStart, testEnd, projection, local
2764 Cursor instances = getInstances(timeZone, testStart, testEnd, projection, local
2859 Cursor instances = getInstances(timeZone, testStart, testEnd, projection, local
2975 Cursor instances = mContentResolver.query(uri, projection, where, null, local
3029 Cursor instances = mContentResolver.query(uri, projection, where, null, local
3063 Cursor instances = getInstances(timeZone, startWhen, endWhen, local
3225 Cursor instances = getInstances(timeZone, testStart, testEnd, projection, local
    [all...]
  /external/llvm/include/llvm/MC/
MCContext.h 77 /// Instances of directional local labels.
78 DenseMap<unsigned, MCLabel *> Instances;
  /frameworks/base/core/java/android/provider/
CalendarContract.java 62 * <li>The {@link Instances} table holds the start and end time for occurrences
64 * one-time events there will be a 1:1 mapping of instances to events. For
320 * expanded in the instances table and will only show up in sync adapter
    [all...]
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 1500 milliseconds