Searched refs:IntPoint (Results 251 - 275 of 517) sorted by relevance

<<11121314151617181920>>

/external/webkit/Source/WebCore/rendering/
H A DRenderTableRow.cpp200 IntPoint cellPoint = flipForWritingMode(toRenderTableCell(child), IntPoint(tx, ty), ParentToChildFlippingAdjustment);
202 updateHitTestResult(result, IntPoint(x - cellPoint.x(), y - cellPoint.y()));
H A DRenderLayer.cpp284 void RenderLayer::updateLayerPositions(UpdateLayerPositionsFlags flags, IntPoint* cachedOffset)
289 IntPoint oldCachedOffset;
309 *cachedOffset = IntPoint(x, y);
677 IntPoint localPoint;
885 IntPoint RenderLayer::absoluteToContents(const IntPoint& absolutePoint) const
1264 void RenderLayer::panScrollFromPoint(const IntPoint& sourcePoint)
1270 IntPoint currentMousePosition = frame->eventHandler()->currentMousePosition();
1273 static IntPoint previousMousePosition;
1332 ScrollableArea::scrollToOffsetWithoutAnimation(IntPoint(
[all...]
H A DRenderThemeWinCE.cpp379 IntRect cancelBounds(IntPoint(x, y), cancelSize);
389 paintInfo.context->drawLine(IntPoint(xBounds.maxX(), xBounds.y()), IntPoint(xBounds.x(), xBounds.maxY()));
492 IntPoint left = IntPoint(r.x() + 2, (r.y() + r.maxY()) / 2);
501 IntPoint right = IntPoint(left.x() + mediaElement->percentLoaded() * (r.maxX() - r.x() - 4), (r.y() + r.maxY()) / 2);
507 i.context->drawLine(left, IntPoint(r.maxX() - 2, left.y()));
576 paintInfo.context->drawLine(IntPoint(imRect.maxX(), imRect.y()), IntPoint(imRec
[all...]
/external/webkit/Source/WebKit/chromium/src/
H A DWebPopupMenuImpl.cpp311 IntPoint WebPopupMenuImpl::screenToWindow(const IntPoint& point) const
314 return IntPoint();
/external/webkit/Source/WebKit/haiku/WebCoreSupport/
H A DChromeClientHaiku.cpp286 IntPoint ChromeClientHaiku::screenToWindow(const IntPoint&) const
289 return IntPoint();
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DChromeClientQt.h121 virtual void delegatedScrollRequested(const IntPoint& scrollPoint);
124 virtual IntPoint screenToWindow(const IntPoint&) const;
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebChromeClient.h118 virtual void delegatedScrollRequested(const WebCore::IntPoint& scrollOffset);
120 virtual WebCore::IntPoint screenToWindow(const WebCore::IntPoint&) const;
/external/webkit/Source/WebCore/platform/graphics/
H A DTiledBackingStore.cpp77 Tile::Coordinate bottomRight = tileCoordinateForPoint(IntPoint(dirtyRect.maxX(), dirtyRect.maxY()));
136 Tile::Coordinate bottomRight = tileCoordinateForPoint(IntPoint(dirtyRect.maxX(), dirtyRect.maxY()));
191 IntPoint viewCenter = viewport.location() + IntSize(viewport.width() / 2, viewport.height() / 2);
233 Tile::Coordinate bottomRight = tileCoordinateForPoint(IntPoint(coverRect.maxX(), coverRect.maxY()));
351 Tile::Coordinate TiledBackingStore::tileCoordinateForPoint(const IntPoint& point) const
/external/webkit/Source/WebCore/loader/
H A DEmptyClients.h165 virtual void delegatedScrollRequested(const IntPoint&) { } argument
171 virtual IntPoint screenToWindow(const IntPoint& p) const { return p; }
576 virtual void willPerformDragSourceAction(DragSourceAction, const IntPoint&, Clipboard*) { } argument
578 virtual DragSourceAction dragSourceActionMaskForPoint(const IntPoint&) { return DragSourceActionNone; } argument
579 virtual void startDrag(DragImageRef, const IntPoint&, const IntPoint&, Clipboard*, Frame*, bool) { } argument
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DLayerTilerChromium.cpp160 IntPoint pos(contentRect.x() - m_layerPosition.x(), contentRect.y() - m_layerPosition.y());
165 layerRect = IntRect(IntPoint(0, 0), IntSize(contentRect.width() + pos.x(), contentRect.height() + pos.y()));
314 const IntPoint anchor = sourceRect.location();
331 IntRect destRect(IntPoint(sourceRect.x() - anchor.x(), sourceRect.y() - anchor.y()), sourceRect.size());
338 IntPoint paintOffset(sourceRect.x() - paintRect.x(), sourceRect.y() - paintRect.y());
375 void LayerTilerChromium::setLayerPosition(const IntPoint& layerPosition)
408 IntPoint texOffset = m_tilingData.textureOffset(tile->i(), tile->j());
H A DTransparencyWin.cpp278 m_drawContext->fillRect(IntRect(IntPoint(0, 0), m_layerSize), Color::white, ColorSpaceDeviceRGB);
327 m_drawRect = IntRect(IntPoint(0, 0), m_layerSize);
349 m_drawRect = IntRect(IntPoint(0, 0), m_layerSize);
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DChromeClientGtk.cpp454 static IntPoint widgetScreenPosition(GtkWidget* widget)
461 IntPoint result(widgetX, widgetY);
472 IntPoint screenPosition = widgetScreenPosition(GTK_WIDGET(m_webView));
478 IntPoint ChromeClient::screenToWindow(const IntPoint& point) const
480 IntPoint result(point);
481 IntPoint screenPosition = widgetScreenPosition(GTK_WIDGET(m_webView));
/external/webkit/Source/WebCore/platform/gtk/
H A DRenderThemeGtk2.cpp177 IntRect buttonRect(IntPoint(), rect.size());
235 IntRect buttonRect(IntPoint(), rect.size());
435 IntRect textFieldRect(IntPoint(), rect.size());
476 IntRect troughRect(IntPoint(), rect.size()); // This is relative to rect.
490 widgetContext.gtkPaintFocus(IntRect(IntPoint(), rect.size()), widget, getGtkStateType(this, object), "trough");
521 IntRect thumbRect(IntPoint(), rect.size());
561 IntRect fullProgressBarRect(IntPoint(), rect.size());
605 IntRect fullSpinButtonRect(IntPoint(), expandedRect.size());
622 IntRect topRect(IntPoint(), expandedRect.size());
647 IntRect bottomRect(IntPoint(
[all...]
/external/webkit/Source/WebCore/platform/mac/
H A DClipboardMac.mm325 void ClipboardMac::setDragImage(CachedImage* img, const IntPoint &loc)
330 void ClipboardMac::setDragImageElement(Node *node, const IntPoint &loc)
335 void ClipboardMac::setDragImage(CachedImage* image, Node *node, const IntPoint &loc)
397 DragImageRef ClipboardMac::createDragImage(IntPoint& loc) const
401 loc = (IntPoint)nsloc;
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityObject.h84 class IntPoint;
389 virtual AccessibilityObject* accessibilityHitTest(const IntPoint&) const { return 0; }
391 virtual AccessibilityObject* elementAccessibilityHitTest(const IntPoint&) const;
432 virtual IntPoint clickPoint() const;
510 virtual VisiblePosition visiblePositionForPoint(const IntPoint&) const { return VisiblePosition(); }
532 PlainTextRange doAXRangeForPosition(const IntPoint&) const;
H A DAccessibilityScrollView.cpp140 AccessibilityObject* AccessibilityScrollView::accessibilityHitTest(const IntPoint& point) const
H A DAccessibilitySlider.cpp110 AccessibilityObject* AccessibilitySlider::elementAccessibilityHitTest(const IntPoint& point) const
/external/webkit/Source/WebKit2/UIProcess/
H A DTiledDrawingAreaProxy.cpp239 TiledDrawingAreaTile::Coordinate bottomRight = tileCoordinateForPoint(IntPoint(dirtyRect.maxX(), dirtyRect.maxY()));
337 TiledDrawingAreaTile::Coordinate bottomRight = tileCoordinateForPoint(IntPoint(dirtyRect.maxX(), dirtyRect.maxY()));
385 IntPoint viewCenter = viewport.location() + IntSize(viewport.width() / 2, viewport.height() / 2);
437 TiledDrawingAreaTile::Coordinate bottomRight = tileCoordinateForPoint(IntPoint(visibleRect.maxX(), visibleRect.maxY()));
563 return mapFromContents(IntRect(IntPoint(0, 0), m_viewSize));
577 TiledDrawingAreaTile::Coordinate TiledDrawingAreaProxy::tileCoordinateForPoint(const IntPoint& point) const
/external/webkit/Source/WebKit2/UIProcess/mac/
H A DWebPageProxyMac.mm136 void WebPageProxy::windowAndViewFramesChanged(const IntRect& windowFrameInScreenCoordinates, const IntRect& viewFrameInWindowCoordinates, const IntPoint& accessibilityViewCoordinates)
176 uint64_t WebPageProxy::characterIndexForPoint(const IntPoint point)
213 void WebPageProxy::setDragImage(const WebCore::IntPoint& clientPosition, const ShareableBitmap::Handle& dragImageHandle, bool isLinkDrag)
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DBaseLayerAndroid.cpp188 const IntPoint& repeatTimes,
252 const IntPoint& repeatTimes,
305 IntPoint repeatTimes(position->nbRepeatX(), position->nbRepeatY());
/external/webkit/Source/WebCore/platform/graphics/transforms/
H A DAffineTransform.cpp287 IntPoint AffineTransform::mapPoint(const IntPoint& point) const
293 return IntPoint(lround(x2), lround(y2));
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DImageBufferWinCE.cpp191 static void putImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint, SharedBitmap* bitmap)
235 void ImageBuffer::putUnmultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint)
240 void ImageBuffer::putPremultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint)
/external/webkit/Source/WebCore/platform/win/
H A DCursorWin.cpp32 #include "IntPoint.h"
43 static PassRefPtr<SharedCursor> createSharedCursor(Image* img, const IntPoint& hotSpot)
47 IntPoint effectiveHotSpot = determineHotSpot(img, hotSpot);
126 IntPoint hotSpot(x, y);
/external/webkit/Source/WebCore/svg/
H A DSVGFEConvolveMatrixElement.cpp28 #include "IntPoint.h"
141 return convolveMatrix->setTargetOffset(IntPoint(targetX(), targetY()));
143 return convolveMatrix->setTargetOffset(IntPoint(targetX(), targetY()));
253 bias(), IntPoint(targetXValue, targetYValue), static_cast<EdgeModeType>(edgeMode()),
/external/webkit/Source/WebCore/css/
H A DCSSCursorImageValue.cpp56 CSSCursorImageValue::CSSCursorImageValue(const String& url, const IntPoint& hotSpot)

Completed in 469 milliseconds

<<11121314151617181920>>