HomeSort by relevance Sort by last modified time
    Searched refs:localRect (Results 1 - 11 of 11) sorted by null

  /external/webkit/Source/WebCore/platform/
Widget.cpp 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()))
    [all...]
Scrollbar.cpp 464 IntRect Scrollbar::convertToContainingView(const IntRect& localRect) const
467 return m_scrollableArea->convertFromScrollbarToContainingView(this, localRect);
469 return Widget::convertToContainingView(localRect);
ScrollView.cpp     [all...]
  /frameworks/opt/datetimepicker/src/com/googlecode/eyesfree/utils/
TouchExplorationHelper.java 318 * portion of its parent {@link View}. Modifies {@code localRect} to
321 * @param localRect A rectangle in local (parent) coordinates.
324 private boolean intersectVisibleToUser(Rect localRect) {
326 if ((localRect == null) || localRect.isEmpty()) {
354 return localRect.intersect(mTempVisibleRect);
  /external/webkit/Source/WebCore/editing/
VisiblePosition.cpp 584 IntRect localRect = localCaretRect(renderer);
585 if (localRect.isEmpty() || !renderer)
588 return renderer->localToAbsoluteQuad(FloatRect(localRect)).enclosingBoundingBox();
594 IntRect localRect = localCaretRect(renderer);
595 if (localRect.isEmpty() || !renderer)
601 return renderer->localToAbsolute(localRect.location()).x();
SelectionController.cpp     [all...]
  /external/webkit/Source/WebCore/rendering/
InlineFlowBox.cpp     [all...]
RenderInline.cpp 558 FloatRect localRect(curr->x(), curr->y(), curr->width(), curr->height());
559 quads.append(localToAbsoluteQuad(localRect));
    [all...]
RenderBlock.cpp     [all...]
  /external/webkit/Source/WebCore/dom/
Element.cpp 517 FloatRect localRect;
518 if (svgElement->boundingBox(localRect))
519 quads.append(renderer()->localToAbsoluteQuad(localRect));
581 FloatRect localRect;
582 if (svgElement->boundingBox(localRect))
583 quads.append(renderer()->localToAbsoluteQuad(localRect));
    [all...]
  /external/webkit/Source/WebCore/page/
FrameView.cpp     [all...]

Completed in 239 milliseconds