OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:lineoverlapsshapemarginbounds
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
BoxShapeTest.cpp
82
EXPECT_TRUE(shape->
lineOverlapsShapeMarginBounds
(-9, 1));
83
EXPECT_TRUE(shape->
lineOverlapsShapeMarginBounds
(-10, 0));
84
EXPECT_TRUE(shape->
lineOverlapsShapeMarginBounds
(-10, 200));
85
EXPECT_TRUE(shape->
lineOverlapsShapeMarginBounds
(5, 10));
86
EXPECT_TRUE(shape->
lineOverlapsShapeMarginBounds
(59, 1));
88
EXPECT_FALSE(shape->
lineOverlapsShapeMarginBounds
(-12, 2));
89
EXPECT_FALSE(shape->
lineOverlapsShapeMarginBounds
(60, 1));
90
EXPECT_FALSE(shape->
lineOverlapsShapeMarginBounds
(100, 200));
ShapeOutsideInfo.h
54
return computedShape()->
lineOverlapsShapeMarginBounds
(m_shapeLineTop, m_lineHeight);
BoxShape.cpp
76
if (marginBounds.isEmpty() || !
lineOverlapsShapeMarginBounds
(logicalTop, logicalHeight))
Shape.h
75
bool
lineOverlapsShapeMarginBounds
(LayoutUnit lineTop, LayoutUnit lineHeight) const { return lineOverlapsBoundingBox(lineTop, lineHeight, shapeMarginLogicalBoundingBox()); }
Completed in 32 milliseconds