Home | History | Annotate | Download | only in tests

Lines Matching refs:right

368   bool CompareEQ(const U& right) const {
369 return value == right;
372 bool CompareNE(const U& right) const {
373 return value != right;
376 bool CompareLT(const U& right) const {
377 return value < right;
380 bool CompareGT(const U& right) const {
381 return value > right;
384 bool CompareLE(const U& right) const {
385 return value <= right;
388 bool CompareGE(const U& right) const {
389 return value >= right;
401 bool CompareEQ(const U& right) const {
402 return 0 == right;
405 bool CompareNE(const U& right) const {
406 return 0 != right;
409 bool CompareLT(const U& right) const {
410 return 0 < right;
413 bool CompareGT(const U& right) const {
414 return 0 > right;
417 bool CompareLE(const U& right) const {
418 return 0 <= right;
421 bool CompareGE(const U& right) const {
422 return 0 >= right;
433 // We do a lot of those comparisons, so this makes it easy to get it right
437 // right. If the left value is negative and the right hand side is a large
447 bool CompareEQ(const U& right) const {
448 return static_cast<U>(value) == right;
451 bool CompareNE(const U& right) const {
452 return static_cast<U>(value) != right;
455 bool CompareLT(const U& right) const {
456 return static_cast<U>(value) < right;
459 bool CompareGT(const U& right) const {
460 return static_cast<U>(value) > right;
463 bool CompareLE(const U& right) const {
464 return static_cast<U>(value) <= right;
467 bool CompareGE(const U& right) const {
468 return static_cast<U>(value) >= right;
530 const U& right,
539 std::string right_string(ToString(right));
544 error_msg += " Right: (" + right_string + ")";
558 const U& right, \
563 if (!(left.Compare##comparator_name(right))) { \
566 right, \
582 double right,
587 if (!(std::fabs(left.value - right) <=
590 "~=", left, right, left_precompiler_string, right_precompiler_string,