Searched defs:difference (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/lib/
H A DExsltSets.java148 * The set:difference function returns the difference between two node sets - those nodes that
158 public static NodeList difference(NodeList nl1, NodeList nl2) method in class:ExsltSets
H A DExtensions.java154 * Returns the difference between two node-sets.
164 public static NodeList difference(NodeList nl1, NodeList nl2) method in class:Extensions
166 return ExsltSets.difference(nl1, nl2);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/serialization/
H A DPrinter.java70 attributes.setProperty("difference", Boolean.toString(true));
87 public void export(XMLWriter writer, InputGraph graph, InputGraph previous, boolean difference) throws IOException { argument
108 if (difference) {
115 if (!difference || !equal.contains(n)) {
138 if (difference) {
145 if (!difference || !equalEdges.contains(e)) {
H A DParser.java88 public static final String DIFFERENCE_PROPERTY = "difference";
90 private boolean difference; field in class:Parser
118 Parser.this.difference = false;
121 Parser.this.difference = true;
199 if (!difference) {
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Difference/src/com/sun/hotspot/igv/difference/
H A DDifference.java25 package com.sun.hotspot.igv.difference;
290 boolean difference = false;
294 difference = true;
302 difference = true;
307 if (difference) {
/openjdk7/jdk/make/tools/src/build/tools/generatebreakiteratordata/
H A DCharSet.java598 public CharSet difference(CharSet that) { method in class:CharSet
/openjdk7/jdk/src/share/classes/javax/swing/
H A DSpring.java43 * maximum value. The difference between the <em>preferred</em> and
45 * spring can be compressed and the difference between its <em>maximum</em>
607 /*pp*/ static Spring difference(Spring s1, Spring s2) { method in class:Spring
H A DSpringLayout.java430 private Spring difference(Spring s1, Spring s2) { method in class:SpringLayout.Constraints
431 return (s1 == null || s2 == null) ? null : Spring.difference(s1, s2);
529 x = difference(east, width);
531 x = difference(horizontalCenter, scale(width, 0.5f));
533 x = difference(scale(horizontalCenter, 2f), east);
567 y = difference(south, height);
569 y = difference(verticalCenter, scale(height, 0.5f));
571 y = difference(scale(verticalCenter, 2f), south);
573 y = difference(baseline, heightToRelativeBaseline(height));
575 y = scale(difference(baselin
[all...]
/openjdk7/jdk/src/share/classes/java/math/
H A DMutableBigInteger.java537 long difference = q[offset] - product;
538 q[offset--] = (int)difference;
540 + (((difference & LONG_MASK) >
694 private int difference(MutableBigInteger b) { method in class:MutableBigInteger
1174 if ((tsign = u.difference(v)) == 0)
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXDecoratedPeer.java243 private static Insets difference(Insets i1, Insets i2) { method in class:XDecoratedPeer
375 Insets correction = difference(correctWM, currentInsets);

Completed in 46 milliseconds