HomeSort by relevance Sort by last modified time
    Searched refs:IntPoint (Results 76 - 100 of 517) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/page/
MouseEventWithHitTestResults.h 37 const IntPoint localPoint() const;
  /external/webkit/Source/WebCore/platform/graphics/chromium/
ImageLayerChromium.cpp 67 m_dirtyRect = IntRect(IntPoint(0, 0), bounds());
78 IntRect paintRect(IntPoint(0, 0), m_decodedImage.size());
88 IntRect paintRect(IntPoint(0, 0), m_decodedImage.size());
94 return IntRect(IntPoint(0, 0), m_decodedImage.size());
  /external/webkit/Source/WebCore/platform/graphics/efl/
IntRectEfl.cpp 29 : m_location(IntPoint(r.x, r.y))
  /external/webkit/Source/WebCore/platform/graphics/gtk/
IntRectGtk.cpp 28 : m_location(IntPoint(r.x, r.y))
  /external/webkit/Source/WebCore/platform/graphics/win/
IntRectWin.cpp 35 : m_location(IntPoint(r.left, r.top)), m_size(IntSize(r.right-r.left, r.bottom-r.top))
  /external/webkit/Source/WebCore/platform/graphics/wx/
IntRectWx.cpp 35 : m_location(IntPoint(r.x, r.y))
  /external/webkit/Source/WebCore/platform/gtk/
ClipboardGtk.h 63 void setDragImage(CachedImage*, const IntPoint&);
64 void setDragImageElement(Node*, const IntPoint&);
65 void setDragImage(CachedImage*, Node*, const IntPoint&);
67 virtual DragImageRef createDragImage(IntPoint&) const;
PlatformWheelEventGtk.cpp 62 m_position = IntPoint(static_cast<int>(event->x), static_cast<int>(event->y));
63 m_globalPosition = IntPoint(static_cast<int>(event->x_root), static_cast<int>(event->y_root));
  /external/webkit/Source/WebCore/platform/mac/
ClipboardMac.h 67 void setDragImage(CachedImage*, const IntPoint&);
68 void setDragImageElement(Node *, const IntPoint&);
70 virtual DragImageRef createDragImage(IntPoint& dragLoc) const;
85 void setDragImage(CachedImage*, Node*, const IntPoint&);
  /external/webkit/Source/WebCore/platform/qt/
ClipboardQt.h 63 void setDragImage(CachedImage*, const IntPoint&);
64 void setDragImageElement(Node*, const IntPoint&);
66 virtual DragImageRef createDragImage(IntPoint& dragLoc) const;
83 void setDragImage(CachedImage*, Node*, const IntPoint& loc);
PlatformMouseEventQt.cpp 55 m_position = IntPoint(event->pos().toPoint());
56 m_globalPosition = IntPoint(event->screenPos());
99 m_position = IntPoint(ce->pos());
100 m_globalPosition = IntPoint(ce->globalPos());
110 m_position = IntPoint(me->pos());
111 m_globalPosition = IntPoint(me->globalPos());
  /external/webkit/Source/WebKit/chromium/public/
WebPoint.h 37 #include "IntPoint.h"
61 WebPoint(const WebCore::IntPoint& p)
67 WebPoint& operator=(const WebCore::IntPoint& p)
74 operator WebCore::IntPoint() const
76 return WebCore::IntPoint(x, y);
  /external/webkit/Source/WebKit/chromium/src/
DragClientImpl.cpp 53 void DragClientImpl::willPerformDragSourceAction(DragSourceAction, const IntPoint&, Clipboard*)
67 DragSourceAction DragClientImpl::dragSourceActionMaskForPoint(const IntPoint& windowPoint)
74 const IntPoint& dragImageOrigin,
75 const IntPoint& eventPos,
  /external/webkit/Source/WebKit2/Shared/gtk/
ShareableBitmapGtk.cpp 43 void ShareableBitmap::paint(WebCore::GraphicsContext&, const WebCore::IntPoint& dstPoint, const WebCore::IntRect& srcRect)
  /external/webkit/Source/WebKit2/UIProcess/qt/
WebContextMenuProxyQt.h 46 virtual void showContextMenu(const WebCore::IntPoint&, const Vector<WebContextMenuItemData>&);
  /external/webkit/Source/WebCore/dom/
Clipboard.h 31 #include "IntPoint.h"
71 IntPoint dragLocation() const { return m_dragLoc; }
73 virtual void setDragImage(CachedImage*, const IntPoint&) = 0;
75 virtual void setDragImageElement(Node*, const IntPoint&) = 0;
77 virtual DragImageRef createDragImage(IntPoint& dragLocation) const = 0;
114 IntPoint m_dragLoc;
  /external/webkit/Source/WebCore/platform/win/
ClipboardWin.h 40 class IntPoint;
70 void setDragImage(CachedImage*, const IntPoint&);
71 void setDragImageElement(Node*, const IntPoint&);
73 virtual DragImageRef createDragImage(IntPoint& dragLoc) const;
91 void setDragImage(CachedImage*, Node*, const IntPoint&);
  /external/webkit/Source/WebCore/platform/graphics/
IntRect.h 29 #include "IntPoint.h"
79 IntRect(const IntPoint& location, const IntSize& size)
82 : m_location(IntPoint(x, y)), m_size(IntSize(width, height)) { }
86 IntPoint location() const { return m_location; }
89 void setLocation(const IntPoint& location) { m_location = location; }
108 IntPoint center() const { return IntPoint(x() + width() / 2, y() + height() / 2); }
136 IntPoint minXMinYCorner() const { return m_location; } // typically topLeft
137 IntPoint maxXMinYCorner() const { return IntPoint(m_location.x() + m_size.width(), m_location.y()); } // typically topRigh
    [all...]
  /external/webkit/Source/WebCore/platform/
Widget.h 158 IntPoint pos() const { return frameRect().location(); }
168 void move(const IntPoint& p) { setFrameRect(IntRect(p, size())); }
210 IntPoint convertToContainingWindow(const IntPoint&) const;
211 IntPoint convertFromContainingWindow(const IntPoint&) const;
253 virtual IntPoint convertToContainingView(const IntPoint&) const;
254 virtual IntPoint convertFromContainingView(const IntPoint&) const
    [all...]
  /external/webkit/Source/WebCore/html/shadow/
SliderThumbElement.h 55 void dragFrom(const IntPoint&);
68 void setPositionFromPoint(const IntPoint&);
  /external/webkit/Source/WebCore/platform/brew/
PlatformTouchEventBrew.cpp 63 IntPoint windowPos = IntPoint(x, y);
  /external/webkit/Source/WebCore/platform/efl/
PlatformWheelEventEfl.cpp 46 : m_position(IntPoint(ev->canvas.x, ev->canvas.y))
47 , m_globalPosition(IntPoint(ev->canvas.x, ev->canvas.y))
  /external/webkit/Source/WebKit2/Shared/
WebGestureEvent.cpp 38 WebGestureEvent::WebGestureEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, Modifiers modifiers, double timestamp)
  /external/webkit/Source/WebCore/html/
ImageInputType.h 36 #include "IntPoint.h"
66 IntPoint m_clickLocation; // Valid only during HTMLFormElement::prepareForSubmission().
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
IFrameLayerAndroid.cpp 27 m_iframeOffset = IntPoint(offset.fX, offset.fY);

Completed in 1101 milliseconds

1 2 34 5 6 7 8 91011>>