Searched refs:IntPoint (Results 1 - 25 of 517) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/platform/graphics/
H A DIntPointHash.h23 #include "IntPoint.h"
31 static unsigned hash(const WebCore::IntPoint& p) { return WTF::intHash(static_cast<uint64_t>(p.x()) << 32 | p.y()); }
32 static bool equal(const WebCore::IntPoint& a, const WebCore::IntPoint& b) { return a == b; }
35 template<> struct HashTraits<WebCore::IntPoint> : GenericHashTraits<WebCore::IntPoint> {
37 static WebCore::IntPoint emptyValue() { return WebCore::IntPoint(0, std::numeric_limits<int>::min()); }
39 static void constructDeletedValue(WebCore::IntPoint& slot) { slot = WebCore::IntPoint(st
[all...]
H A DIntPoint.h78 class IntPoint { class in namespace:WebCore
80 IntPoint() : m_x(0), m_y(0) { } function in class:WebCore::IntPoint
81 IntPoint(int x, int y) : m_x(x), m_y(y) { } function in class:WebCore::IntPoint
82 explicit IntPoint(const IntSize& size) : m_x(size.width()), m_y(size.height()) { } function in class:WebCore::IntPoint
84 static IntPoint zero() { return IntPoint(); }
95 IntPoint expandedTo(const IntPoint& other) const
97 return IntPoint(m_x > other.m_x ? m_x : other.m_x,
101 IntPoint shrunkT
[all...]
/external/webkit/Source/WebCore/platform/graphics/efl/
H A DIntPointEfl.cpp24 #include "IntPoint.h"
30 IntPoint::IntPoint(const Evas_Point& p) function in class:WebCore::IntPoint
36 IntPoint::operator Evas_Point() const // NOLINT
/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DIntPointHaiku.cpp29 #include "IntPoint.h"
36 IntPoint::IntPoint(const BPoint& point) function in class:WebCore::IntPoint
42 IntPoint::operator BPoint() const
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DIntPointQt.cpp29 #include "IntPoint.h"
35 IntPoint::IntPoint(const QPoint& p) function in class:WebCore::IntPoint
41 IntPoint::operator QPoint() const
/external/webkit/Source/WebCore/platform/graphics/win/
H A DIntPointWin.cpp27 #include "IntPoint.h"
33 IntPoint::IntPoint(const POINT& p) function in class:WebCore::IntPoint
39 IntPoint::operator POINT() const
45 IntPoint::IntPoint(const POINTS& p) function in class:WebCore::IntPoint
51 IntPoint::operator POINTS() const
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DIntPointSkia.cpp32 #include "IntPoint.h"
38 IntPoint::IntPoint(const SkIPoint& p) function in class:WebCore::IntPoint
44 IntPoint::operator SkIPoint() const
50 IntPoint::operator SkPoint() const
/external/webkit/Source/WebCore/platform/graphics/mac/
H A DIntPointMac.mm27 #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/Source/WebCore/platform/
H A DPlatformGestureEvent.h31 #include "IntPoint.h"
50 const IntPoint& position() const { return m_position; } // PlatformWindow coordinates.
51 const IntPoint& globalPosition() const { return m_globalPosition; } // Screen coordinates.
57 IntPoint m_position;
58 IntPoint m_globalPosition;
H A DPlatformTouchPoint.h23 #include "IntPoint.h"
51 PlatformTouchPoint(unsigned id, const IntPoint& windowPos, State);
53 PlatformTouchPoint(int id, const IntPoint& windowPos, State);
55 PlatformTouchPoint(unsigned id, const IntPoint& windowPos, State);
60 IntPoint screenPos() const { return m_screenPos; }
61 IntPoint pos() const { return m_pos; }
66 IntPoint m_screenPos;
67 IntPoint m_pos;
H A DDragData.cpp33 DragData::DragData(DragDataRef data, const IntPoint& clientPosition, const IntPoint& globalPosition,
43 DragData::DragData(const String&, const IntPoint& clientPosition, const IntPoint& globalPosition,
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DDragClientAndroid.cpp40 DragSourceAction DragClientAndroid::dragSourceActionMaskForPoint(const IntPoint&) { notImplemented(); return DragSourceActionNone; } argument
43 void DragClientAndroid::willPerformDragSourceAction(DragSourceAction, IntPoint const&, Clipboard*) {}
44 void DragClientAndroid::startDrag(void*, IntPoint const&, IntPoint const&, Clipboard*, Frame*, bool) {}
H A DDragClientAndroid.h38 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/Source/WebKit/efl/WebCoreSupport/
H A DDragClientEfl.cpp43 void DragClientEfl::willPerformDragSourceAction(DragSourceAction, const IntPoint&, Clipboard*) argument
53 DragSourceAction DragClientEfl::dragSourceActionMaskForPoint(const IntPoint&) argument
58 void DragClientEfl::startDrag(DragImageRef, const IntPoint&, const IntPoint&, Clipboard*, Frame*, bool) argument
/external/webkit/Source/WebKit/haiku/WebCoreSupport/
H A DDragClientHaiku.cpp51 DragSourceAction DragClientHaiku::dragSourceActionMaskForPoint(const IntPoint&) argument
57 void DragClientHaiku::willPerformDragSourceAction(DragSourceAction, const IntPoint&, Clipboard*) argument
62 void DragClientHaiku::startDrag(DragImageRef dragImage, const IntPoint&, const IntPoint&, Clipboard*, Frame*, bool) argument
H A DDragClientHaiku.h38 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);
/external/webkit/Source/WebKit/wince/WebCoreSupport/
H A DDragClientWinCE.cpp39 void DragClientWinCE::willPerformDragSourceAction(DragSourceAction, const IntPoint&, Clipboard*) argument
50 DragSourceAction DragClientWinCE::dragSourceActionMaskForPoint(const IntPoint&) argument
56 void DragClientWinCE::startDrag(DragImageRef, const IntPoint&, const IntPoint&, Clipboard*, Frame*, bool) argument
/external/webkit/Source/WebKit/wx/WebKitSupport/
H A DDragClientWx.cpp47 void DragClientWx::willPerformDragSourceAction(DragSourceAction, const IntPoint&, Clipboard*) argument
57 DragSourceAction DragClientWx::dragSourceActionMaskForPoint(const IntPoint&) argument
64 const IntPoint& dragImageOrigin,
65 const IntPoint& eventPos, Clipboard*,
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebDragClient.cpp41 void WebDragClient::willPerformDragSourceAction(DragSourceAction, const IntPoint&, Clipboard*) argument
50 DragSourceAction WebDragClient::dragSourceActionMaskForPoint(const IntPoint& windowPoint)
56 void WebDragClient::startDrag(DragImageRef, const IntPoint&, const IntPoint&, Clipboard*, Frame*, bool) argument
/external/webkit/Source/WebCore/platform/graphics/brew/
H A DIntPointBrew.cpp27 #include "IntPoint.h"
33 IntPoint::IntPoint(const AEEPoint& point) function in class:WebCore::IntPoint
39 IntPoint::operator AEEPoint() const
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DIntPointCG.cpp27 #include "IntPoint.h"
35 IntPoint::IntPoint(const CGPoint& p) : m_x(static_cast<int>(p.x)), m_y(static_cast<int>(p.y)) function in class:WebCore::IntPoint
39 IntPoint::operator CGPoint() const
/external/webkit/Source/WebCore/platform/graphics/gtk/
H A DIntPointGtk.cpp21 #include "IntPoint.h"
27 IntPoint::IntPoint(const GdkPoint& p) function in class:WebCore::IntPoint
33 IntPoint::operator GdkPoint() const
/external/webkit/Source/WebCore/platform/graphics/wx/
H A DIntPointWx.cpp27 #include "IntPoint.h"
34 IntPoint::IntPoint(const wxPoint& p) function in class:WebCore::IntPoint
40 IntPoint::operator wxPoint() const
/external/webkit/Source/WebCore/platform/graphics/filters/
H A DFELighting.h62 inline void topLeft(int offset, IntPoint& normalVector);
63 inline void topRow(int offset, IntPoint& normalVector);
64 inline void topRight(int offset, IntPoint& normalVector);
65 inline void leftColumn(int offset, IntPoint& normalVector);
66 inline void interior(int offset, IntPoint& normalVector);
67 inline void rightColumn(int offset, IntPoint& normalVector);
68 inline void bottomLeft(int offset, IntPoint& normalVector);
69 inline void bottomRow(int offset, IntPoint& normalVector);
70 inline void bottomRight(int offset, IntPoint& normalVector);
77 int lightX, int lightY, float factorX, float factorY, IntPoint
[all...]
/external/webkit/Source/WebCore/platform/win/
H A DWebCoreTextRenderer.h36 class IntPoint;
38 void WebCoreDrawTextAtPoint(GraphicsContext&, const String&, const IntPoint&, const Font&, const Color&, int underlinedIndex = -1);
39 void WebCoreDrawDoubledTextAtPoint(GraphicsContext&, const String&, const IntPoint&, const Font&, const Color& topColor, const Color& bottomColor, int underlinedIndex = -1);

Completed in 373 milliseconds

1234567891011>>