Home
last modified time | relevance | path

Searched refs:groupList (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Car/Notification/src/com/android/car/notification/
DPreprocessingManager.java412 List<NotificationGroup> groupList = new ArrayList<>(groupedNotifications.values()); in group() local
413 groupList.removeIf( in group()
424 + groupList); in group()
428 mNotificationDataManager.updateUnseenNotificationGroups(groupList); in group()
435 groupList.forEach(notificationGroup -> { in group()
462 groupList.clear(); in group()
463 groupList.addAll(tempGroupList); in group()
466 + groupList); in group()
473 groupList.forEach( in group()
491 groupList.forEach( in group()
/packages/apps/Calendar/src/com/android/calendar/
DEvent.kt374 val groupList: ArrayList<Event> = ArrayList<Event>() in doComputePositions() constant
396 for (ev in groupList) { in doComputePositions()
401 groupList.clear() in doComputePositions()
411 groupList.add(event) in doComputePositions()
415 for (ev in groupList) { in doComputePositions()
/packages/apps/Settings/tests/robotests/src/com/android/settings/wifi/p2p/
DWifiP2pSettingsTest.java459 final List<WifiP2pGroup> groupList = new ArrayList<>(); in persistentController_withOneGroup_shouldBeAvailable() local
460 groupList.add(mWifiP2pGroup); in persistentController_withOneGroup_shouldBeAvailable()
462 doReturn(groupList).when(wifiP2pGroupList).getGroupList(); in persistentController_withOneGroup_shouldBeAvailable()
475 final List<WifiP2pGroup> groupList = new ArrayList<>(); in persistentController_withNoGroup_shouldBeUnavailable() local
476 doReturn(groupList).when(wifiP2pGroupList).getGroupList(); in persistentController_withNoGroup_shouldBeUnavailable()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/p2p/
DWifiP2pNativeTest.java164 public boolean answer(WifiP2pGroupList groupList) { in setUp()
166 groupList.add(g); in setUp()
449 WifiP2pGroupList groupList = new WifiP2pGroupList(); in testP2pListNetworks() local
450 assertTrue(mWifiP2pNative.p2pListNetworks(groupList)); in testP2pListNetworks()
453 assertEquals(mWifiP2pGroupList.toString(), groupList.toString()); in testP2pListNetworks()
/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/
DWifiP2pServiceImpl.java6457 private WifiP2pGroupList maybeEraseOwnDeviceAddress(WifiP2pGroupList groupList, int uid) { in maybeEraseOwnDeviceAddress() argument
6458 if (groupList == null) { in maybeEraseOwnDeviceAddress()
6462 for (WifiP2pGroup group : groupList.getGroupList()) { in maybeEraseOwnDeviceAddress()