Home
last modified time | relevance | path

Searched refs:pastLastNode (Results 1 – 10 of 10) sorted by relevance

/external/webkit/Source/WebCore/dom/
DDocumentMarkerController.cpp332 Node* pastLastNode = range->pastLastNode(); in markersInRange() local
333 for (Node* node = range->firstNode(); node != pastLastNode; node = node->traverseNextNode()) { in markersInRange()
578 Node* pastLastNode = range->pastLastNode(); in setMarkersActive() local
579 for (Node* node = range->firstNode(); node != pastLastNode; node = node->traverseNextNode()) { in setMarkersActive()
627 Node* pastLastNode = range->pastLastNode(); in hasMarkers() local
628 for (Node* node = range->firstNode(); node != pastLastNode; node = node->traverseNextNode()) { in hasMarkers()
653 Node* pastLastNode = range->pastLastNode(); in clearDescriptionOnMarkersIntersectingRange() local
654 for (Node* node = range->firstNode(); node != pastLastNode; node = node->traverseNextNode()) { in clearDescriptionOnMarkersIntersectingRange()
DRange.h102 Node* pastLastNode() const;
DRange.cpp1036 Node* pastLast = pastLastNode(); in toString()
1516 Node* pastLast = pastLastNode(); in checkDeleteExtract()
1591 Node* Range::pastLastNode() const in pastLastNode() function in WebCore::Range
1621 Node* stopNode = pastLastNode(); in textRects()
1641 Node* stopNode = pastLastNode(); in textQuads()
1931 Node* stopNode = pastLastNode(); in getBorderAndTextQuads()
/external/webkit/Source/WebCore/editing/
Dmarkup.cpp559 Node* pastEnd = updatedRange->pastLastNode(); in createMarkup()
DEditor.cpp541 Node* pastEnd = range->pastLastNode(); in fontForSelection()
582 …->document(), position.parentAnchoredEquivalent(), end.parentAnchoredEquivalent())->pastLastNode(); in textDirectionForSelection()
/external/webkit/Source/WebKit/android/jni/
DWebViewCore.cpp2838 Node* pastLastNode = wholeRange->pastLastNode(); in formatMarkup() local
2842 while (currentNode != pastLastNode) { in formatMarkup()
2866 if (nextNode == pastLastNode) { in formatMarkup()
/external/webkit/Source/WebKit/chromium/src/
DWebFrameImpl.cpp2118 while (node && node != m_activeMatch->pastLastNode()) { in setFindEndstateFocusAndSelection()
/external/webkit/Source/WebCore/
DChangeLog-2008-08-1035571 (WebCore::Range::pastLastNode): Ditto.
42079 (WebCore::Document::removeMarkers): Updated for Range::first/pastLastNode name change.
42142 (WebCore::Range::pastLastNode): Ditto.
42157 pastEndNode to firstNode and pastLastNode to reduce the chance of
42171 (WebCore::Editor::fontForSelection): Changed for pastLastNode name change.
42182 (WebCore::TextIterator::TextIterator): Changed for firstNode and pastLastNode
DChangeLog-2009-06-1653805 …Range::pastLastNode() anymore. pastEndNode is the node after the last one that is fully selected,…
DChangeLog-2010-01-2990781 nextInPreOrderCrossingShadowBoundaries instead of Range::pastLastNode to fix the bug.