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

1234

/openjdk7/jdk/test/javax/management/descriptor/
H A DUnionTest.java27 * @summary Test ImmutableDescriptor.union
37 import static javax.management.ImmutableDescriptor.union;
46 checkEmpty(union());
47 checkEmpty(union(immutableEmpty));
48 checkEmpty(union(mutableEmpty));
49 checkEmpty(union(EMPTY_DESCRIPTOR, immutableEmpty, mutableEmpty));
50 checkEmpty(union(null, immutableEmpty, null));
72 checkEqual(union(immutableNumbers), immutableNumbers);
73 checkEqual(union(immutableNumbers, mutableNumbers), immutableNumbers);
74 checkEqual(union(mutableNumber
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A Dfirst.set38 <specification> typedef, struct, union, enum, const, exception, interface, module
40 <specification'> <FOLLOW>, typedef, struct, union, enum, const, exception, interface, module
42 <definition> typedef, struct, union, enum, const, exception, interface, module
46 <module'> typedef, struct, union, enum, const, exception, interface, module
48 <module''> typedef, struct, union, enum, const, exception, interface, module, <FOLLOW>
56 <interface_body> typedef, struct, union, enum, const, exception, readonly, attribute, oneway, float, double, long, short, unsigned, char, boolean, octet, any, string, id, ::, void, state
58 <interface_body'> <FOLLOW>, typedef, struct, union, enum, const, exception, readonly, attribute, oneway, float, double, long, short, unsigned, char, boolean, octet, any, string, id, ::, void, state
60 <export> typedef, struct, union, enum, const, exception, readonly, attribute, oneway, float, double, long, short, unsigned, char, boolean, octet, any, string, id, ::, void, state
64 <state_def'> private, protected, public, float, double, long, short, unsigned, char, boolean, octet, any, sequence, string, id, ::, struct, union, enum, <FOLLOW>
66 <state_member> private, protected, public, float, double, long, short, unsigned, char, boolean, octet, any, sequence, string, id, ::, struct, union, enu
[all...]
H A Dfollow.set42 <definition> EOF, typedef, struct, union, enum, const, exception, interface, module, }
60 <export> typedef, struct, union, enum, const, exception, readonly, attribute, oneway, float, double, long, short, unsigned, char, boolean, octet, any, string, id, ::, void, state, }
62 <state_def> typedef, struct, union, enum, const, exception, readonly, attribute, oneway, float, double, long, short, unsigned, char, boolean, octet, any, string, id, ::, void, state, }
66 <state_member> private, protected, public, float, double, long, short, unsigned, char, boolean, octet, any, sequence, string, id, ::, struct, union, enum, }
68 <state_modifier> float, double, long, short, unsigned, char, boolean, octet, any, sequence, string, id, ::, struct, union, enum
162 <member> float, double, long, short, unsigned, char, boolean, octet, any, sequence, string, id, ::, struct, union, enum, }
174 <case'> float, double, long, short, unsigned, char, boolean, octet, any, sequence, string, id, ::, struct, union, enum
176 <case_label> case, default, float, double, long, short, unsigned, char, boolean, octet, any, sequence, string, id, ::, struct, union, enum
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/models/
H A DCMBinOp.java134 // Its the the union of the first positions of our children.
136 toSet.union(fRightChild.firstPos());
141 // If our left child is nullable, then its the union of our
147 toSet.union(fRightChild.firstPos());
159 // Its the the union of the first positions of our children.
161 toSet.union(fRightChild.lastPos());
166 // If our right child is nullable, then its the union of our
172 toSet.union(fLeftChild.lastPos());
/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/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/test/java/util/Collections/
H A DCheckedSetBash.java51 Set union = clone(s1); union.addAll(s2);
67 if (!intersection.equals(union))
70 if (new HashSet(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...]
H A DCheckedListBash.java50 List union = clone(s1); union.addAll(s2);
66 if (!(intersection.containsAll(union) &&
67 union.containsAll(intersection)))
70 Iterator e = union.iterator();
76 e = union.iterator();
79 if (!union.contains(o))
83 if (!union.isEmpty())
/openjdk7/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...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/GiopIDL/
H A Dmessages.idl43 union TargetAddress switch (AddressingDisposition) {
/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));
H A DMXBeanIntrospector.java164 descriptor = ImmutableDescriptor.union(descriptor,
168 descriptor = ImmutableDescriptor.union(descriptor,
224 descriptor = ImmutableDescriptor.union(descriptor,
245 descriptor = ImmutableDescriptor.union(descriptor,
/openjdk7/jaxws/src/share/jaxws_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
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/models/
H A DXSCMBinOp.java90 // Its the the union of the first positions of our children.
92 toSet.union(fRightChild.firstPos());
96 // If our left child is nullable, then its the union of our
102 toSet.union(fRightChild.firstPos());
111 // Its the the union of the first positions of our children.
113 toSet.union(fRightChild.lastPos());
117 // If our right child is nullable, then its the union of our
123 toSet.union(fLeftChild.lastPos());
/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/jaxp/src/com/sun/org/apache/xerces/internal/impl/msg/
H A DXMLSchemaMessages_sv.properties40 dt-whitespace = Aspektv\u00E4rde f\u00F6r blanktecken \u00E4r inte tillg\u00E4ngligt f\u00F6r simpleType ''{0}'' med union
167 src-union-memberTypes-or-simpleTypes = src-union-memberTypes-or-simpleTypes: Ett <union>-element m\u00E5ste anges med antingen ett icke-tomt memberTypes-[attribut] eller minst ett <simpleType>-element bland [underordnade].
191 cos-st-restricts.3.3.1.1 = cos-st-restricts.3.3.1.1: Den ''{''sista''}'' komponenten i \''{\''medlemtypdefinitionerna\''}\'', ''{0}'', inneh\u00E5ller ''union''. Detta betyder att ''{0}'' inte kan anv\u00E4ndas som medlemstyp f\u00F6r uniontyp ''{1}''.
/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/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/xerces/internal/impl/xs/traversers/
H A DXSDSimpleTypeTraverser.java47 * final = (#all | (list | union | restriction))
51 * Content: (annotation?, (restriction | list | union))
68 * <union
73 * </union>
195 // annotation?,(list|restriction|union)
211 // (list|restriction|union)
213 reportSchemaError("s4s-elt-must-match.2", new Object[]{SchemaSymbols.ELT_SIMPLETYPE, "(annotation?, (restriction | list | union))"}, simpleTypeDecl);
216 // derivation type: restriction/list/union
219 boolean restriction = false, list = false, union = false;
230 union
[all...]
/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/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);

Completed in 121 milliseconds

1234