Home | History | Annotate | Download | only in platform

Lines Matching defs:localRect

81 IntRect Widget::convertToContainingWindow(const IntRect& localRect) const
84 IntRect parentRect = convertToContainingView(localRect);
87 return convertFromRootToContainingWindow(this, localRect);
134 IntRect Widget::convertToContainingView(const IntRect& localRect) const
137 IntRect parentRect(localRect);
138 parentRect.setLocation(parentScrollView->convertChildToSelf(this, localRect.location()));
141 return localRect;
147 IntRect localRect = parentRect;
148 localRect.setLocation(parentScrollView->convertSelfToChild(this, localRect.location()));
149 return localRect;