Searched refs:shadowTop (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DShadowData.cpp54 static inline void calculateShadowExtent(const ShadowData* shadow, int additionalOutlineSize, int& shadowLeft, int& shadowRight, int& shadowTop, int& shadowBottom) argument
61 shadowTop = min(shadow->y() - blurAndSpread, shadowTop);
73 int shadowTop = 0; local
75 calculateShadowExtent(this, additionalOutlineSize, shadowLeft, shadowRight, shadowTop, shadowBottom);
77 rect.move(shadowLeft, shadowTop);
79 rect.setHeight(rect.height() - shadowTop + shadowBottom);
86 int shadowTop = 0; local
88 calculateShadowExtent(this, additionalOutlineSize, shadowLeft, shadowRight, shadowTop, shadowBottom);
90 rect.move(shadowLeft, shadowTop);
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBox.cpp4223 LayoutUnit shadowTop; local
4225 style()->getBoxShadowExtent(shadowTop, shadowRight, shadowBottom, shadowLeft);
4230 overflowMinY = borderBox.y() + ((!isFlipped || !isHorizontal) ? shadowTop : -shadowBottom);
4231 overflowMaxY = borderBox.maxY() + ((!isFlipped || !isHorizontal) ? shadowBottom : -shadowTop);
H A DRenderObject.cpp1521 LayoutUnit shadowTop; local
1523 style()->getBoxShadowVerticalExtent(shadowTop, shadowBottom);

Completed in 291 milliseconds