Lines Matching full:bounds
896 IntRect bounds = IntRect(r.x() + o->style()->borderLeftWidth(),
901 paintMenuListButtonGradients(o, paintInfo, bounds);
903 // 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
904 float fontScale = min(o->style()->fontSize() / baseFontSize, bounds.height() / (baseArrowHeight * 2 + baseSpaceBetweenArrows));
905 float centerY = bounds.y() + bounds.height() / 2.0f;
908 float leftEdge = bounds.right() - arrowPaddingRight * o->style()->effectiveZoom() - arrowWidth;
911 if (bounds.width() < arrowWidth + arrowPaddingLeft * o->style()->effectiveZoom())
946 paintInfo.context->drawLine(IntPoint(leftEdgeOfSeparator, bounds.y()),
947 IntPoint(leftEdgeOfSeparator, bounds.bottom()));
950 paintInfo.context->drawLine(IntPoint(leftEdgeOfSeparator + separatorSpace, bounds.y()),
951 IntPoint(leftEdgeOfSeparator + separatorSpace, bounds.bottom()));
1078 IntRect bounds = r;
1083 bounds.setHeight(zoomedTrackWidth);
1084 bounds.setY(r.y() + r.height() / 2 - zoomedTrackWidth / 2);
1086 bounds.setWidth(zoomedTrackWidth);
1087 bounds.setX(r.x() + r.width() / 2 - zoomedTrackWidth / 2);
1095 CGContextClipToRect(context, bounds);
1101 mainShading.adoptCF(CGShadingCreateAxial(cspace.get(), CGPointMake(bounds.x(), bounds.bottom()), CGPointMake(bounds.right(), bounds.bottom()), mainFunction.get(), false, false));
1103 mainShading.adoptCF(CGShadingCreateAxial(cspace.get(), CGPointMake(bounds.x(), bounds.y()), CGPointMake(bounds.x(), bounds.bottom()), mainFunction.get(), false, false));
1106 paintInfo.context->addRoundedRectClip(bounds,
1157 FloatRect bounds = r;
1160 bounds.setHeight(bounds.height() + verticalSliderHeightPadding * o->style()->effectiveZoom());
1165 FloatRect unzoomedRect = bounds;