Home | History | Annotate | Download | only in rendering

Lines Matching refs:yPos

1725 int RenderBlock::clearFloatsIfNeeded(RenderBox* child, MarginInfo& marginInfo, int oldTopPosMargin, int oldTopNegMargin, int yPos)
1727 int heightIncrease = getClearDelta(child, yPos);
1729 return yPos;
1771 return yPos + heightIncrease;
2030 // Now determine the correct ypos based off examination of collapsing margin
2640 int yPos = ty + firstLineBox()->y();
2642 if (yPos >= paintInfo.rect.maxY() || yPos + h <= paintInfo.rect.y())
2649 yPos = ty + curr->y();
2651 if (curr->ellipsisBox() && yPos < paintInfo.rect.maxY() && yPos + h > paintInfo.rect.y())
3899 int RenderBlock::getClearDelta(RenderBox* child, int yPos)
3923 int result = clearSet ? max(0, bottom - yPos) : 0;
3925 int y = yPos;
3929 return y - yPos;
3940 yPos;
3943 ASSERT(y >= yPos);
3944 if (y < yPos)