HomeSort by relevance Sort by last modified time
    Searched defs:rectForPoint (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/rendering/
HitTestResult.h 106 IntRect rectForPoint(int x, int y) const;
107 IntRect rectForPoint(const IntPoint&) const;
108 static IntRect rectForPoint(const IntPoint&, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding);
148 inline IntRect HitTestResult::rectForPoint(int x, int y) const
150 return rectForPoint(IntPoint(x, y), m_topPadding, m_rightPadding, m_bottomPadding, m_leftPadding);
158 inline IntRect HitTestResult::rectForPoint(const IntPoint& point) const
160 return rectForPoint(point, m_topPadding, m_rightPadding, m_bottomPadding, m_leftPadding);
HitTestResult.cpp 562 return !rect.contains(rectForPoint(x, y));
593 return !rect.contains(rectForPoint(x, y));
616 IntRect HitTestResult::rectForPoint(const IntPoint& point, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding)

Completed in 37 milliseconds