Home | History | Annotate | Download | only in platform

Lines Matching defs:localRect

76 IntRect Widget::convertToRootView(const IntRect& localRect) const
79 IntRect parentRect = convertToContainingView(localRect);
82 return localRect;
112 IntRect Widget::convertToContainingWindow(const IntRect& localRect) const
115 IntRect parentRect = convertToContainingView(localRect);
118 return localRect;
158 IntRect Widget::convertToContainingView(const IntRect& localRect) const
161 IntRect parentRect(localRect);
162 parentRect.setLocation(parentWidget->convertChildToSelf(this, localRect.location()));
165 return localRect;
171 IntRect localRect = parentRect;
172 localRect.setLocation(parentWidget->convertSelfToChild(this, localRect.location()));
173 return localRect;