Home
last modified time | relevance | path

Searched refs:offsetInCharacters (Results 1 – 18 of 18) sorted by relevance

/external/webkit/Source/WebCore/dom/
DRangeBoundaryPoint.h124 ASSERT(m_containerNode->offsetInCharacters()); in setOffset()
151 if (m_containerNode->offsetInCharacters()) { in setToEndOfNode()
DCharacterData.h67 virtual bool offsetInCharacters() const;
DProcessingInstruction.h65 virtual bool offsetInCharacters() const;
DPosition.h242 …return node->offsetInCharacters() ? node->maxCharacterOffset() : static_cast<int>(node->childNodeC… in lastOffsetInNode()
DCharacterData.cpp226 bool CharacterData::offsetInCharacters() const in offsetInCharacters() function in WebCore::CharacterData
DProcessingInstruction.cpp253 bool ProcessingInstruction::offsetInCharacters() const in offsetInCharacters() function in WebCore::ProcessingInstruction
DRange.cpp1561 if (m_start.container()->offsetInCharacters()) in firstNode()
1605 if (m_end.container()->offsetInCharacters()) in pastLastNode()
1713 if (!m_start.container()->offsetInCharacters()) in maxStartOffset()
1722 if (!m_end.container()->offsetInCharacters()) in maxEndOffset()
DNode.h421 virtual bool offsetInCharacters() const;
DPosition.cpp171 …if (!m_anchorNode->offsetInCharacters() && (m_anchorType == PositionIsAfterAnchor || static_cast<u… in parentAnchoredEquivalent()
DNode.cpp2185 bool Node::offsetInCharacters() const in offsetInCharacters() function in WebCore::Node
/external/webkit/Source/WebCore/page/
DDOMSelection.cpp353 …if (offset < 0 || offset > (node->offsetInCharacters() ? caretMaxOffset(node) : (int)node->childNo… in extend()
/external/webkit/Source/WebCore/editing/
DTextIterator.cpp187 if (rangeEndOffset >= 0 && !rangeEndContainer->offsetInCharacters()) { in nextInPreOrderCrossingShadowBoundaries()
1067 if (node->offsetInCharacters()) in node()
1111 if (!startNode->offsetInCharacters()) { in SimplifiedBackwardsTextIterator()
1117 if (!endNode->offsetInCharacters()) { in SimplifiedBackwardsTextIterator()
Dhtmlediting.cpp354 if (node->offsetInCharacters()) in lastOffsetForEditing()
/external/webkit/Source/WebKit/android/jni/
DWebViewCore.cpp2543 if (node->offsetInCharacters()) in getImplicitBoundaryNode()
2900 if (currentNode->offsetInCharacters()) in formatMarkup()
/external/webkit/Source/WebCore/
DChangeLog-2006-05-109880 Use maxOffset if offsetInCharacters, otherwise use childNodeCount.
15384 - changed offsetInCharacters to be a member function of NodeImpl
15477 * dom/CommentImpl.cpp: (WebCore::CommentImpl::offsetInCharacters): Added. Returns true.
DChangeLog-2008-08-1074311 to highlight that it is a match to offsetInCharacters(), and much different from other
74313 offsetInCharacters() before calling this.
74319 …* dom/Comment.{h,cpp}: Removed an override for offsetInCharacters(), which is already present in C…
74342 …ProcessingInstruction was already returning true from offsetInCharacters(), but didn't override ma…
DChangeLog-2005-08-2335432 (DOM::RangeImpl::surroundContents): Use offsetInCharacters.
35433 (DOM::RangeImpl::startNode): Added check for nil start container and use offsetInCharacters.
36290 (DOM::offsetInCharacters): Moved this helper here from khtml_text_operations.cpp. This
DChangeLog-2005-12-1924546 (NodeImpl::maxDeepOffset): use isTextNode() instead of offsetInCharacters().