Home | History | Annotate | Download | only in platform

Lines Matching refs:localRect

81 IntRect Widget::convertToContainingWindow(const IntRect& localRect) const
84 IntRect parentRect = convertToContainingView(localRect);
87 return convertFromRootToContainingWindow(this, localRect);
140 IntRect Widget::convertToContainingView(const IntRect& localRect) const
143 IntRect parentRect(localRect);
144 parentRect.setLocation(parentScrollView->convertChildToSelf(this, localRect.location()));
147 return localRect;
153 IntRect localRect = parentRect;
154 localRect.setLocation(parentScrollView->convertSelfToChild(this, localRect.location()));
155 return localRect;