Home | History | Annotate | Download | only in rendering

Lines Matching full:other

55 HitTestResult::HitTestResult(const HitTestResult& other)
56 : m_innerNode(other.innerNode())
57 , m_innerNonSharedNode(other.innerNonSharedNode())
58 , m_point(other.point())
59 , m_localPoint(other.localPoint())
60 , m_innerURLElement(other.URLElement())
61 , m_scrollbar(other.scrollbar())
62 , m_isOverWidget(other.isOverWidget())
70 HitTestResult& HitTestResult::operator=(const HitTestResult& other)
72 m_innerNode = other.innerNode();
73 m_innerNonSharedNode = other.innerNonSharedNode();
74 m_point = other.point();
75 m_localPoint = other.localPoint();
76 m_innerURLElement = other.URLElement();
77 m_scrollbar = other.scrollbar();
78 m_isOverWidget = other.isOverWidget();