HomeSort by relevance Sort by last modified time
    Searched defs:maxXIntercept (Results 1 - 2 of 2) 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...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
BoxShape.cpp 81 float maxXIntercept;
89 if (marginBounds.xInterceptsAtY(y1, minXIntercept, maxXIntercept)) {
91 x2 = std::max<float>(x2, maxXIntercept);
94 if (marginBounds.xInterceptsAtY(y2, minXIntercept, maxXIntercept)) {
96 x2 = std::max<float>(x2, maxXIntercept);

Completed in 922 milliseconds