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

  /external/webkit/WebCore/dom/
Position.h 53 enum AnchorType {
75 Position(PassRefPtr<Node> anchorNode, AnchorType);
77 Position(PassRefPtr<Node> anchorNode, int offset, AnchorType);
79 AnchorType anchorType() const { return static_cast<AnchorType>(m_anchorType); }
91 ASSERT(anchorType() == PositionIsOffsetInAnchor);
177 static AnchorType anchorTypeForLegacyEditingPosition(Node* anchorNode, int offset);
Position.cpp 84 Position::Position(PassRefPtr<Node> anchorNode, AnchorType anchorType)
87 , m_anchorType(anchorType)
90 ASSERT(anchorType != PositionIsOffsetInAnchor);
93 Position::Position(PassRefPtr<Node> anchorNode, int offset, AnchorType anchorType)
96 , m_anchorType(anchorType)
99 ASSERT(anchorType == PositionIsOffsetInAnchor);
104 ASSERT(anchorType() == PositionIsOffsetInAnchor || m_isLegacyEditingPosition);
112 ASSERT(anchorType() == PositionIsOffsetInAnchor || m_isLegacyEditingPosition)
    [all...]

Completed in 67 milliseconds