/libcore/ojluni/src/main/java/sun/security/x509/ |
D | PolicyMappingsExtension.java | 67 private List<CertificatePolicyMap> maps; field in PolicyMappingsExtension 71 if (maps == null || maps.isEmpty()) { in encodeThis() 78 for (CertificatePolicyMap map : maps) { in encodeThis() 93 this.maps = map; in PolicyMappingsExtension() 105 maps = Collections.<CertificatePolicyMap>emptyList(); in PolicyMappingsExtension() 127 maps = new ArrayList<CertificatePolicyMap>(); in PolicyMappingsExtension() 131 maps.add(map); in PolicyMappingsExtension() 139 if (maps == null) return ""; in toString() 141 + maps.toString() + "]\n"; in toString() 173 maps = (List<CertificatePolicyMap>)obj; in set() [all …]
|
/libcore/ojluni/src/test/java/util/Map/ |
D | LockStep.java | 65 void mapsEqual(List<Map> maps) { in mapsEqual() argument 66 Map first = maps.get(0); in mapsEqual() 67 for (Map map : maps) in mapsEqual() 71 void put(List<Map> maps, Object key, Object val) { in put() argument 72 for (Map map : maps) in put() 74 mapsEqual(maps); in put() 77 void removeLastTwo(List<Map> maps) { in removeLastTwo() argument 78 Map first = maps.get(0); in removeLastTwo() 86 for (Map map : maps) { in removeLastTwo() 94 mapsEqual(maps); in removeLastTwo() [all …]
|
D | EntryHashCode.java | 52 static final Map<Object,Object>[] maps = (Map<Object,Object>[])new Map[] { field in EntryHashCode 84 for (Map<Object,Object> map: maps) { in testEntryHashCode()
|
D | ToArray.java | 48 Map<Integer, Long>[] maps = (Map<Integer, Long>[]) new Map[]{ in testToArray() local 60 for (Map<Integer, Long> map : maps) { in testToArray()
|
/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/ |
D | CollectionAndMapModifyStreamTest.java | 115 Map<String, Supplier<Map<Integer, Integer>>> maps = new HashMap<>(); in createMaps() local 117 maps.put(HashMap.class.getName(), () -> new HashMap<>(content)); in createMaps() 118 maps.put(LinkedHashMap.class.getName(), () -> new LinkedHashMap<>(content)); in createMaps() 119 maps.put(IdentityHashMap.class.getName(), () -> new IdentityHashMap<>(content)); in createMaps() 120 maps.put(WeakHashMap.class.getName(), () -> new WeakHashMap<>(content)); in createMaps() 122 maps.put(TreeMap.class.getName(), () -> new TreeMap<>(content)); in createMaps() 123 …maps.put(TreeMap.class.getName() + ".descendingMap()", () -> new TreeMap<>(content).descendingMap(… in createMaps() 132 maps.put(ConcurrentHashMap.class.getName(), () -> new ConcurrentHashMap<>(content)); in createMaps() 133 maps.put(ConcurrentSkipListMap.class.getName(), () -> new ConcurrentSkipListMap<>(content)); in createMaps() 135 Object[][] params = new Object[maps.size()][]; in createMaps() [all …]
|
/libcore/ojluni/src/test/java/util/Collections/ |
D | WrappedUnmodifiableCollections.java | 88 List<Map<?,?>> maps = List.of(treeMap, in testUnmodifiableMapsDontWrap() local 92 for (Map<?,?> map : maps) { in testUnmodifiableMapsDontWrap()
|
D | RacingCollections.java | 234 private static List<Map<Integer, Boolean>> maps() { in maps() method in RacingCollections 312 for (Map<Integer, Boolean> x : maps()) in realMain()
|
/libcore/ojluni/src/main/java/sun/security/provider/certpath/ |
D | PolicyChecker.java | 753 List<CertificatePolicyMap> maps = null; in processPolicyMappings() local 755 maps = polMappingsExt.get(PolicyMappingsExtension.MAP); in processPolicyMappings() 767 for (CertificatePolicyMap polMap : maps) { in processPolicyMappings()
|
/libcore/ojluni/src/test/java/util/PriorityQueue/ |
D | AddNonComparable.java | 145 public void maps() { in maps() method
|
/libcore/ojluni/src/main/java/java/nio/ |
D | X-Buffer.java.template | 1819 * to use buffers as keys in hash maps or similar data structures unless it
|