Searched refs:groupList (Results 1 – 8 of 8) sorted by relevance
/aosp12/packages/apps/Car/Notification/src/com/android/car/notification/ |
H A D | PreprocessingManager.java | 401 List<NotificationGroup> groupList = new ArrayList<>(groupedNotifications.values()); in group() local 402 groupList.removeIf( in group() 413 + groupList); in group() 417 mNotificationDataManager.updateUnseenNotificationGroups(groupList); in group() 424 groupList.forEach(notificationGroup -> { in group() 451 groupList.clear(); in group() 452 groupList.addAll(tempGroupList); in group() 455 + groupList); in group() 462 groupList.forEach( in group() 480 groupList.forEach( in group()
|
/aosp12/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/ |
H A D | VNodeBuilder.java | 103 List<String> groupList = property.getGroupList(); in onPropertyCreated() local 104 if (groupList != null) { in onPropertyCreated() 105 propNode.propGroupSet.addAll(groupList); in onPropertyCreated()
|
/aosp12/packages/apps/Calendar/src/com/android/calendar/ |
H A D | Event.java | 449 final ArrayList<Event> groupList = new ArrayList<Event>(); in doComputePositions() local 472 for (Event ev : groupList) { in doComputePositions() 477 groupList.clear(); in doComputePositions() 488 groupList.add(event); in doComputePositions() 493 for (Event ev : groupList) { in doComputePositions()
|
/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/wifi/p2p/ |
H A D | WifiP2pSettingsTest.java | 427 final List<WifiP2pGroup> groupList = new ArrayList<>(); in persistentController_withOneGroup_shouldBeAvailable() local 428 groupList.add(mWifiP2pGroup); in persistentController_withOneGroup_shouldBeAvailable() 430 doReturn(groupList).when(wifiP2pGroupList).getGroupList(); in persistentController_withOneGroup_shouldBeAvailable() 443 final List<WifiP2pGroup> groupList = new ArrayList<>(); in persistentController_withNoGroup_shouldBeUnavailable() local 444 doReturn(groupList).when(wifiP2pGroupList).getGroupList(); in persistentController_withNoGroup_shouldBeUnavailable()
|
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/p2p/ |
H A D | WifiP2pNativeTest.java | 139 public boolean answer(WifiP2pGroupList groupList) { in setUp() 141 groupList.add(g); in setUp() 185 WifiP2pGroupList groupList = new WifiP2pGroupList(); in testP2pListNetworks() local 186 assertTrue(mWifiP2pNative.p2pListNetworks(groupList)); in testP2pListNetworks() 189 assertEquals(mWifiP2pGroupList.toString(), groupList.toString()); in testP2pListNetworks()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
H A D | ChannelEditorDialogController.kt | 156 groupList: Sequence<NotificationChannelGroup> 159 val channels = groupList
|
/aosp12/frameworks/base/services/core/java/com/android/server/pm/ |
H A D | PackageManagerShellCommand.java | 962 final ArrayList<String> groupList = new ArrayList<String>(); in runListPermissions() local 968 groupList.add(infos.get(i).name); in runListPermissions() 970 groupList.add(null); in runListPermissions() 973 groupList.add(grp); in runListPermissions() 979 doListPermissions(groupList, groups, labels, summary, in runListPermissions() 985 doListPermissions(groupList, groups, labels, summary, in runListPermissions() 992 doListPermissions(groupList, groups, labels, summary, in runListPermissions() 998 doListPermissions(groupList, groups, labels, summary, in runListPermissions() 3456 final int groupCount = groupList.size(); in doListPermissions() 3458 String groupName = groupList.get(i); in doListPermissions() [all …]
|
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/ |
H A D | WifiP2pServiceImpl.java | 3714 private WifiP2pGroupList maybeEraseOwnDeviceAddress(WifiP2pGroupList groupList, int uid) { in maybeEraseOwnDeviceAddress() argument 3715 if (groupList == null) { in maybeEraseOwnDeviceAddress() 3719 for (WifiP2pGroup group : groupList.getGroupList()) { in maybeEraseOwnDeviceAddress()
|