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

12345

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/datatype/
H A DXMLGregorianCalendarImpl.java1435 * @param rhs instance of <code>XMLGregorianCalendar</code> to compare
1437 * @return the relationship between <code>lhs</code> and <code>rhs</code> as
1443 * @throws NullPointerException if <code>lhs</code> or <code>rhs</code>
1446 public int compare(XMLGregorianCalendar rhs) { argument
1452 XMLGregorianCalendarImpl Q = (XMLGregorianCalendarImpl) rhs;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DClassInfoImpl.java491 int rhs = checkedGet(o2);
493 return lhs-rhs;
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java5148 final CharProperty rhs) {
5151 return lhs.isSatisfiedBy(ch) || rhs.isSatisfiedBy(ch);}};
5158 final CharProperty rhs) {
5161 return lhs.isSatisfiedBy(ch) && rhs.isSatisfiedBy(ch);}};
5168 final CharProperty rhs) {
5171 return ! rhs.isSatisfiedBy(ch) && lhs.isSatisfiedBy(ch);}};
5147 union(final CharProperty lhs, final CharProperty rhs) argument
5157 intersection(final CharProperty lhs, final CharProperty rhs) argument
5167 setDifference(final CharProperty lhs, final CharProperty rhs) argument
/openjdk7/hotspot/src/share/vm/opto/
H A Dsubnode.cpp778 Node* rhs = (k2 != NULL) ? k2 : conk2; local
780 this->set_req(2, rhs);
H A Dnode.hpp193 Node &operator=(const Node &rhs);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/schemagen/
H A DXmlSchemaGenerator.java1588 public int compare(String lhs, String rhs) {
1589 return -lhs.compareTo(rhs);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DCheck.java2443 JCTree rhs = assign.rhs;
2444 if (rhs.getTag() != JCTree.NEWARRAY) return;
2445 JCNewArray na = (JCNewArray) rhs;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/
H A DJavacParser.java802 if (op.rhs.getTag() == JCTree.LITERAL) {
803 JCLiteral lit = (JCLiteral) op.rhs;

Completed in 97 milliseconds

12345