Home
last modified time | relevance | path

Searched refs:m_rectBasedTestResult (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/rendering/
DHitTestResult.cpp109m_rectBasedTestResult = adoptPtr(other.m_rectBasedTestResult ? new NodeSet(*other.m_rectBasedTestR… in HitTestResult()
135m_rectBasedTestResult = adoptPtr(other.m_rectBasedTestResult ? new NodeSet(*other.m_rectBasedTestR… in operator =()
609 if (other.m_rectBasedTestResult) { in append()
611 …for (NodeSet::const_iterator it = other.m_rectBasedTestResult->begin(), last = other.m_rectBasedTe… in append()
630 if (!m_rectBasedTestResult) in rectBasedTestResult()
631 m_rectBasedTestResult = adoptPtr(new NodeSet); in rectBasedTestResult()
632 return *m_rectBasedTestResult; in rectBasedTestResult()
637 if (!m_rectBasedTestResult) in mutableRectBasedTestResult()
638 m_rectBasedTestResult = adoptPtr(new NodeSet); in mutableRectBasedTestResult()
639 return *m_rectBasedTestResult; in mutableRectBasedTestResult()
DHitTestResult.h145 mutable OwnPtr<NodeSet> m_rectBasedTestResult; variable
/external/webkit/Source/WebCore/
DChangeLog34278 …(WebCore::HitTestResult::HitTestResult): copy *m_rectBasedTestResult if m_rectBasedTestResult isn'…
34279 … (WebCore::HitTestResult::operator=): copy *m_rectBasedTestResult if m_rectBasedTestResult isn't 0
34280 …::addNodeToRectBasedTestResult): use mutableRectBasedTestResult() rather than m_rectBasedTestResult
34281 …(WebCore::HitTestResult::append): append *(other.m_rectBasedTestResult) if other.m_rectBasedTestRe…
34283 …pedef for ListHashSet<RefPtr<Node> > to ease readability. Change m_rectBasedTestResult from ListH…
DChangeLog-2010-12-0692217 (WebCore::HitTestResult::operator=): Modified to assign the m_rectBasedTestResult as well.