Home | History | Annotate | Download | only in rendering

Lines Matching full:bounds

967     IntRect bounds = IntRect(r.x() + o->style()->borderLeftWidth(),
972 paintMenuListButtonGradients(o, paintInfo, bounds);
974 // Since we actually know the size of the control here, we restrict the font scale to make sure the arrows will fit vertically in the bounds
975 float fontScale = min(o->style()->fontSize() / baseFontSize, bounds.height() / (baseArrowHeight * 2 + baseSpaceBetweenArrows));
976 float centerY = bounds.y() + bounds.height() / 2.0f;
979 float leftEdge = bounds.right() - arrowPaddingRight * o->style()->effectiveZoom() - arrowWidth;
982 if (bounds.width() < arrowWidth + arrowPaddingLeft * o->style()->effectiveZoom())
1017 paintInfo.context->drawLine(IntPoint(leftEdgeOfSeparator, bounds.y()),
1018 IntPoint(leftEdgeOfSeparator, bounds.bottom()));
1021 paintInfo.context->drawLine(IntPoint(leftEdgeOfSeparator + separatorSpace, bounds.y()),
1022 IntPoint(leftEdgeOfSeparator + separatorSpace, bounds.bottom()));
1150 IntRect bounds = r;
1155 bounds.setHeight(zoomedTrackWidth);
1156 bounds.setY(r.y() + r.height() / 2 - zoomedTrackWidth / 2);
1158 bounds.setWidth(zoomedTrackWidth);
1159 bounds.setX(r.x() + r.width() / 2 - zoomedTrackWidth / 2);
1167 CGContextClipToRect(context, bounds);
1173 mainShading.adoptCF(CGShadingCreateAxial(cspace.get(), CGPointMake(bounds.x(), bounds.bottom()), CGPointMake(bounds.right(), bounds.bottom()), mainFunction.get(), false, false));
1175 mainShading.adoptCF(CGShadingCreateAxial(cspace.get(), CGPointMake(bounds.x(), bounds.y()), CGPointMake(bounds.x(), bounds.bottom()), mainFunction.get(), false, false));
1178 paintInfo.context->addRoundedRectClip(bounds,
1230 FloatRect bounds = r;
1233 bounds.setHeight(bounds.height() + verticalSliderHeightPadding * o->style()->effectiveZoom());
1238 FloatRect unzoomedRect = bounds;