Searched refs:complement (Results 1 - 16 of 16) sorted by relevance

/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/spi/orbutil/fsm/
H A DGuard.java45 return guard.evaluate( fsm, in ).complement() ;
62 public Result complement() method in class:Guard.Result
H A DFSMTest.java135 return guard.evaluate( fsm, in ).complement() ;
/openjdk9/langtools/test/tools/sjavac/
H A DIncludeExcludePatterns.java120 Set<Path> complement = new HashSet<>(Arrays.asList(ALL_PATHS));
121 complement.removeAll(Arrays.asList(sourcesExpectedToBeVisible));
122 testFilter("-x " + filterArgs, complement);
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/codemodel/internal/
H A DJExpressionImpl.java49 public final JExpression complement() { method in class:JExpressionImpl
50 return JOp.complement(this);
H A DJExpression.java57 JExpression complement(); method in interface:JExpression
H A DJOp.java88 public static JExpression complement(JExpression e) { method in class:JOp
/openjdk9/jdk/src/java.base/share/classes/java/util/
H A DEnumSet.java190 * @param s the enum set from whose complement to initialize this enum set
191 * @return The complement of the specified set in this set
196 result.complement();
390 abstract void complement(); method in class:EnumSet
H A DRegularEnumSet.java57 void complement() { method in class:RegularEnumSet
H A DArrayList.java742 boolean batchRemove(Collection<?> c, boolean complement, argument
749 for (r = from; r < end && c.contains(es[r]) == complement; r++)
755 if (c.contains(e = es[r]) == complement)
1127 private boolean batchRemove(Collection<?> c, boolean complement) { argument
1131 root.batchRemove(c, complement, offset, offset + size);
H A DJumboEnumSet.java77 void complement() { method in class:JumboEnumSet
H A DCollections.java3849 private boolean batchRemove(Collection<?> c, boolean complement) { argument
3854 if (c.contains(it.next()) != complement) {
/openjdk9/jdk/src/java.base/share/classes/sun/text/normalizer/
H A DUnicodeSet.java65 * <code>complement</code> taking an argument, and a boolean NOT is
66 * implemented by <code>complement</code> with no argument. In terms
69 * is an asymmetric difference, and <code>complement</code> with no
70 * argument is a set complement with respect to the superset range
138 * specify their union. To complement a set, place a '^' immediately
361 complement(start, end);
574 public UnicodeSet complement(int start, int end) { method in class:UnicodeSet
1334 * <li>The complement of the set contains the opposite set of code points, but the same set of strings.
/openjdk9/jdk/make/src/classes/build/tools/generatebreakiteratordata/
H A DCharSet.java614 public CharSet complement() { method in class:CharSet
627 * The internal implementation function for the complement routines
630 // the complement of an empty CharSet is one containing everything
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/
H A DType.java1883 public InferenceBound complement() { return UPPER; }
1887 public InferenceBound complement() { return EQ; }
1891 public InferenceBound complement() { return LOWER; }
1894 public abstract InferenceBound complement(); method in class:Type.UndetVar.InferenceBound
2101 ((UndetVar)bound).addBound(ib.complement(), this, types, false);
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/
H A DInferenceContext.java459 if (ib == boundKind.complement()) {
H A DInfer.java999 uv2.addBound(ib.complement(), uv, types);

Completed in 213 milliseconds