Searched refs:wildcard (Results 126 - 133 of 133) sorted by relevance

123456

/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DBGMBuilder.java476 public Boolean wildcard(XSWildcard xsWildcard) {
H A DDefaultClassBinder.java336 public CClassInfo wildcard(XSWildcard wc) { method in class:DefaultClassBinder
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/xmlschema/bindinfo/
H A DBIProperty.java697 public XSComponent wildcard(XSWildcard wc) { return wc.getOwnerSchema(); }
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/
H A DXMLSchemaValidator.java1934 // it could be an element decl or a wildcard decl
2013 XSWildcardDecl wildcard = null;
2030 wildcard = (XSWildcardDecl) decl;
2034 // if the wildcard is skip, then return
2035 if (wildcard != null && wildcard.fProcessContents == XSWildcardDecl.PC_SKIP) {
2137 // if wildcard = strict, report error.
2140 else if (wildcard != null && wildcard.fProcessContents == XSWildcardDecl.PC_STRICT) {
2982 // 3.2.1 There must be an {attribute wildcard}
[all...]
/openjdk10/make/
H A DMain.gmk34 ifeq ($(wildcard $(SPEC)),)
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/
H A DTypes.java121 capturedName = names.fromString("<captured wildcard>");
131 * Get a wildcard's upper bound, returning non-wildcards unchanged.
132 * @param t a type argument, either a wildcard or a type
158 * Get a wildcard's lower bound, returning non-wildcards unchanged.
159 * @param t a type argument, either a wildcard or a type
547 //compute non-wildcard parameterization - JLS 9.9
560 //compute new type-argument based on declared bound and wildcard bound
576 //not a wildcard - the new type argument remains unchanged
782 // TODO: JDK-8039198, bounds checking sometimes passes in a wildcard as s
1369 return isSameWildcard(t, ((CapturedType)s).wildcard);
[all...]
/openjdk10/langtools/test/tools/javac/lib/
H A DDPrinter.java1288 printType("wildcard", type.wildcard, Details.FULL);
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/
H A DInfer.java454 /* T is a reference type, but is not a wildcard-parameterized type, and either
456 if (captureOfTo == to) { //not a wildcard parameterized type
458 * where S is a wildcard-parameterized type, or
648 * so that wildcard bounds, as well as explicit lambda/method ref parameters
945 /* This wildcard check is temporary workaround. This code may need to be
1545 upper, lower, prevCaptured.wildcard);

Completed in 189 milliseconds

123456