Searched defs:expandedLogicalHeight (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DRenderBlock.cpp4562 int expandedLogicalHeight = borderBefore() + paddingBefore() + columnCount(colInfo) * columnLogicalHeight + borderAfter() + paddingAfter() + scrollbarLogicalHeight(); local
4564 return IntPoint(point.x(), expandedLogicalHeight - point.y());
4565 return IntPoint(expandedLogicalHeight - point.x(), point.y());
4576 int expandedLogicalHeight = borderBefore() + paddingBefore() + columnCount(colInfo) * columnLogicalHeight + borderAfter() + paddingAfter() + scrollbarLogicalHeight(); local
4578 rect.setY(expandedLogicalHeight - rect.maxY());
4580 rect.setX(expandedLogicalHeight - rect.maxX());

Completed in 106 milliseconds