Home
last modified time | relevance | path

Searched refs:m_anchorType (Results 1 – 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/dom/
DPosition.h62 , m_anchorType(PositionIsOffsetInAnchor) in Position()
75 AnchorType anchorType() const { return static_cast<AnchorType>(m_anchorType); } in anchorType()
77 …void clear() { m_anchorNode.clear(); m_offset = 0; m_anchorType = PositionIsOffsetInAnchor; m_isLe… in clear()
95 if (m_isLegacyEditingPosition || m_anchorType != PositionIsAfterAnchor) in deprecatedEditingOffset()
192 unsigned m_anchorType : 2; variable
DPosition.cpp77 , m_anchorType(anchorTypeForLegacyEditingPosition(m_anchorNode.get(), m_offset)) in Position()
85 , m_anchorType(anchorType) in Position()
94 , m_anchorType(anchorType) in Position()
108 m_anchorType = anchorTypeForLegacyEditingPosition(m_anchorNode.get(), m_offset); in moveToPosition()
115 m_anchorType = anchorTypeForLegacyEditingPosition(m_anchorNode.get(), m_offset); in moveToOffset()
153 ASSERT(m_anchorType == PositionIsAfterAnchor); in offsetForPositionAfterAnchor()
166 if (m_offset <= 0 && m_anchorType != PositionIsAfterAnchor) { in parentAnchoredEquivalent()
171 …if (!m_anchorNode->offsetInCharacters() && (m_anchorType == PositionIsAfterAnchor || static_cast<u… in parentAnchoredEquivalent()
328 return m_anchorType == PositionIsBeforeAnchor || m_offset <= 0; in atFirstEditingPositionForNode()
335 …return m_anchorType == PositionIsAfterAnchor || m_offset >= lastOffsetForEditing(deprecatedNode()); in atLastEditingPositionForNode()
[all …]
/external/webkit/Source/WebCore/
DChangeLog-2010-01-2982972 …Because m_anchorType : 2 is treated as a signed integer by cl.exe, anchorType() wasn't returning t…
82973 We made m_anchorType unsigned so that anchorType() returns the correct value.