Searched defs:sets (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Dregmask.cpp256 // HIGHEST register number in the set, or BAD if no sets.
279 int sets = (bits & low_bits_mask); local
281 sets = (bits & (sets<<1)); // filter bits which produce whole sets
283 sets |= (sets>>1); // Smear 1 hi-bit into a set
285 sets |= (sets>>2); // Smear 2 hi-bits into a set
287 sets |
304 int sets = 0; local
[all...]
/openjdk7/jdk/test/java/util/BitSet/
H A DBSMethods.java89 private static void checkSanity(BitSet... sets) { argument
90 for (BitSet s : sets) {
359 // andNot the sets together
393 // And the sets together
441 // Or the sets together
482 // Xor the sets together
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/
H A DPolicy.java54 * Constant represents empty list of assertion sets. This represents the content of a 'NULL' policy - a policy with
60 * Constant represents list of assertion sets with single empty assertion set. This represents the content of
213 * alternatives specified by {@code sets} input parameter. If the collection of policy alternatives is null or empty
217 * @param sets represents the collection of policy alternatives of the policy object created. During the creation of
223 public static Policy createPolicy(final Collection<AssertionSet> sets) { argument
224 if (sets == null || sets.isEmpty()) {
227 return new Policy(POLICY_TOSTRING_NAME, sets);
233 * alternatives specified by {@code sets} input parameter. If the collection of policy alternatives is null or empty
239 * @param sets represent
245 createPolicy(final String name, final String policyId, final Collection<AssertionSet> sets) argument
268 createPolicy(NamespaceVersion nsVersion, final String name, final String policyId, final Collection<AssertionSet> sets) argument
309 Policy(final String toStringName, final Collection<AssertionSet> sets) argument
339 Policy(final String toStringName, final String name, final String policyId, final Collection<AssertionSet> sets) argument
380 Policy(final NamespaceVersion nsVersion, final String toStringName, final Collection<AssertionSet> sets) argument
411 Policy(final NamespaceVersion nsVersion, final String toStringName, final String name, final String policyId, final Collection<AssertionSet> sets) argument
449 addAll(final Collection<AssertionSet> sets) argument
[all...]

Completed in 61 milliseconds