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()
54 import static com.android.server.pm.shortcutmanagertest.ShortcutManagerTestUtils.hashSet;4303 hashSet(user0.getAllPackagesForTest().keySet())); in testCleanupPackage()4305 hashSet(user10.getAllPackagesForTest().keySet())); in testCleanupPackage()4309 hashSet(user0.getAllLaunchersForTest().keySet())); in testCleanupPackage()4313 hashSet(user10.getAllLaunchersForTest().keySet())); in testCleanupPackage()4335 hashSet(user0.getAllPackagesForTest().keySet())); in testCleanupPackage()4337 hashSet(user10.getAllPackagesForTest().keySet())); in testCleanupPackage()4341 hashSet(user0.getAllLaunchersForTest().keySet())); in testCleanupPackage()4345 hashSet(user10.getAllLaunchersForTest().keySet())); in testCleanupPackage()4367 hashSet(user0.getAllPackagesForTest().keySet())); in testCleanupPackage()[all …]
21 import static com.android.server.pm.shortcutmanagertest.ShortcutManagerTestUtils.hashSet;1963 final Set<String> expected = hashSet(set(expectedDirectories));1980 final Set<String> expected = hashSet(set(expectedFiles));
417 public static <T> Set<T> hashSet(Set<T> in) { in hashSet() method in ShortcutManagerTestUtils