HomeSort by relevance Sort by last modified time
    Searched refs:IntPoint (Results 1 - 25 of 342) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/platform/graphics/haiku/
IntPointHaiku.cpp 29 #include "IntPoint.h"
36 IntPoint::IntPoint(const BPoint& point)
42 IntPoint::operator BPoint() const
  /external/webkit/WebCore/platform/graphics/qt/
IntPointQt.cpp 29 #include "IntPoint.h"
35 IntPoint::IntPoint(const QPoint& p)
41 IntPoint::operator QPoint() const
  /external/webkit/WebCore/platform/graphics/win/
IntPointWin.cpp 27 #include "IntPoint.h"
33 IntPoint::IntPoint(const POINT& p)
39 IntPoint::operator POINT() const
45 IntPoint::IntPoint(const POINTS& p)
51 IntPoint::operator POINTS() const
  /external/webkit/WebCore/platform/graphics/skia/
IntPointSkia.cpp 32 #include "IntPoint.h"
38 IntPoint::IntPoint(const SkIPoint& p)
44 IntPoint::operator SkIPoint() const
50 IntPoint::operator SkPoint() const
  /external/webkit/WebCore/platform/graphics/
IntPoint.h 77 class IntPoint {
79 IntPoint() : m_x(0), m_y(0) { }
80 IntPoint(int x, int y) : m_x(x), m_y(y) { }
81 explicit IntPoint(const IntSize& size) : m_x(size.width()), m_y(size.height()) { }
92 IntPoint expandedTo(const IntPoint& other) const
94 return IntPoint(m_x > other.m_x ? m_x : other.m_x,
98 IntPoint shrunkTo(const IntPoint& other) const
100 return IntPoint(m_x < other.m_x ? m_x : other.m_x
    [all...]
  /external/webkit/WebCore/platform/graphics/mac/
IntPointMac.mm 27 #include "IntPoint.h"
33 IntPoint::IntPoint(const NSPoint& p) : m_x(static_cast<int>(p.x)), m_y(static_cast<int>(p.y))
37 IntPoint::operator NSPoint() const
  /external/webkit/WebKit/android/WebCoreSupport/
DragClientAndroid.cpp 40 DragSourceAction DragClientAndroid::dragSourceActionMaskForPoint(const IntPoint&) { notImplemented(); return DragSourceActionNone; }
43 void DragClientAndroid::willPerformDragSourceAction(DragSourceAction, IntPoint const&, Clipboard*) {}
44 void DragClientAndroid::startDrag(void*, IntPoint const&, IntPoint const&, Clipboard*, Frame*, bool) {}
DragClientAndroid.h 38 virtual void willPerformDragSourceAction(DragSourceAction, const IntPoint&, Clipboard*);
41 virtual DragSourceAction dragSourceActionMaskForPoint(const IntPoint&);
43 virtual void startDrag(DragImageRef dragImage, const IntPoint& dragImageOrigin, const IntPoint& eventPos, Clipboard*, Frame*, bool linkDrag = false);
  /external/webkit/WebKit/haiku/WebCoreSupport/
DragClientHaiku.h 38 virtual DragSourceAction dragSourceActionMaskForPoint(const IntPoint&);
39 virtual void willPerformDragSourceAction(DragSourceAction, const IntPoint&, Clipboard*);
40 virtual void startDrag(DragImageRef dragImage, const IntPoint& dragImageOrigin,
41 const IntPoint& eventPos, Clipboard*, Frame*, bool linkDrag = false);
DragClientHaiku.cpp 51 DragSourceAction DragClientHaiku::dragSourceActionMaskForPoint(const IntPoint&)
57 void DragClientHaiku::willPerformDragSourceAction(DragSourceAction, const IntPoint&, Clipboard*)
62 void DragClientHaiku::startDrag(DragImageRef dragImage, const IntPoint&, const IntPoint&, Clipboard*, Frame*, bool)
  /external/webkit/WebCore/platform/graphics/brew/
IntPointBrew.cpp 27 #include "IntPoint.h"
33 IntPoint::IntPoint(const AEEPoint& point)
39 IntPoint::operator AEEPoint() const
  /external/webkit/WebCore/platform/graphics/cg/
IntPointCG.cpp 27 #include "IntPoint.h"
35 IntPoint::IntPoint(const CGPoint& p) : m_x(static_cast<int>(p.x)), m_y(static_cast<int>(p.y))
39 IntPoint::operator CGPoint() const
  /external/webkit/WebCore/platform/graphics/gtk/
IntPointGtk.cpp 21 #include "IntPoint.h"
27 IntPoint::IntPoint(const GdkPoint& p)
33 IntPoint::operator GdkPoint() const
  /external/webkit/WebCore/platform/graphics/wx/
IntPointWx.cpp 27 #include "IntPoint.h"
34 IntPoint::IntPoint(const wxPoint& p)
40 IntPoint::operator wxPoint() const
  /external/webkit/WebCore/platform/win/
WebCoreTextRenderer.h 31 class IntPoint;
34 void WebCoreDrawTextAtPoint(GraphicsContext&, const String&, const IntPoint&, const Font&, const Color&, int underlinedIndex = -1);
35 void WebCoreDrawDoubledTextAtPoint(GraphicsContext&, const String&, const IntPoint&, const Font&, const Color& topColor, const Color& bottomColor, int underlinedIndex = -1);
  /external/webkit/WebCore/platform/
PlatformTouchPoint.h 23 #include "IntPoint.h"
50 PlatformTouchPoint(const IntPoint& windowPos, State);
55 IntPoint screenPos() const { return m_screenPos; }
56 IntPoint pos() const { return m_pos; }
61 IntPoint m_screenPos;
62 IntPoint m_pos;
DragData.cpp 33 DragData::DragData(DragDataRef data, const IntPoint& clientPosition, const IntPoint& globalPosition,
Widget.cpp 90 IntPoint Widget::convertFromContainingWindow(const IntPoint& windowPoint) const
93 IntPoint parentPoint = parentScrollView->convertFromContainingWindow(windowPoint);
99 IntPoint Widget::convertToContainingWindow(const IntPoint& localPoint) const
102 IntPoint parentPoint = convertToContainingView(localPoint);
119 IntPoint Widget::convertFromRootToContainingWindow(const Widget*, const IntPoint& point)
124 IntPoint Widget::convertFromContainingWindowToRoot(const Widget*, const IntPoint& point
    [all...]
  /external/webkit/WebCore/css/
CSSCursorImageValue.h 25 #include "IntPoint.h"
35 static PassRefPtr<CSSCursorImageValue> create(const String& url, const IntPoint& hotspot)
42 IntPoint hotspot() const { return m_hotspot; }
52 CSSCursorImageValue(const String& url, const IntPoint& hotspot);
54 IntPoint m_hotspot;
  /external/webkit/WebKit/qt/WebCoreSupport/
DragClientQt.h 37 virtual DragSourceAction dragSourceActionMaskForPoint(const IntPoint&);
38 virtual void willPerformDragSourceAction(DragSourceAction, const IntPoint&, Clipboard*);
39 virtual void startDrag(DragImageRef dragImage, const IntPoint& dragImageOrigin, const IntPoint& eventPos, Clipboard*, Frame*, bool linkDrag = false);
  /external/webkit/WebKit/win/WebCoreSupport/
WebDragClient.h 39 virtual WebCore::DragSourceAction dragSourceActionMaskForPoint(const WebCore::IntPoint&);
40 virtual void willPerformDragSourceAction(WebCore::DragSourceAction, const WebCore::IntPoint&, WebCore::Clipboard*);
41 virtual void startDrag(WebCore::DragImageRef, const WebCore::IntPoint&, const WebCore::IntPoint&, WebCore::Clipboard*, WebCore::Frame*, bool);
  /external/webkit/WebKit/wx/WebKitSupport/
DragClientWx.cpp 47 void DragClientWx::willPerformDragSourceAction(DragSourceAction, const IntPoint&, Clipboard*)
57 DragSourceAction DragClientWx::dragSourceActionMaskForPoint(const IntPoint&)
64 const IntPoint& dragImageOrigin,
65 const IntPoint& eventPos, Clipboard*,
DragClientWx.h 35 virtual void willPerformDragSourceAction(WebCore::DragSourceAction, const WebCore::IntPoint&, WebCore::Clipboard*);
39 virtual WebCore::DragSourceAction dragSourceActionMaskForPoint(const WebCore::IntPoint&);
41 virtual void startDrag(WebCore::DragImageRef dragImage, const WebCore::IntPoint& dragImageOrigin, const WebCore::IntPoint& eventPos, WebCore::Clipboard*, WebCore::Frame*, bool linkDrag = false);
  /external/webkit/WebKit/chromium/src/
DragClientImpl.h 40 class IntPoint;
54 WebCore::DragSourceAction, const WebCore::IntPoint&, WebCore::Clipboard*);
57 const WebCore::IntPoint& windowPoint);
60 const WebCore::IntPoint& dragImageOrigin,
61 const WebCore::IntPoint& eventPos,
  /external/webkit/WebKit/gtk/WebCoreSupport/
DragClientGtk.h 44 virtual void willPerformDragSourceAction(WebCore::DragSourceAction, const WebCore::IntPoint&, WebCore::Clipboard*);
47 virtual WebCore::DragSourceAction dragSourceActionMaskForPoint(const WebCore::IntPoint& windowPoint);
49 virtual void startDrag(WebCore::DragImageRef dragImage, const WebCore::IntPoint& dragImageOrigin, const WebCore::IntPoint& eventPos, WebCore::Clipboard*, WebCore::Frame*, bool linkDrag = false);
56 WebCore::IntPoint m_startPos;

Completed in 425 milliseconds

1 2 3 4 5 6 7 8 91011>>