Home
last modified time | relevance | path

Searched refs:EVENTS (Results 1 – 7 of 7) sorted by relevance

/packages/providers/CalendarProvider/src/com/android/providers/calendar/
DCalendarDatabaseHelper.java143 public static final String EVENTS = "Events"; field
158 public static final String EVENTS = "view_events"; field
188 "UPDATE " + Tables.EVENTS +
195 " ON " + Tables.EVENTS +
200 private static final String CALENDAR_CLEANUP_TRIGGER_SQL = "DELETE FROM " + Tables.EVENTS +
218 private static final String EVENT_UPDATE_COLOR_TRIGGER_SQL = "UPDATE " + Tables.EVENTS
230 + Tables.EVENTS + " WHEN new." + Events.EVENT_COLOR_KEY + " NOT NULL BEGIN "
236 Tables.ATTENDEES + " LEFT OUTER JOIN " + Tables.EVENTS + " ON " +
237 Attendees.EVENT_ID + "=" + Tables.EVENTS + "." + Events._ID +
238 " WHERE " + Tables.EVENTS + "." + Events._ID + " IS NULL)";
[all …]
DCalendarProvider2.java205 Tables.EVENTS +
207 CalendarContract.EventsRawTimes.EVENT_ID + " = " + Tables.EVENTS + "." + Events._ID;
210 Tables.EVENTS + " SET " +
216 " FROM " + Tables.EVENTS +
233 Tables.EVENTS + "." + Events._ID + "=" + Tables.ATTENDEES + "." + Attendees.EVENT_ID
235 Tables.EVENTS + "." + Events.CALENDAR_ID + "=" + Tables.CALENDARS + "." + Calendars._ID;
242 Tables.EVENTS + "." + Events._ID + "=" + Tables.REMINDERS + "." + Reminders.EVENT_ID +
244 Tables.EVENTS + "." + Events.CALENDAR_ID + "=" + Tables.CALENDARS + "." + Calendars._ID;
247 Views.EVENTS + "." + Events._ID + "=" +
251 Views.EVENTS + "." + Events._ID + "=" +
[all …]
DCalendarInstancesHelper.java83 " INNER JOIN " + Tables.EVENTS +
85 Tables.EVENTS + "." + Events._ID + "=" + Tables.INSTANCES + "." + Instances.EVENT_ID +
87 " WHERE " + Tables.EVENTS + "." + Events._ID + "=? OR " +
88 Tables.EVENTS + "." + Events.ORIGINAL_ID + "=?)";
99 " INNER JOIN " + Tables.EVENTS +
101 Tables.EVENTS + "." + Events._ID + "=" + Tables.INSTANCES + "." + Instances.EVENT_ID +
103 " WHERE " + Tables.EVENTS + "." + Events._SYNC_ID + "=?" + " OR " +
104 Tables.EVENTS + "." + Events.ORIGINAL_SYNC_ID + "=?)";
145 String where = "SELECT " + columnName + " FROM " + Tables.EVENTS + in getEventValue()
562 qb.setTables(CalendarDatabaseHelper.Views.EVENTS); in getEntries()
[all …]
DCalendarAlarmManager.java75 + " LEFT OUTER JOIN " + Views.EVENTS + " AS e ON"
319 + Reminders.MINUTES + " FROM " + Tables.INSTANCES + " INNER JOIN " + Views.EVENTS in scheduleNextAlarmLocked()
320 + " ON (" + Views.EVENTS + "." + Events._ID + "=" + Tables.INSTANCES + "." in scheduleNextAlarmLocked()
/packages/services/Telephony/testapps/TelephonyRegistryTestApp/src/com/android/phone/testapps/telephonyregistry/
DTelephonyRegistryTestApp.java44 private static final SparseArray<String> EVENTS = new SparseArray<String>() {{ field in TelephonyRegistryTestApp
104 for (int i = 0; i < EVENTS.size(); i++) { in onCreate()
106 box.setText(EVENTS.valueAt(i)); in onCreate()
107 final int eventCode = EVENTS.keyAt(i); in onCreate()
/packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/suggestions/ranking/
DSuggestionEventStore.java44 private static final Set<String> EVENTS = new HashSet<>( field in SuggestionEventStore
69 if (!EVENTS.contains(eventType)) { in writeEvent()
88 if (!EVENTS.contains(eventType)) { in readMetric()
/packages/apps/Car/tests/TestMediaApp/src/com/android/car/media/testmediaapp/loader/
DTmaMediaItemReader.java61 EVENTS enumConstant
94 JSONArray events = getArray(json, Keys.EVENTS); in fromJson()