OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:minIntervalWidth
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
RasterShape.cpp
123
static inline void appendX1Values(const IntShapeIntervals& intervals, int
minIntervalWidth
, Vector<int>& result)
126
if (intervals[i].width() >=
minIntervalWidth
)
131
bool RasterShapeIntervals::getIntervalX1Values(int y1, int y2, int
minIntervalWidth
, Vector<int>& result) const
140
appendX1Values(intervalsAt(y1),
minIntervalWidth
, result);
143
appendX1Values(intervalsAt(y),
minIntervalWidth
, result);
RectangleShape.cpp
170
float
minIntervalWidth
= minLogicalIntervalSize.width();
173
if (bounds.isEmpty() ||
minIntervalWidth
> bounds.width())
195
bool intervalFitsWithinCorners =
minIntervalWidth
+ 2 * paddingRadiusX <= bounds.width();
196
FloatPoint cornerIntercept = cornerInterceptForWidth(bounds.width(),
minIntervalWidth
, paddingRadiusX, paddingRadiusY);
PolygonShape.cpp
450
float
minIntervalWidth
= minLogicalIntervalSize.width();
454
if (
minIntervalWidth
> boundingBox.width())
466
float dx =
minIntervalWidth
/ 2;
Completed in 79 milliseconds