Searched refs:EMPTY_LIST (Results 1 - 25 of 64) sorted by relevance

123

/openjdk10/langtools/test/tools/javac/
H A DParens4.java12 return (java).util.Collections.EMPTY_LIST;
/openjdk10/langtools/test/tools/javac/generics/7015430/
H A DT7015430.java41 Iterable i = java.util.Collections.EMPTY_LIST;
50 Iterable i = java.util.Collections.EMPTY_LIST;
68 Iterable i = java.util.Collections.EMPTY_LIST;
77 Iterable i = java.util.Collections.EMPTY_LIST;
86 Iterable i = java.util.Collections.EMPTY_LIST;
95 Iterable i = java.util.Collections.EMPTY_LIST;
104 Iterable i = java.util.Collections.EMPTY_LIST;
113 Iterable i = java.util.Collections.EMPTY_LIST;
/openjdk10/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/
H A DResourceFilter.java45 private final static List<String> EMPTY_LIST = Collections.emptyList(); field in class:ResourceFilter
91 return includeFilter(EMPTY_LIST);
104 return excludeFilter(EMPTY_LIST);
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/util/
H A DNamespaceContextAdapter.java58 return Collections.EMPTY_LIST.iterator();
/openjdk10/jdk/test/java/util/Collections/
H A DSer.java27 * @summary EMPTY_SET, EMPTY_LIST, and the collections returned by
54 out.writeObject(Collections.EMPTY_LIST);
59 if (!Collections.EMPTY_LIST.equals(in.readObject()))
H A DWrappedNull.java170 l = Collections.unmodifiableList(Collections.EMPTY_LIST);
177 l = Collections.synchronizedList(Collections.EMPTY_LIST);
H A DEmptyCollectionSerialization.java77 {"Collections.EMPTY_LIST",
78 (Supplier) () -> Collections.EMPTY_LIST},
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/util/
H A DShortListImpl.java41 public static final ShortListImpl EMPTY_LIST = new ShortListImpl(new short[0], 0); field in class:ShortListImpl
H A DLSInputListImpl.java43 public static final LSInputListImpl EMPTY_LIST = new LSInputListImpl(new LSInput[0], 0); field in class:LSInputListImpl
H A DObjectListImpl.java40 public static final ObjectListImpl EMPTY_LIST = new ObjectListImpl(new Object[0], 0); field in class:ObjectListImpl
H A DStringListImpl.java43 public static final StringListImpl EMPTY_LIST = new StringListImpl(new String[0], 0); field in class:StringListImpl
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSNotationDecl.java107 return (fAnnotations != null) ? fAnnotations : XSObjectListImpl.EMPTY_LIST;
H A DXSGroupDecl.java97 return (fAnnotations != null) ? fAnnotations : XSObjectListImpl.EMPTY_LIST;
H A DAttributePSVImpl.java187 return StringListImpl.EMPTY_LIST;
200 return StringListImpl.EMPTY_LIST;
H A DXSAttributeUseImpl.java158 return (fAnnotations != null) ? fAnnotations : XSObjectListImpl.EMPTY_LIST;
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/dv/
H A DValidatedInfo.java183 return itemValueTypes == null ? ShortListImpl.EMPTY_LIST : itemValueTypes;
188 return XSObjectListImpl.EMPTY_LIST;
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/dom/
H A DPSVIElementNSImpl.java182 return StringListImpl.EMPTY_LIST;
195 return StringListImpl.EMPTY_LIST;
H A DPSVIAttrNSImpl.java172 return StringListImpl.EMPTY_LIST;
185 return StringListImpl.EMPTY_LIST;
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/xsom/impl/
H A DListSimpleTypeImpl.java66 public List<XSFacet> getFacets( String name ) { return Collections.EMPTY_LIST; }
H A DUnionSimpleTypeImpl.java89 public List<XSFacet> getFacets( String name ) { return Collections.EMPTY_LIST; }
H A DSchemaSetImpl.java277 public Collection<? extends XSFacet> getDeclaredFacets() { return Collections.EMPTY_LIST; }
290 public List<XSFacet> getFacets( String name ) { return Collections.EMPTY_LIST; }
292 public List<XSFacet> getDeclaredFacets(String name) { return Collections.EMPTY_LIST; }
326 public Collection<XSAttributeUse> getAttributeUses() { return Collections.EMPTY_LIST; }
327 public Collection<? extends XSAttributeUse> getDeclaredAttributeUses() { return Collections.EMPTY_LIST; }
328 public Collection<? extends XSAttGroupDecl> getAttGroups() { return Collections.EMPTY_LIST; }
/openjdk10/jdk/test/java/util/concurrent/CopyOnWriteArrayList/
H A DEqualsRace.java51 list.equals(Collections.EMPTY_LIST);
/openjdk10/jdk/test/java/security/Provider/
H A DGetInstance.java101 CertStoreParameters params = new CollectionCertStoreParameters(Collections.EMPTY_LIST);
185 public Collection engineGetCertificates(CertSelector sel) { return Collections.EMPTY_LIST; }
186 public Collection engineGetCRLs(CRLSelector sel) { return Collections.EMPTY_LIST; }
/openjdk10/langtools/test/tools/javac/lambdaShapes/org/openjdk/tests/shapegen/
H A DHierarchyGenerator.java153 public static final List<ClassCase> EMPTY_LIST = new ArrayList<>(); field in class:HierarchyGenerator
157 return EMPTY_LIST;
160 itfs.add(new ClassCase(kind, null, EMPTY_LIST));
/openjdk10/jdk/test/com/sun/jndi/ldap/LdapName/
H A DEmptyNameSearch.java61 ctx.search(new LdapName(Collections.EMPTY_LIST), "cn=*", null);

Completed in 240 milliseconds

123