Home
last modified time | relevance | path

Searched refs:INSTANCES_TABLE_ALLOWED_LIST (Results 1 – 2 of 2) sorted by relevance

/packages/providers/CalendarProvider/src/com/android/providers/calendar/enterprise/
DCrossProfileCalendarHelper.java42 public static final Set<String> INSTANCES_TABLE_ALLOWED_LIST; field in CrossProfileCalendarHelper
75 INSTANCES_TABLE_ALLOWED_LIST = new ArraySet<>();
76 INSTANCES_TABLE_ALLOWED_LIST.add(CalendarContract.Instances._ID);
77 INSTANCES_TABLE_ALLOWED_LIST.add(CalendarContract.Instances.EVENT_ID);
78 INSTANCES_TABLE_ALLOWED_LIST.add(CalendarContract.Instances.BEGIN);
79 INSTANCES_TABLE_ALLOWED_LIST.add(CalendarContract.Instances.END);
80 INSTANCES_TABLE_ALLOWED_LIST.add(CalendarContract.Instances.START_DAY);
81 INSTANCES_TABLE_ALLOWED_LIST.add(CalendarContract.Instances.END_DAY);
82 INSTANCES_TABLE_ALLOWED_LIST.add(CalendarContract.Instances.START_MINUTE);
83 INSTANCES_TABLE_ALLOWED_LIST.add(CalendarContract.Instances.END_MINUTE);
[all …]
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/enterprise/
DCrossProfileCalendarHelperTest.java93 assertTrue(CrossProfileCalendarHelper.INSTANCES_TABLE_ALLOWED_LIST.equals(projectionSet)); in testNoProjection_getFullAllowedListProjectionForInstances()