Searched refs:rhs (Results 26 - 50 of 108) sorted by relevance

12345

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/host/
H A DIncludeHost.java63 private final Include rhs; field in class:IncludeHost
65 IncludeHost(Include lhs, Include rhs) { argument
66 super(lhs, rhs);
68 this.rhs = rhs;
76 rhs.endInclude( current, uri, ns, loc.rhs, anno.rhs );
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/util/
H A DForkEntityResolver.java41 private final EntityResolver rhs; field in class:ForkEntityResolver
43 public ForkEntityResolver(EntityResolver lhs, EntityResolver rhs) { argument
45 this.rhs = rhs;
52 return rhs.resolveEntity(systemId,systemId);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/util/
H A DForkEntityResolver.java41 private final EntityResolver rhs; field in class:ForkEntityResolver
43 public ForkEntityResolver(EntityResolver lhs, EntityResolver rhs) { argument
45 this.rhs = rhs;
52 return rhs.resolveEntity(publicId,systemId);
H A DForkContentHandler.java53 rhs = second;
71 private final ContentHandler lhs,rhs; field in class:ForkContentHandler
75 rhs.setDocumentLocator(locator);
80 rhs.startDocument();
85 rhs.endDocument();
90 rhs.startPrefixMapping(prefix,uri);
95 rhs.endPrefixMapping(prefix);
100 rhs.startElement(uri,localName,qName,attributes);
105 rhs.endElement(uri,localName,qName);
110 rhs
[all...]
/openjdk7/jdk/src/share/demo/applets/MoleculeViewer/
H A DMatrix3D.java176 void mult(Matrix3D rhs) { argument
177 float lxx = xx * rhs.xx + yx * rhs.xy + zx * rhs.xz;
178 float lxy = xy * rhs.xx + yy * rhs.xy + zy * rhs.xz;
179 float lxz = xz * rhs.xx + yz * rhs.xy + zz * rhs
[all...]
/openjdk7/jdk/src/share/demo/applets/WireFrame/
H A DMatrix3D.java176 void mult(Matrix3D rhs) { argument
177 float lxx = xx * rhs.xx + yx * rhs.xy + zx * rhs.xz;
178 float lxy = xy * rhs.xx + yy * rhs.xy + zy * rhs.xz;
179 float lxz = xz * rhs.xx + yz * rhs.xy + zz * rhs
[all...]
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DFontRenderContext.java309 * Return true if rhs has the same transform, antialiasing,
311 * @param rhs the <code>FontRenderContext</code> to test for equality
312 * @return <code>true</code> if <code>rhs</code> is equal to
317 public boolean equals(FontRenderContext rhs) { argument
318 if (this == rhs) {
321 if (rhs == null) {
326 if (!rhs.defaulting && !defaulting) {
327 if (rhs.aaHintValue == aaHintValue &&
328 rhs.fmHintValue == fmHintValue) {
330 return tx == null ? rhs
[all...]
H A DShapeGraphicAttribute.java208 * @param rhs the <code>Object</code> to compare for equality
210 * <code>ShapeGraphicAttribute</code> equals <code>rhs</code>;
213 public boolean equals(Object rhs) { argument
216 return equals((ShapeGraphicAttribute) rhs);
226 * @param rhs the <code>ShapeGraphicAttribute</code> to compare for
229 * <code>ShapeGraphicAttribute</code> equals <code>rhs</code>;
232 public boolean equals(ShapeGraphicAttribute rhs) { argument
234 if (rhs == null) {
238 if (this == rhs) {
242 if (fStroke != rhs
[all...]
H A DTransformAttribute.java134 * Returns <code>true</code> if rhs is a <code>TransformAttribute</code>
137 * @param rhs the object to compare to
143 public boolean equals(Object rhs) { argument
145 TransformAttribute that = (TransformAttribute)rhs;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DMultiplicity.java124 public boolean includes( Multiplicity rhs ) {
125 if (rhs.min.compareTo(min) == -1) return false;
127 if (rhs.max==null) return false;
128 return rhs.max.compareTo(max) <= 0;
164 public static Multiplicity choice( Multiplicity lhs, Multiplicity rhs ) {
166 lhs.min.min(rhs.min),
167 (lhs.max==null || rhs.max==null) ? null : lhs.max.max(rhs.max) );
169 public static Multiplicity group( Multiplicity lhs, Multiplicity rhs ) {
171 lhs.min.add(rhs
[all...]
H A DCCustomizations.java128 public static CCustomizations merge(CCustomizations lhs, CCustomizations rhs) { argument
129 if(lhs==null || lhs.isEmpty()) return rhs;
130 if(rhs==null || rhs.isEmpty()) return lhs;
133 r.addAll(rhs);
/openjdk7/jdk/src/share/classes/java/awt/
H A DJobAttributes.java955 JobAttributes rhs = (JobAttributes)obj;
958 if (rhs.fileName != null) {
962 if (!fileName.equals(rhs.fileName)) {
968 if (rhs.pageRanges != null) {
972 if (rhs.pageRanges == null ||
973 pageRanges.length != rhs.pageRanges.length) {
977 if (pageRanges[i][0] != rhs.pageRanges[i][0] ||
978 pageRanges[i][1] != rhs.pageRanges[i][1]) {
985 if (rhs.printer != null) {
989 if (!printer.equals(rhs
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJFieldRef.java113 public JExpression assign(JExpression rhs) { argument
114 return JExpr.assign(this, rhs);
116 public JExpression assignPlus(JExpression rhs) { argument
117 return JExpr.assignPlus(this, rhs);
H A DJType.java170 final String rhs = o.fullName();
172 boolean q = rhs.startsWith("java");
179 return fullName().compareTo(rhs);
H A DJVar.java209 public JExpression assign(JExpression rhs) { argument
210 return JExpr.assign(this,rhs);
212 public JExpression assignPlus(JExpression rhs) { argument
213 return JExpr.assignPlus(this,rhs);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/
H A DSchemaDocumentImpl.java113 SchemaDocumentImpl rhs = (SchemaDocumentImpl) o;
115 if( this.schemaDocumentURI==null || rhs.schemaDocumentURI==null)
116 return this==rhs;
117 if(!schemaDocumentURI.equals(rhs.schemaDocumentURI) )
119 return this.schema==rhs.schema;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/gbind/
H A DElementSet.java62 boolean contains(ElementSet rhs); argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/util/
H A DShortListImpl.java96 ShortList rhs = (ShortList)obj;
98 if (fLength != rhs.getLength()) {
102 if (fArray[i] != rhs.item(i)) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/datatype/
H A DDurationImpl.java723 public int compare(Duration rhs) { argument
789 // check for fields that are too large in rhs Duration
790 BigInteger rhsYears = (BigInteger) rhs.getField(DatatypeConstants.YEARS);
801 BigInteger rhsMonths = (BigInteger) rhs.getField(DatatypeConstants.MONTHS);
812 BigInteger rhsDays = (BigInteger) rhs.getField(DatatypeConstants.DAYS);
823 BigInteger rhsHours = (BigInteger) rhs.getField(DatatypeConstants.HOURS);
834 BigInteger rhsMinutes = (BigInteger) rhs.getField(DatatypeConstants.MINUTES);
845 BigDecimal rhsSecondsAsBigDecimal = (BigDecimal) rhs.getField(DatatypeConstants.SECONDS);
884 rhsCalendar.add(GregorianCalendar.YEAR, rhs.getYears() * rhs
1677 add(final Duration rhs) argument
1844 subtract(final Duration rhs) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DUName.java99 UName rhs = (UName)o2;
100 int r = lhs.nsUri.compareTo(rhs.nsUri);
102 return lhs.localName.compareTo(rhs.localName);
H A DWildcardImpl.java60 public WildcardImpl union( SchemaDocumentImpl owner, WildcardImpl rhs ) {
61 if(this instanceof Any || rhs instanceof Any)
64 if(this instanceof Finite && rhs instanceof Finite) {
67 values.addAll( ((Finite)rhs ).names );
71 if(this instanceof Other && rhs instanceof Other) {
73 ((Other)rhs).otherNamespace) )
84 o=(Other)this; f=(Finite)rhs;
86 o=(Other)rhs; f=(Finite)this;
/openjdk7/jdk/test/javax/management/query/
H A DQueryExpStringTest.java254 ValueExp rhs = parseExp(ss);
258 return Query.eq(lhs, rhs);
260 return Query.lt(lhs, rhs);
262 return Query.gt(lhs, rhs);
264 return Query.leq(lhs, rhs);
266 return Query.geq(lhs, rhs);
274 return Query.between(lhs, rhs, high);
298 ValueExp rhs = parsePrimary(ss);
300 case '+': lhs = Query.plus(lhs, rhs); break;
301 case '-': lhs = Query.minus(lhs, rhs); brea
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DAttributeValues.java439 public boolean equals(Object rhs) { argument
441 return equals((AttributeValues)rhs);
448 public boolean equals(AttributeValues rhs) { argument
453 if (rhs == null) return false;
454 if (rhs == this) return true;
456 return defined == rhs.defined
457 && nondefault == rhs.nondefault
458 && underline == rhs.underline
459 && strikethrough == rhs.strikethrough
460 && superscript == rhs
552 equals(Object lhs, Object rhs) argument
[all...]
H A DFontLineMetrics.java101 public final boolean equals(Object rhs) { argument
103 return cm.equals(((FontLineMetrics)rhs).cm);
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/server/
H A DInstancesCountQuery.java77 JavaClass rhs = (JavaClass) rhso;
79 - rhs.getInstancesCount(false);
84 String right = rhs.getName();

Completed in 99 milliseconds

12345