/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/visitor/ |
H A D | XSTermFunction.java | 41 T wildcard( XSWildcard wc ); method in interface:XSTermFunction
|
H A D | XSTermFunctionWithParam.java | 41 T wildcard( XSWildcard wc, P param ); method in interface:XSTermFunctionWithParam
|
H A D | XSTermVisitor.java | 40 void wildcard( XSWildcard wc ); method in interface:XSTermVisitor
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/ |
H A D | ExpressionBuilder.java | 63 private GWildcardElement wildcard = null; field in class:ExpressionBuilder 73 public Expression wildcard(XSWildcard wc) { method in class:ExpressionBuilder 74 if(wildcard==null) 75 wildcard = new GWildcardElement(); 76 wildcard.merge(wc); 77 wildcard.particles.add(current); 78 return wildcard;
|
H A D | MultiplicityCounter.java | 63 public Multiplicity wildcard(XSWildcard wc) { method in class:MultiplicityCounter
|
H A D | BindBlue.java | 60 public void wildcard(XSWildcard xsWildcard) { method in class:BindBlue
|
H A D | BindGreen.java | 86 public void wildcard(XSWildcard xsWildcard) { method in class:BindGreen
|
H A D | BindPurple.java | 119 public void wildcard(XSWildcard xsWildcard) { method in class:BindPurple 121 // so this one is for attribute wildcard.
|
H A D | BindRed.java | 56 public void wildcard(XSWildcard xsWildcard) { method in class:BindRed
|
H A D | BindYellow.java | 47 public void wildcard(XSWildcard xsWildcard) { method in class:BindYellow
|
H A D | RawTypeSetBuilder.java | 108 // if the DOM customization is present, bind it like a wildcard 118 public void wildcard(XSWildcard wc) { method in class:RawTypeSetBuilder 149 * Reference to a wildcard. 154 WildcardRef(XSWildcard wildcard) { argument 155 this.mode = getMode(wildcard); 161 private static WildcardMode getMode(XSWildcard wildcard) { argument 162 switch(wildcard.getMode()) { 175 // we don't allow a mapping to typeRef if the wildcard is present
|
H A D | ClassBinderFilter.java | 103 public CElement wildcard(XSWildcard xsWildcard) { method in class:ClassBinderFilter 104 return core.wildcard(xsWildcard);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/ |
H A D | AttGroupDeclImpl.java | 55 private WildcardImpl wildcard; field in class:AttGroupDeclImpl 56 public void setWildcard( WildcardImpl wc ) { wildcard=wc; } 57 public XSWildcard getAttributeWildcard() { return wildcard; }
|
/openjdk7/jdk/src/share/classes/com/sun/rmi/rmid/ |
H A D | ExecOptionPermission.java | 44 * does this permission have a wildcard at the end? 46 private transient boolean wildcard; field in class:ExecOptionPermission 49 * the name without the wildcard on the end 91 if (this.wildcard) { 92 if (that.wildcard) { 93 // one wildcard can imply another 101 if (that.wildcard) { 102 // a non-wildcard can't imply a wildcard 198 wildcard [all...] |
/openjdk7/jdk/src/share/classes/java/security/ |
H A D | BasicPermission.java | 49 * may appear at the end of the name, to signify a wildcard match. 77 // does this permission have a wildcard at the end? 78 private transient boolean wildcard; field in class:BasicPermission 80 // the name without the wildcard on the end 103 // Is wildcard or ends with ".*"? 105 wildcard = true; 113 wildcard = true; 181 if (this.wildcard) { 182 if (that.wildcard) { 183 // one wildcard ca [all...] |
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/ |
H A D | JClass.java | 299 public final JClass wildcard() { method in class:JClass
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/ |
H A D | ReferencePropertyInfoImpl.java | 71 private final WildcardMode wildcard; field in class:ReferencePropertyInfoImpl 89 wildcard = null; 92 wildcard = xae.lax()?WildcardMode.LAX:WildcardMode.SKIP; 387 return wildcard;
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/util/ |
H A D | ComponentNameFunction.java | 151 * @see com.sun.xml.internal.xsom.visitor.XSTermFunction#wildcard(XSWildcard) 153 public String wildcard(XSWildcard wc) { method in class:ComponentNameFunction 155 return nameGetter.wildcard( wc );
|
H A D | NameGetter.java | 126 public String wildcard(XSWildcard wc) { method in class:NameGetter 127 return localize("wildcard");
|
H A D | XSFinder.java | 147 * @see com.sun.xml.internal.xsom.visitor.XSTermFunction#wildcard(com.sun.xml.internal.xsom.XSWildcard) 149 public Boolean wildcard(XSWildcard wc) { method in class:XSFinder
|
H A D | XSFunctionFilter.java | 113 public T wildcard(XSWildcard wc) { method in class:XSFunctionFilter 114 return core.wildcard(wc);
|
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/ |
H A D | XSWildcardDecl.java | 33 * The XML representation for a wildcard declaration 47 // the type of wildcard: any, other, or list 80 // For a value which is either a namespace name or absent to be valid with respect to a wildcard constraint (the value of a {namespace constraint}) one of the following must be true: 174 * Check whether this wildcard has a weaker process contents than the super. 186 public XSWildcardDecl performUnionWith(XSWildcardDecl wildcard, argument 188 // if the other wildcard is not expressible, the result is still not expressible 189 if (wildcard == null) 192 // For a wildcard's {namespace constraint} value to be the intensional union of two 200 if (areSame(wildcard)) { 206 else if ( (fType == NSCONSTRAINT_ANY) || (wildcard 300 performIntersectionWith(XSWildcardDecl wildcard, short processContents) argument 397 areSame(XSWildcardDecl wildcard) argument [all...] |
/openjdk7/hotspot/src/share/tools/launcher/ |
H A D | wildcard.c | 40 * A wildcard only matches jar files, not class files in the same 51 * wildcard is replaced by the (possibly empty) sequence of elements 116 * WildcardIterator_for(wildcard) returns an iterator. 118 * of an entry in the wildcard's directory. The basename's memory 133 WildcardIterator_for(const char *wildcard) argument 137 HANDLE handle = FindFirstFile(wildcard, &find_data); 175 WildcardIterator_for(const char *wildcard) argument 178 int wildlen = strlen(wildcard); 182 char *dirname = JLI_StringDup(wildcard); 354 wildcardConcat(const char *wildcard, cons argument 366 wildcardFileList(const char *wildcard) argument [all...] |
/openjdk7/jdk/src/share/bin/ |
H A D | wildcard.c | 41 * A wildcard only matches jar files, not class files in the same 52 * wildcard is replaced by the (possibly empty) sequence of elements 117 * WildcardIterator_for(wildcard) returns an iterator. 119 * of an entry in the wildcard's directory. The basename's memory 135 WildcardIterator_for(const char *wildcard) argument 138 HANDLE handle = FindFirstFile(wildcard, &find_data); 175 WildcardIterator_for(const char *wildcard) argument 178 int wildlen = JLI_StrLen(wildcard); 182 char *dirname = JLI_StringDup(wildcard); 342 wildcardConcat(const char *wildcard, cons argument 354 wildcardFileList(const char *wildcard) argument [all...] |
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/ |
H A D | CReferencePropertyInfo.java | 66 private WildcardMode wildcard; field in class:CReferencePropertyInfo 82 // if(wildcard==null && !isMixed()) 113 if(wildcard!=null) { 114 if(wildcard.allowDom) 116 if(wildcard.allowTypedObject) 191 return wildcard; 195 this.wildcard = mode;
|