Searched defs:union (Results 1 - 22 of 22) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/visitor/
H A DXSWildcardFunction.java39 T union( XSWildcard.Union wc ); method in interface:XSWildcardFunction
H A DXSWildcardVisitor.java39 void union( XSWildcard.Union wc ); method in interface:XSWildcardVisitor
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DDescriptorCache.java58 public ImmutableDescriptor union(Descriptor... descriptors) { method in class:DescriptorCache
59 return get(ImmutableDescriptor.union(descriptors));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/gbind/
H A DElementSets.java37 * Returns an union of two {@link ElementSet}s.
41 public static ElementSet union(ElementSet lhs, ElementSet rhs) { method in class:ElementSets
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DWildcardNameClassBuilder.java68 public NameClass union(XSWildcard.Union wc) { method in class:WildcardNameClassBuilder
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/schemagen/xmlschema/
H A DSimpleDerivation.java40 public Union union(); method in interface:SimpleDerivation
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/util/
H A DTypeSet.java65 * Calculate the TypeSet formed by the union of two
70 * @return the union of a and b
72 public static TypeSet union(final TypeSet a, final TypeSet b) { method in class:TypeSet
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DMemRegion.java110 public MemRegion union(MemRegion mr2) { method in class:MemRegion
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/models/
H A DCMStateSet.java220 public final void union(CMStateSet setToOr) method in class:CMStateSet
/openjdk7/jdk/make/tools/src/build/tools/generatebreakiteratordata/
H A DCharSet.java47 * operations such as union and intersection can be performed.) The
316 // with that letter, and union together all of the matching sets that
322 result = result.union(new CharSet(CharacterCategory.getCategoryMap(i)));
392 * Returns a CharSet representing the union of two CharSets.
394 public CharSet union(CharSet that) { method in class:CharSet
406 * The actual implementation of the union functions
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DWildcardImpl.java59 // compute the union
60 public WildcardImpl union( SchemaDocumentImpl owner, WildcardImpl rhs ) { method in class:WildcardImpl
160 visitor.union(this);
163 return function.union(this);
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DGeneralSubtrees.java332 union(other);
434 union(newThis);
474 * construct union of this GeneralSubtrees with other.
478 public void union(GeneralSubtrees other) { method in class:GeneralSubtrees
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DDefaultHighlighter.java422 Rectangle r = p0.union(p1);
532 void union(Shape bounds) { method in class:DefaultHighlighter.LayeredHighlightInfo
571 // Paint the appropriate region using the painter and union
573 union(((LayeredHighlighter.LayerPainter)painter).paintLayer
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DRectangle2D.java280 Rectangle2D.union(this, r, dest);
474 Rectangle2D.union(this, r, dest);
744 * union of this <code>Rectangle2D</code> with the specified
767 * results of the union of <code>src1</code> and
771 public static void union(Rectangle2D src1, method in class:Rectangle2D
833 * is the union of the two <code>Rectangle2D</code> objects.
/openjdk7/jdk/src/share/classes/javax/management/
H A DImmutableDescriptor.java196 * <p>Return an {@code ImmutableDescriptor} whose contents are the union of
209 * ImmutableDescriptor copy = ImmutableDescriptor.union(d);
215 * @return an {@code ImmutableDescriptor} that is the union of the given
226 public static ImmutableDescriptor union(Descriptor... descriptors) { method in class:ImmutableDescriptor
/openjdk7/jdk/src/share/classes/java/awt/
H A DRectangle.java73 * will contribute that location to the union and add operations.
843 * Computes the union of this <code>Rectangle</code> with the
846 * represents the union of the two rectangles.
865 public Rectangle union(Rectangle r) { method in class:Rectangle
988 * The resulting <code>Rectangle</code> is the union of the two
1177 return union((Rectangle) r);
1180 Rectangle2D.union(this, r, dest);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/scd/
H A DAbstractAxisImpl.java68 protected final Iterator<T> union(T... items) { method in class:AbstractAxisImpl
72 protected final Iterator<T> union(Iterator<? extends T> first, Iterator<? extends T> second) { method in class:AbstractAxisImpl
/openjdk7/jdk/src/share/classes/sun/security/acl/
H A DAclImpl.java150 * The group positive permission set is the union of all
152 * The group negative permission set is the union of all
200 union(individualPositive, temp1);
215 Enumeration<Permission> netNegative = union(individualNegative, temp1);
295 private static Enumeration<Permission> union(Enumeration<Permission> e1, method in class:AclImpl
337 groupPositive = union(ae.permissions(), groupPositive);
350 groupNegative = union(ae.permissions(), groupNegative);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/compiler/
H A DCompiler.java164 expr = union(opPos); break;
592 * Compile a location path union. The UnionPathIterator itself may create
601 protected Expression union(int opPos) throws TransformerException method in class:Compiler
617 * Get the level of the location path or union being constructed.
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypes.java2682 cl = union(cl, closure(l.head));
2702 * Form the union of two closures
2704 public List<Type> union(List<Type> cl1, List<Type> cl2) { method in class:Types
2710 return union(cl1.tail, cl2).prepend(cl1.head);
2712 return union(cl1, cl2.tail).prepend(cl2.head);
2714 return union(cl1.tail, cl2.tail).prepend(cl1.head);
2994 List<Type> closure = union(closure(t), closure(s));
3385 cl = union(cl, superClosure(l.head, s));
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DCheck.java1221 /** Form the union of two type set lists.
1223 List<Type> union(List<Type> ts1, List<Type> ts2) { method in class:Check
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java136 * or <tt>m</tt> through <tt>p</tt>: <tt>[a-dm-p]</tt> (union)</td></tr>
392 * may be composed by the union operator (implicit) and the intersection
394 * The union operator denotes a class that contains every character that is
711 * <li><p> Character-class union and intersection as described
2453 prev = union(prev, node);
2467 rightNode = union(rightNode, clazz(true));
2513 prev = union(prev, node);
5145 * Returns the set union of two CharProperty nodes.
5147 private static CharProperty union(final CharProperty lhs, method in class:Pattern

Completed in 98 milliseconds