Lines Matching refs:rh
50 const UnitTest::ActiveEdge& rh) { in operator_less_than() argument
51 if ((rh.fAbove.fY - lh.fAbove.fY > lh.fBelow.fY - rh.fAbove.fY in operator_less_than()
52 && lh.fBelow.fY < rh.fBelow.fY) in operator_less_than()
53 || (lh.fAbove.fY - rh.fAbove.fY < rh.fBelow.fY - lh.fAbove.fY in operator_less_than()
54 && rh.fBelow.fY < lh.fBelow.fY)) { in operator_less_than()
55 const SkPoint& check = rh.fBelow.fY <= lh.fBelow.fY in operator_less_than()
56 && lh.fBelow != rh.fBelow ? rh.fBelow : in operator_less_than()
57 rh.fAbove; in operator_less_than()
61 const SkPoint& check = lh.fBelow.fY <= rh.fBelow.fY in operator_less_than()
62 && lh.fBelow != rh.fBelow ? lh.fBelow : lh.fAbove; in operator_less_than()
63 return (rh.fBelow.fY - rh.fAbove.fY) * (check.fX - rh.fAbove.fX) in operator_less_than()
64 < (check.fY - rh.fAbove.fY) * (rh.fBelow.fX - rh.fAbove.fX); in operator_less_than()