Home
last modified time | relevance | path

Searched refs:highestEditableRoot (Results 1 – 9 of 9) sorted by relevance

/external/webkit/Source/WebCore/editing/
Dhtmlediting.cpp135 Node* highestEditableRoot(const Position& position) in highestEditableRoot() function
603 Node* root = highestEditableRoot(p); in enclosingNodeWithTag()
623 Node* root = rule == CannotCrossEditingBoundary ? highestEditableRoot(p) : 0; in enclosingNodeOfType()
641 Node* root = rule == CannotCrossEditingBoundary ? highestEditableRoot(p) : 0; in highestEnclosingNodeOfType()
675 Node* root = highestEditableRoot(firstPositionInOrBeforeNode(node)); in enclosingList()
693 Node* root = highestEditableRoot(firstPositionInOrBeforeNode(node)); in enclosingListChild()
DVisiblePosition.cpp413 Node* highestRoot = highestEditableRoot(deepEquivalent()); in honorEditableBoundaryAtOrBefore()
422 if (highestEditableRoot(pos.deepEquivalent()) == highestRoot) in honorEditableBoundaryAtOrBefore()
439 Node* highestRoot = highestEditableRoot(deepEquivalent()); in honorEditableBoundaryAtOrAfter()
448 if (highestEditableRoot(pos.deepEquivalent()) == highestRoot) in honorEditableBoundaryAtOrAfter()
Dvisible_units.cpp504 Node* highestRoot = highestEditableRoot(p); in previousLinePosition()
538 if (highestEditableRoot(firstPositionInOrBeforeNode(n)) != highestRoot) in previousLinePosition()
615 Node* highestRoot = highestEditableRoot(p); in nextLinePosition()
649 if (highestEditableRoot(firstPositionInOrBeforeNode(n)) != highestRoot) in nextLinePosition()
757 Node* highestRoot = highestEditableRoot(p); in startOfParagraph()
829 Node* highestRoot = highestEditableRoot(p); in endOfParagraph()
1029 Node* highestRoot = highestEditableRoot(visiblePosition.deepEquivalent()); in startOfEditableContent()
1038 Node* highestRoot = highestEditableRoot(visiblePosition.deepEquivalent()); in endOfEditableContent()
DVisibleSelection.cpp459 Node* baseRoot = highestEditableRoot(m_base); in adjustSelectionToAvoidCrossingEditingBoundaries()
460 Node* startRoot = highestEditableRoot(m_start); in adjustSelectionToAvoidCrossingEditingBoundaries()
461 Node* endRoot = highestEditableRoot(m_end); in adjustSelectionToAvoidCrossingEditingBoundaries()
Dhtmlediting.h58 Node* highestEditableRoot(const Position&);
DSelectionController.cpp1409 root = highestEditableRoot(m_selection.start()); in selectAll()
DEditor.cpp1715 Node* topNode = highestEditableRoot(position); in advanceToNextMisspelling()
/external/webkit/Source/WebCore/
DChangeLog-2006-12-3130221 (WebCore::previousLinePosition): Use highestEditableRoot so that this function can move from
30224 … (WebCore::startOfEditableContent): Renamed from startOfEditableRoot and use highestEditableRoot.
44956 (WebCore::VisiblePosition::next): Use the new highestEditableRoot.
44959 (WebCore::highestEditableRoot): Takes in a position.
45949 (WebCore::highestEditableRoot): Added, returns the highest editable root of a node if that
DChangeLog37661 (WebCore::highestEditableRoot):