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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/platform/graphics/
IntPointHash.h 23 #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(std::numeric_limits<int>::min(), 0);
    [all...]
IntPoint.h 78 class IntPoint {
80 IntPoint() : m_x(0), m_y(0) { }
81 IntPoint(int x, int y) : m_x(x), m_y(y) { }
82 explicit IntPoint(const IntSize& size) : m_x(size.width()), m_y(size.height()) { }
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 shrunkTo(const IntPoint& other) cons
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/efl/
IntPointEfl.cpp 24 #include "IntPoint.h"
30 IntPoint::IntPoint(const Evas_Point& p)
36 IntPoint::operator Evas_Point() const // NOLINT
  /external/webkit/Source/WebCore/platform/graphics/haiku/
IntPointHaiku.cpp 29 #include "IntPoint.h"
36 IntPoint::IntPoint(const BPoint& point)
42 IntPoint::operator BPoint() const
  /external/webkit/Source/WebCore/platform/graphics/qt/
IntPointQt.cpp 29 #include "IntPoint.h"
35 IntPoint::IntPoint(const QPoint& p)
41 IntPoint::operator QPoint() const
  /external/webkit/Source/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/Source/WebCore/platform/
PlatformGestureEvent.h 31 #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;
PlatformTouchPoint.h 23 #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;
  /external/webkit/Source/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/Source/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/Source/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/Source/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/Source/WebKit/efl/WebCoreSupport/
DragClientEfl.cpp 43 void DragClientEfl::willPerformDragSourceAction(DragSourceAction, const IntPoint&, Clipboard*)
53 DragSourceAction DragClientEfl::dragSourceActionMaskForPoint(const IntPoint&)
58 void DragClientEfl::startDrag(DragImageRef, const IntPoint&, const IntPoint&, Clipboard*, Frame*, bool)
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
DragClientQt.h 41 virtual DragSourceAction dragSourceActionMaskForPoint(const IntPoint&);
42 virtual void willPerformDragSourceAction(DragSourceAction, const IntPoint&, Clipboard*);
43 virtual void startDrag(DragImageRef, const IntPoint& dragImageOrigin, const IntPoint& eventPos, Clipboard*, Frame*, bool linkDrag = false);
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
DragClientWinCE.cpp 39 void DragClientWinCE::willPerformDragSourceAction(DragSourceAction, const IntPoint&, Clipboard*)
50 DragSourceAction DragClientWinCE::dragSourceActionMaskForPoint(const IntPoint&)
56 void DragClientWinCE::startDrag(DragImageRef, const IntPoint&, const IntPoint&, Clipboard*, Frame*, bool)
DragClientWinCE.h 35 virtual void willPerformDragSourceAction(WebCore::DragSourceAction, const WebCore::IntPoint&, WebCore::Clipboard*);
38 virtual WebCore::DragSourceAction dragSourceActionMaskForPoint(const WebCore::IntPoint&);
40 virtual void startDrag(WebCore::DragImageRef, const WebCore::IntPoint&, const WebCore::IntPoint&, WebCore::Clipboard*, WebCore::Frame*, bool = false);
  /external/webkit/Source/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*,
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebDragClient.cpp 41 void WebDragClient::willPerformDragSourceAction(DragSourceAction, const IntPoint&, Clipboard*)
50 DragSourceAction WebDragClient::dragSourceActionMaskForPoint(const IntPoint& windowPoint)
56 void WebDragClient::startDrag(DragImageRef, const IntPoint&, const IntPoint&, Clipboard*, Frame*, bool)
  /external/webkit/Source/WebCore/platform/graphics/brew/
IntPointBrew.cpp 27 #include "IntPoint.h"
33 IntPoint::IntPoint(const AEEPoint& point)
39 IntPoint::operator AEEPoint() const
  /external/webkit/Source/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/Source/WebCore/platform/graphics/gtk/
IntPointGtk.cpp 21 #include "IntPoint.h"
27 IntPoint::IntPoint(const GdkPoint& p)
33 IntPoint::operator GdkPoint() const
  /external/webkit/Source/WebCore/platform/graphics/wx/
IntPointWx.cpp 27 #include "IntPoint.h"
34 IntPoint::IntPoint(const wxPoint& p)
40 IntPoint::operator wxPoint() const
  /external/webkit/Source/WebCore/platform/graphics/filters/
FELighting.h 62 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& normalVector)
    [all...]

Completed in 1555 milliseconds

1 2 3 4 5 6 7 8 91011>>