Searched defs:IntPoint (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/geometry/cg/
H A DIntPointCG.cpp27 #include "platform/geometry/IntPoint.h"
33 IntPoint::IntPoint(const CGPoint& p) : m_x(static_cast<int>(p.x)), m_y(static_cast<int>(p.y)) function in class:WebCore::IntPoint
37 IntPoint::operator CGPoint() const
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebPoint.h37 #include "platform/geometry/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/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DIntPoint.h44 class PLATFORM_EXPORT IntPoint { class in namespace:WebCore
46 IntPoint() : m_x(0), m_y(0) { } function in class:WebCore::IntPoint
47 IntPoint(int x, int y) : m_x(x), m_y(y) { } function in class:WebCore::IntPoint
48 explicit IntPoint(const IntSize& size) : m_x(size.width()), m_y(size.height()) { } function in class:WebCore::IntPoint
50 static IntPoint zero() { return IntPoint(); }
59 void moveBy(const IntPoint& offset) { move(offset.x(), offset.y()); }
67 IntPoint expandedTo(const IntPoint& other) const
69 return IntPoint(m_
[all...]
/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dllimits.h44 #define IntPoint(p) ((unsigned int)(lu_mem)(p)) macro
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderListBox.cpp538 void RenderListBox::panScroll(const IntPoint& panStartMousePosition)
547 IntPoint lastKnownMousePosition = frame()->eventHandler().lastKnownMousePosition();
549 static IntPoint previousMousePosition;
571 IntPoint scrollPoint(0, 0);
583 int RenderListBox::scrollToward(const IntPoint& destination)
601 void RenderListBox::autoscroll(const IntPoint&) argument
603 IntPoint pos = frame()->view()->windowToContents(frame()->eventHandler().lastKnownMousePosition());
661 IntPoint RenderListBox::scrollPosition() const
663 return IntPoint(0, m_indexOffset);
666 void RenderListBox::setScrollOffset(const IntPoint
[all...]

Completed in 233 milliseconds