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

  /external/webkit/Source/WebCore/dom/
Position.h 54 enum AnchorType {
71 Position(PassRefPtr<Node> anchorNode, AnchorType);
73 Position(PassRefPtr<Node> anchorNode, int offset, AnchorType);
75 AnchorType anchorType() const { return static_cast<AnchorType>(m_anchorType); }
88 ASSERT(anchorType() == PositionIsOffsetInAnchor);
185 static AnchorType anchorTypeForLegacyEditingPosition(Node* anchorNode, int offset);
200 return a.anchorNode() == b.anchorNode() && a.deprecatedEditingOffset() == b.deprecatedEditingOffset() && a.anchorType() == b.anchorType();
    [all...]
Position.cpp 82 Position::Position(PassRefPtr<Node> anchorNode, AnchorType anchorType)
85 , m_anchorType(anchorType)
88 ASSERT(anchorType != PositionIsOffsetInAnchor);
91 Position::Position(PassRefPtr<Node> anchorNode, int offset, AnchorType anchorType)
94 , m_anchorType(anchorType)
98 ASSERT(anchorType == PositionIsOffsetInAnchor);
104 ASSERT(anchorType() == PositionIsOffsetInAnchor || m_isLegacyEditingPosition);
112 ASSERT(anchorType() == PositionIsOffsetInAnchor || m_isLegacyEditingPosition)
    [all...]
  /external/webkit/Source/WebCore/editing/
visible_units.cpp 759 Position::AnchorType type = p.anchorType();
831 Position::AnchorType type = p.anchorType();
    [all...]

Completed in 97 milliseconds