Searched refs:calendarId (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/services/core/java/com/android/server/notification/ |
D | CalendarTracker.java | 139 final long calendarId = cursor.getLong(7); in checkEvent() local 141 final boolean canAccessCal = calendars.contains(calendarId); in checkEvent() 146 availabilityToString(availability), eventId, name, owner, calendarId, in checkEvent() 151 && ((filter.calName == null && filter.calendarId == null) in checkEvent() 152 || (Objects.equals(filter.calendarId, calendarId)) in checkEvent()
|
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
D | ZenModeConfigTest.java | 168 oldEvent.calendarId = null; // old events will have null ids in testParseOldEvent() 180 event.calendarId = 12345L; in testParseNewEvent()
|
/frameworks/base/core/java/android/service/notification/ |
D | ZenModeConfig.java | 1591 .appendQueryParameter("calendarId", event.calendarId != null in toEventConditionId() 1592 ? event.calendarId.toString() : "") in toEventConditionId() 1614 rt.calendarId = tryParseLong(conditionId.getQueryParameter("calendarId"), null); in tryParseEventConditionId() 1630 public Long calendarId; // Calendars._ID, or null if restored from < Q calendar field in ZenModeConfig.EventInfo 1635 return Objects.hash(userId, calName, calendarId, reply); in hashCode() 1645 && Objects.equals(calendarId, other.calendarId); in equals() 1653 rt.calendarId = calendarId; in copy()
|
/frameworks/base/core/java/android/provider/ |
D | CalendarContract.java | 600 final long calendarId = cursor.getLong(cursor.getColumnIndexOrThrow(_ID)); in getEntityAndIncrementCursor() local 604 cv.put(_ID, calendarId); in getEntityAndIncrementCursor()
|