Searched refs:hashSet (Results 1 – 5 of 5) sorted by relevance
115 HashSet<String> hashSet = new HashSet<>(); in validateRegisteredGlobalSettings() local117 if (hashSet.contains(globalSetting)) { in validateRegisteredGlobalSettings()123 hashSet.add(globalSetting); in validateRegisteredGlobalSettings()136 HashSet<String> hashSet = new HashSet<>(); in validateRegisteredDeviceConfigScopes() local138 if (hashSet.contains(deviceConfigScope)) { in validateRegisteredDeviceConfigScopes()144 hashSet.add(deviceConfigScope); in validateRegisteredDeviceConfigScopes()
338 HashSet<ControlledHash> hashSet = new HashSet<ControlledHash>(); in run() local352 hashChanged = hashSet.add(key); in run()359 hashChanged = hashSet.remove(key); in run()373 dump(hashSet, arraySet); in run()384 if (!compareSets(hashSet, arraySet)) { in run()385 dump(hashSet, arraySet); in run()412 dump(hashSet, arraySet); in run()453 dump(hashSet, arraySet); in run()
4245 hashSet(user0.getAllPackagesForTest().keySet())); in testCleanupPackage()4247 hashSet(user10.getAllPackagesForTest().keySet())); in testCleanupPackage()4251 hashSet(user0.getAllLaunchersForTest().keySet())); in testCleanupPackage()4277 hashSet(user0.getAllPackagesForTest().keySet())); in testCleanupPackage()4279 hashSet(user10.getAllPackagesForTest().keySet())); in testCleanupPackage()4283 hashSet(user0.getAllLaunchersForTest().keySet())); in testCleanupPackage()4309 hashSet(user0.getAllPackagesForTest().keySet())); in testCleanupPackage()4340 hashSet(user0.getAllPackagesForTest().keySet())); in testCleanupPackage()4369 hashSet(user0.getAllPackagesForTest().keySet())); in testCleanupPackage()4398 hashSet(user0.getAllPackagesForTest().keySet())); in testCleanupPackage()[all …]
21 import static com.android.server.pm.shortcutmanagertest.ShortcutManagerTestUtils.hashSet;1939 final Set<String> expected = hashSet(set(expectedDirectories));1956 final Set<String> expected = hashSet(set(expectedFiles));
417 public static <T> Set<T> hashSet(Set<T> in) { in hashSet() method in ShortcutManagerTestUtils