/external/webkit/Source/WebCore/wml/ |
D | WMLAElement.cpp | 112 FloatPoint absPos = renderer()->localToAbsolute(); in isKeyboardFocusable() local 113 renderer()->absoluteRects(rects, absPos.x(), absPos.y()); in isKeyboardFocusable()
|
/external/webkit/Source/WebCore/html/ |
D | HTMLImageElement.cpp | 368 FloatPoint absPos = r->localToAbsolute(); in x() local 369 return absPos.x(); in x() 379 FloatPoint absPos = r->localToAbsolute(); in y() local 380 return absPos.y(); in y()
|
D | HTMLAreaElement.cpp | 95 FloatPoint absPos = obj->localToAbsolute(); in computePath() local 110 p.translate(absPos - FloatPoint()); in computePath()
|
/external/webkit/Source/WebKit/mac/WebView/ |
D | WebRenderNode.mm | 102 FloatPoint absPos = node->localToAbsolute(FloatPoint()); 131 … position:absPos rect:NSMakeRect(x, y, width, height)
|
/external/webkit/Source/WebCore/editing/ |
D | visible_units.cpp | 563 FloatPoint absPos = containingBlock->localToAbsolute(FloatPoint()); in previousLinePosition() local 565 absPos -= containingBlock->layer()->scrolledContentOffset(); in previousLinePosition() 566 …RenderObject* renderer = root->closestLeafChildForLogicalLeftPosition(x - absPos.x(), isEditablePo… in previousLinePosition() 570 return renderer->positionForPoint(IntPoint(x - absPos.x(), root->lineTop())); in previousLinePosition() 670 FloatPoint absPos = containingBlock->localToAbsolute(FloatPoint()); in nextLinePosition() local 672 absPos -= containingBlock->layer()->scrolledContentOffset(); in nextLinePosition() 673 …RenderObject* renderer = root->closestLeafChildForLogicalLeftPosition(x - absPos.x(), isEditablePo… in nextLinePosition() 677 return renderer->positionForPoint(IntPoint(x - absPos.x(), root->lineTop())); in nextLinePosition()
|
/external/webkit/Source/WebCore/rendering/ |
D | RenderListBox.cpp | 516 FloatPoint absPos = localToAbsolute(); in scrollToward() local 517 int offsetX = destination.x() - absPos.x(); in scrollToward() 518 int offsetY = destination.y() - absPos.y(); in scrollToward()
|
D | RenderObject.cpp | 1086 FloatPoint absPos = localToAbsolute(); in absoluteBoundingBoxRect() local 1088 absoluteRects(rects, absPos.x(), absPos.y()); in absoluteBoundingBoxRect() 2402 FloatPoint absPos = localToAbsolute(); in addDashboardRegions() local 2403 region.bounds.setX(absPos.x() + styleRegion.offset.left().value()); in addDashboardRegions() 2404 region.bounds.setY(absPos.y() + styleRegion.offset.top().value()); in addDashboardRegions()
|
D | RenderLayer.cpp | 1163 FloatPoint absPos = renderer()->localToAbsolute(FloatPoint(), true); in convertToLayerCoords() local 1164 xPos += absPos.x(); in convertToLayerCoords() 1165 yPos += absPos.y(); in convertToLayerCoords() 1481 FloatPoint absPos = box->localToAbsolute(); in scrollTo() local 1482 absPos.move(box->borderLeft(), box->borderTop()); in scrollTo() 1484 …IntRect layerBounds = IntRect(absPos.x() + scrollXOffset(), absPos.y() + scrollYOffset(), box->cli… in scrollTo() 1488 xOffset = r.x() - absPos.x(); in scrollTo() 1489 yOffset = r.y() - absPos.y(); in scrollTo()
|
D | RenderInline.cpp | 1522 FloatPoint absPos = container->localToAbsolute(); in addDashboardRegions() local 1523 region.bounds.setX(absPos.x() + region.bounds.x()); in addDashboardRegions() 1524 region.bounds.setY(absPos.y() + region.bounds.y()); in addDashboardRegions()
|
D | RenderBox.cpp | 493 FloatPoint absPos = localToAbsolute(FloatPoint()); in absoluteContentBox() local 494 rect.move(absPos.x(), absPos.y()); in absoluteContentBox()
|
/external/webkit/Source/WebCore/dom/ |
D | Node.cpp | 846 FloatPoint absPos = renderer()->localToAbsolute(); in hasNonEmptyBoundingBox() local 847 renderer()->absoluteRects(rects, absPos.x(), absPos.y()); in hasNonEmptyBoundingBox()
|
/external/webkit/Source/WebKit/android/jni/ |
D | WebViewCore.cpp | 1422 FloatPoint absPos = render->localToAbsolute(FloatPoint(), false, true); in getAbsoluteBoundingBox() local 1423 rect.move(absPos.x(), absPos.y()); in getAbsoluteBoundingBox() 3426 FloatPoint absPos = renderBox->localToAbsolute(FloatPoint()); in absoluteClientRect() local 3427 clientRect.move(absPos.x() - offset.x(), absPos.y() - offset.y()); in absoluteClientRect()
|
/external/webkit/Source/WebCore/page/ |
D | EventHandler.cpp | 2786 FloatPoint absPos = renderer->localToAbsolute(); in handleDrag() local 2787 IntSize delta = m_mouseDownPos - roundedIntPoint(absPos); in handleDrag()
|