Searched refs:newSet (Results 1 – 9 of 9) sorted by relevance
/libcore/ojluni/src/main/java/java/util/ |
D | HashSet.java | 255 HashSet<E> newSet = (HashSet<E>) super.clone(); in clone() local 256 newSet.map = (HashMap<E, Object>) map.clone(); in clone() 257 return newSet; in clone()
|
/libcore/ojluni/src/main/java/sun/nio/fs/ |
D | Util.java | 99 static <E> Set<E> newSet(E... elements) { in newSet() method in Util 112 static <E> Set<E> newSet(Set<E> other, E... elements) { in newSet() method in Util
|
D | UnixFileAttributeViews.java | 138 Util.newSet(basicAttributeNames, PERMISSIONS_NAME, OWNER_NAME, GROUP_NAME); 307 Util.newSet(posixAttributeNames,
|
D | AbstractBasicFileAttributeView.java | 51 Util.newSet(SIZE_NAME,
|
D | LinuxDosFileAttributeView.java | 63 Util.newSet(basicAttributeNames, READONLY_NAME, ARCHIVE_NAME, SYSTEM_NAME, HIDDEN_NAME);
|
/libcore/luni/src/main/java/libcore/icu/ |
D | ICU.java | 105 Set<String> newSet = new HashSet<>(isoCountries.length); in isIsoCountry() local 107 newSet.add(isoCountry); in isIsoCountry() 109 isoCountriesSet = newSet; in isIsoCountry()
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
D | TreeSetTest.java | 676 NavigableSet<Integer> set = newSet(cl); in testRecursiveSubSets() 702 static NavigableSet<Integer> newSet(Class cl) throws Exception { in newSet() method in TreeSetTest
|
D | ConcurrentSkipListSetTest.java | 672 NavigableSet<Integer> set = newSet(cl); in testRecursiveSubSets() 698 static NavigableSet<Integer> newSet(Class cl) throws Exception { in newSet() method in ConcurrentSkipListSetTest
|
/libcore/ojluni/src/test/java/util/concurrent/tck/ |
D | ConcurrentSkipListSetTest.java | 702 NavigableSet<Integer> set = newSet(cl); in testRecursiveSubSets() 728 static NavigableSet<Integer> newSet(Class cl) throws Exception { in newSet() method in ConcurrentSkipListSetTest
|