Lines Matching full:rhs
69 Integer(const Integer& rhs) : UObject(rhs), _val(rhs._val) {
176 ICUServiceTest::lrmsg(UnicodeString& result, const UnicodeString& message, const UObject* lhs, const UObject* rhs) const
181 result.append(", rhs: ");
182 append(result, rhs);
198 ICUServiceTest::confirmEqual(const UnicodeString& message, const UObject* lhs, const UObject* rhs)
201 ? (rhs == NULL)
202 : (rhs != NULL && lhs->operator==(*rhs));
205 lrmsg(temp, message, lhs, rhs);
215 ICUServiceTest::confirmEqual(const UnicodeString& message, const Integer* lhs, const Integer* rhs)
218 ? (rhs == NULL)
219 : (rhs != NULL && lhs->operator==(*rhs));
222 lrmsg(temp, message, lhs, rhs);
232 ICUServiceTest::confirmEqual(const UnicodeString& message, const UnicodeString* lhs, const UnicodeString* rhs)
235 ? (rhs == NULL)
236 : (rhs != NULL && lhs->operator==(*rhs));
239 lrmsg(temp, message, lhs, rhs);
249 ICUServiceTest::confirmEqual(const UnicodeString& message, const Locale* lhs, const Locale* rhs)
252 ? (rhs == NULL)
253 : (rhs != NULL && lhs->operator==(*rhs));
256 lrmsg(temp, message, lhs, rhs);
268 ICUServiceTest::confirmStringsEqual(const UnicodeString& message, const UnicodeString& lhs, const UnicodeString& rhs)
270 UBool equ = lhs == rhs;
275 temp.append(" rhs: ");
276 temp.append(rhs);
287 ICUServiceTest::confirmIdentical(const UnicodeString& message, const UObject* lhs, const UObject *rhs)
290 lrmsg(temp, message, lhs, rhs);
291 if (lhs == rhs) {
299 ICUServiceTest::confirmIdentical(const UnicodeString& message, int32_t lhs, int32_t rhs)
301 if (lhs == rhs) {
302 logln(message + " lhs: " + lhs + " rhs: " + rhs);
304 errln(message + " lhs: " + lhs + " rhs: " + rhs);