HomeSort by relevance Sort by last modified time
    Searched refs:maxXIntercept (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatRoundedRectTest.cpp 79 float maxXIntercept; \
80 EXPECT_TRUE(roundedRect.xInterceptsAtY(yCoordinate, minXIntercept, maxXIntercept)); \
82 EXPECT_FLOAT_EQ(expectedMaxXIntercept, maxXIntercept); \
108 float maxXIntercept;
110 EXPECT_FALSE(r.xInterceptsAtY(1, minXIntercept, maxXIntercept));
111 EXPECT_FALSE(r.xInterceptsAtY(7, minXIntercept, maxXIntercept));
146 float maxXIntercept;
148 EXPECT_FALSE(r.xInterceptsAtY(-1, minXIntercept, maxXIntercept));
149 EXPECT_FALSE(r.xInterceptsAtY(101, minXIntercept, maxXIntercept));
193 float maxXIntercept;
    [all...]
FloatRoundedRect.cpp 106 bool FloatRoundedRect::xInterceptsAtY(float y, float& minXIntercept, float& maxXIntercept) const
113 maxXIntercept = rect().maxX();
131 maxXIntercept = topRightRect.x() + cornerRectIntercept(topRightRect.maxY() - y, topRightRect);
133 maxXIntercept = bottomRightRect.x() + cornerRectIntercept(y - bottomRightRect.y(), bottomRightRect);
135 maxXIntercept = m_rect.maxX();
FloatRoundedRect.h 109 bool xInterceptsAtY(float y, float& minXIntercept, float& maxXIntercept) const;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
BoxShape.cpp 91 float maxXIntercept;
93 if (marginBounds.xInterceptsAtY(y1, minXIntercept, maxXIntercept)) {
95 x2 = std::max<float>(x2, maxXIntercept);
98 if (marginBounds.xInterceptsAtY(y2, minXIntercept, maxXIntercept)) {
100 x2 = std::max<float>(x2, maxXIntercept);

Completed in 1431 milliseconds