OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:minXIntercept
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatRoundedRectTest.cpp
78
float
minXIntercept
; \
80
EXPECT_TRUE(roundedRect.xInterceptsAtY(yCoordinate,
minXIntercept
, maxXIntercept)); \
81
EXPECT_FLOAT_EQ(expectedMinXIntercept,
minXIntercept
); \
107
float
minXIntercept
;
110
EXPECT_FALSE(r.xInterceptsAtY(1,
minXIntercept
, maxXIntercept));
111
EXPECT_FALSE(r.xInterceptsAtY(7,
minXIntercept
, maxXIntercept));
145
float
minXIntercept
;
148
EXPECT_FALSE(r.xInterceptsAtY(-1,
minXIntercept
, maxXIntercept));
149
EXPECT_FALSE(r.xInterceptsAtY(101,
minXIntercept
, maxXIntercept));
192
float
minXIntercept
;
[
all
...]
FloatRoundedRect.cpp
106
bool FloatRoundedRect::xInterceptsAtY(float y, float&
minXIntercept
, float& maxXIntercept) const
112
minXIntercept
= rect().x();
121
minXIntercept
= topLeftRect.maxX() - cornerRectIntercept(topLeftRect.maxY() - y, topLeftRect);
123
minXIntercept
= bottomLeftRect.maxX() - cornerRectIntercept(y - bottomLeftRect.y(), bottomLeftRect);
125
minXIntercept
= m_rect.x();
FloatRoundedRect.h
109
bool xInterceptsAtY(float y, float&
minXIntercept
, float& maxXIntercept) const;
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
BoxShape.cpp
90
float
minXIntercept
;
93
if (marginBounds.xInterceptsAtY(y1,
minXIntercept
, maxXIntercept)) {
94
x1 = std::min<float>(x1,
minXIntercept
);
98
if (marginBounds.xInterceptsAtY(y2,
minXIntercept
, maxXIntercept)) {
99
x1 = std::min<float>(x1,
minXIntercept
);
Completed in 89 milliseconds