Searched refs:union (Results 1 - 25 of 86) sorted by relevance

1234

/openjdk10/jdk/test/javax/management/descriptor/
H A DUnionTest.java27 * @summary Test ImmutableDescriptor.union
38 import static javax.management.ImmutableDescriptor.union;
47 checkEmpty(union());
48 checkEmpty(union(immutableEmpty));
49 checkEmpty(union(mutableEmpty));
50 checkEmpty(union(EMPTY_DESCRIPTOR, immutableEmpty, mutableEmpty));
51 checkEmpty(union(null, immutableEmpty, null));
73 checkEqual(union(immutableNumbers), immutableNumbers);
74 checkEqual(union(immutableNumbers, mutableNumbers), immutableNumbers);
75 checkEqual(union(mutableNumber
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/dtd/models/
H A DCMBinOp.java94 // Its the the union of the first positions of our children.
96 toSet.union(fRightChild.firstPos());
101 // If our left child is nullable, then its the union of our
107 toSet.union(fRightChild.firstPos());
119 // Its the the union of the first positions of our children.
121 toSet.union(fRightChild.lastPos());
126 // If our right child is nullable, then its the union of our
132 toSet.union(fLeftChild.lastPos());
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/schemagen/xmlschema/
H A DSimpleDerivation.java45 public Union union(); method in interface:SimpleDerivation
/openjdk10/jaxws/src/jdk.xml.bind/share/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
/openjdk10/jdk/test/java/util/LinkedHashSet/
H A DBasic.java51 Set union = clone(s1); union.addAll(s2);
67 if (!intersection.equals(union))
70 if (new LinkedHashSet(union).hashCode() != union.hashCode())
73 Iterator e = union.iterator();
80 e = union.iterator();
83 if (!union.contains(o))
86 if (union.contains(o))
89 if (!union
[all...]
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/gbind/
H A DSequence.java63 lastSet = ElementSets.union(lhs.lastSet(),rhs.lastSet());
77 rhs.buildDAG(ElementSets.union(incoming,lhs.lastSet()));
H A DOneOrMore.java52 child.buildDAG(ElementSets.union(incoming,child.lastSet()));
H A DChoice.java29 * {@link Expression} that represents the union of two expressions "A|B".
58 return ElementSets.union(lhs.lastSet(),rhs.lastSet());
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
/openjdk10/jdk/src/java.management/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));
H A DMXBeanIntrospector.java164 descriptor = ImmutableDescriptor.union(descriptor,
168 descriptor = ImmutableDescriptor.union(descriptor,
224 descriptor = ImmutableDescriptor.union(descriptor,
245 descriptor = ImmutableDescriptor.union(descriptor,
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/models/
H A DXSCMBinOp.java91 // Its the the union of the first positions of our children.
93 toSet.union(fRightChild.firstPos());
97 // If our left child is nullable, then its the union of our
103 toSet.union(fRightChild.firstPos());
112 // Its the the union of the first positions of our children.
114 toSet.union(fRightChild.lastPos());
118 // If our right child is nullable, then its the union of our
124 toSet.union(fLeftChild.lastPos());
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/
H A DNodeUnionFind.java37 * Create a new union-find data structure for a {@link Graph}. Initially, all nodes are in their
54 public void union(Node a, Node b) { method in class:NodeUnionFind
55 union(getNodeId(a), getNodeId(b));
73 private void union(int a, int b) { method in class:NodeUnionFind
/openjdk10/jdk/test/java/util/Collections/
H A DCheckedSetBash.java64 Set<Integer> union = clone(s1, supplier); union.addAll(s2);
80 if (!intersection.equals(union))
83 if (new HashSet(union).hashCode() != union.hashCode())
86 Iterator e = union.iterator();
93 e = union.iterator();
96 if (!union.contains(o))
99 if (union.contains(o))
102 if (!union
[all...]
H A DCheckedListBash.java51 List union = clone(s1); union.addAll(s2);
67 if (!(intersection.containsAll(union) &&
68 union.containsAll(intersection)))
71 Iterator e = union.iterator();
77 e = union.iterator();
80 if (!union.contains(o))
84 if (!union.isEmpty())
/openjdk10/jaxws/src/jdk.xml.bind/share/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
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/sjavac/
H A DUtil.java198 public static <E> Set<E> union(Set<? extends E> s1, method in class:Util
200 Set<E> union = new HashSet<>();
201 union.addAll(s1);
202 union.addAll(s2);
203 return union;
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/dfa/
H A DLocationMarker.java89 S union = newLiveValueSet();
91 union.putAll(liveInMap.get(succ));
95 if (outSet == null || !union.equals(outSet)) {
96 liveOutMap.put(block, union);
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DWildcardNameClassBuilder.java68 public NameClass union(XSWildcard.Union wc) { method in class:WildcardNameClassBuilder
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSDSimpleTypeTraverser.java46 * final = (#all | (list | union | restriction))
50 * Content: (annotation?, (restriction | list | union))
67 * <union
72 * </union>
193 // annotation?,(list|restriction|union)
209 // (list|restriction|union)
211 reportSchemaError("s4s-elt-must-match.2", new Object[]{SchemaSymbols.ELT_SIMPLETYPE, "(annotation?, (restriction | list | union))"}, simpleTypeDecl);
214 // derivation type: restriction/list/union
217 boolean restriction = false, list = false, union = false;
228 union
[all...]
/openjdk10/jaxws/src/jdk.xml.bind/share/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
/openjdk10/jdk/src/java.base/share/classes/java/util/regex/
H A DCharPredicates.java94 return DIGIT().union(ch -> (ch >= 0x0030 && ch <= 0x0039) ||
114 return ALPHABETIC().union(DIGIT());
147 return GRAPH().union(BLANK()).and(CONTROL().negate());
161 return ALPHABETIC().union(ch -> ((((1 << Character.NON_SPACING_MARK) |
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/tree/analysis/
H A DSmallSet.java126 Set<E> union(final SmallSet<E> s) { method in class:SmallSet
/openjdk10/jdk/src/java.base/share/classes/sun/security/x509/
H A DGeneralSubtrees.java330 union(other);
432 union(newThis);
472 * construct union of this GeneralSubtrees with other.
476 public void union(GeneralSubtrees other) { method in class:GeneralSubtrees

Completed in 117 milliseconds

1234