Home | History | Annotate | Download | only in rendering

Lines Matching defs:parentBox

415     IntRect parentBox = parentRenderBox->absoluteContentBox();
418 bounds.setHeight(std::min(parentBox.width(), std::min(parentBox.height(), bounds.height())));
423 bounds.setY(parentBox.y() + (parentBox.height() - bounds.height() + 1) / 2);
456 IntRect parentBox = parentRenderBox->absoluteContentBox();
459 bounds.setHeight(std::min(parentBox.width(), std::min(parentBox.height(), bounds.height())));
464 bounds.setY(parentBox.y() + (parentBox.height() - bounds.height() + 1) / 2);
492 IntRect parentBox = parentRenderBox->absoluteContentBox();
495 bounds.setHeight(std::min(parentBox.height(), bounds.height()));
496 bounds.setWidth(std::min(parentBox.width(), static_cast<int>(bounds.height() * defaultSearchFieldResultsButtonWidth / defaultSearchFieldResultsDecorationSize)));
500 bounds.setY(parentBox.y() + (parentBox.height() - bounds.height() + 1) / 2);