Searched defs:anchorType (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DPosition.h92 AnchorType anchorType() const { return static_cast<AnchorType>(m_anchorType); } function in class:blink::Position
107 ASSERT(anchorType() == PositionIsOffsetInAnchor);
228 return a.anchorNode() == b.anchorNode() && a.deprecatedEditingOffset() == b.deprecatedEditingOffset() && a.anchorType() == b.anchorType();
H A DPosition.cpp91 Position::Position(PassRefPtrWillBeRawPtr<Node> anchorNode, AnchorType anchorType) argument
94 , m_anchorType(anchorType)
99 ASSERT(anchorType != PositionIsOffsetInAnchor);
100 ASSERT(!((anchorType == PositionIsBeforeChildren || anchorType == PositionIsAfterChildren)
104 Position::Position(PassRefPtrWillBeRawPtr<Node> anchorNode, int offset, AnchorType anchorType) argument
107 , m_anchorType(anchorType)
112 ASSERT(anchorType == PositionIsOffsetInAnchor);
127 ASSERT(anchorType() == PositionIsOffsetInAnchor || m_isLegacyEditingPosition);
135 ASSERT(anchorType()
[all...]

Completed in 110 milliseconds