Searched refs:componentList (Results 1 – 5 of 5) sorted by relevance
214 public static void blockNullAction(IntentArgs args, List componentList) { in blockNullAction() argument223 for (int i = componentList.size() - 1; i >= 0; --i) { in blockNullAction()226 Object c = componentList.get(i); in blockNullAction()252 componentList.remove(i); in blockNullAction()361 public static void filterNonExportedComponents(IntentArgs args, List componentList) { in filterNonExportedComponents() argument362 if (componentList == null in filterNonExportedComponents()373 for (int i = componentList.size() - 1; i >= 0; i--) { in filterNonExportedComponents()374 Object c = componentList.get(i); in filterNonExportedComponents()390 componentList.remove(i); in filterNonExportedComponents()
4019 ArrayList<String> componentList = sendNowBroadcasts.get(packageName);4020 componentList = componentList == null ? new ArrayList<>() : componentList;4021 if (!componentList.contains(componentName)) {4022 componentList.add(componentName);4024 sendNowBroadcasts.put(packageName, componentList);
277 Set<ComponentName> componentList = newCachedWakeSignalConfigs.get(s); in parseAndCache() local278 if (componentList == null) { in parseAndCache()279 componentList = new HashSet<>(); in parseAndCache()280 newCachedWakeSignalConfigs.put(s, componentList); in parseAndCache()282 componentList.add(componentName); in parseAndCache()
161 String[] componentList = in entirePackageChanged() local163 return Arrays.asList(componentList).contains( in entirePackageChanged()
5112 ArrayList<ComponentName> componentList = new ArrayList<>(); in testSetAssistantAccess_nullWithAllowedAssistant() local5114 componentList.add(c); in testSetAssistantAccess_nullWithAllowedAssistant()5115 when(mAssistants.getAllowedComponents(anyInt())).thenReturn(componentList); in testSetAssistantAccess_nullWithAllowedAssistant()5139 ArrayList<ComponentName> componentList = new ArrayList<>(); in testSetAssistantAccessForUser_nullWithAllowedAssistant() local5141 componentList.add(c); in testSetAssistantAccessForUser_nullWithAllowedAssistant()5142 when(mAssistants.getAllowedComponents(anyInt())).thenReturn(componentList); in testSetAssistantAccessForUser_nullWithAllowedAssistant()5168 ArrayList<ComponentName> componentList = new ArrayList<>(); in testSetAssistantAccessForUser_workProfile_nullWithAllowedAssistant() local5170 componentList.add(c); in testSetAssistantAccessForUser_workProfile_nullWithAllowedAssistant()5171 when(mAssistants.getAllowedComponents(anyInt())).thenReturn(componentList); in testSetAssistantAccessForUser_workProfile_nullWithAllowedAssistant()