/external/webkit/Source/WebCore/editing/ |
D | FormatBlockCommand.cpp | 111 Element* rootEditableElement = range->startContainer()->rootEditableElement(); in elementForFormatBlockCommand() local 112 if (!rootEditableElement || commonAncestor->contains(rootEditableElement)) in elementForFormatBlockCommand()
|
D | htmlediting.cpp | 165 return node->rootEditableElement(); in lowestEditableAncestor() 214 return node->rootEditableElement(); in editableRootForPosition() 435 Node* rootEditableElement = pos.deprecatedNode()->rootEditableElement(); in firstInSpecialElement() local 436 …for (Node* n = pos.deprecatedNode(); n && n->rootEditableElement() == rootEditableElement; n = n->… in firstInSpecialElement() 451 Node* rootEditableElement = pos.deprecatedNode()->rootEditableElement(); in lastInSpecialElement() local 452 …for (Node* n = pos.deprecatedNode(); n && n->rootEditableElement() == rootEditableElement; n = n->… in lastInSpecialElement() 475 …esult.isNull() || result.deprecatedNode()->rootEditableElement() != pos.deprecatedNode()->rootEdit… in positionBeforeContainingSpecialElement() 493 …esult.isNull() || result.deprecatedNode()->rootEditableElement() != pos.deprecatedNode()->rootEdit… in positionAfterContainingSpecialElement() 772 …&& firstList->rootEditableElement() == secondList->rootEditableElement()// don't cross editing bou… in canMergeLists()
|
D | VisiblePosition.h | 82 …Element* rootEditableElement() const { return m_deepPosition.isNotNull() ? m_deepPosition.deprecat… in rootEditableElement() function
|
D | EditCommand.cpp | 164 Element* root = s.rootEditableElement(); in setStartingSelection() 175 Element* root = s.rootEditableElement(); in setEndingSelection()
|
D | SelectionController.h | 67 Element* rootEditableElement() const { return m_selection.rootEditableElement(); } in rootEditableElement() function
|
D | RemoveFormatCommand.cpp | 87 Node* root = frame->selection()->rootEditableElement(); in doApply()
|
D | TypingCommand.cpp | 53 Node* node = selection.rootEditableElement(); in canAppendNewLineFeed() 177 if (startNode && startNode->rootEditableElement() && compositionType != TextCompositionUpdate) { in insertText() 181 startNode->rootEditableElement()->dispatchEvent(evt, ec); in insertText() 449 Element* root = endingSelection().rootEditableElement(); in makeEditableRootEmpty()
|
D | VisibleSelection.h | 96 Element* rootEditableElement() const;
|
D | InsertParagraphSeparatorCommand.cpp | 204 if (startBlock == startBlock->rootEditableElement()) { in doApply()
|
D | ApplyBlockElementCommand.cpp | 61 if (!endingSelection().rootEditableElement()) in doApply()
|
D | SelectionController.cpp | 1238 Element* element = rootEditableElement(); in paintCaret() 1664 if (!rootEditableElement()) in notifyRendererOfSelectionChange() 1667 RenderObject* renderer = rootEditableElement()->shadowAncestorNode()->renderer(); in notifyRendererOfSelectionChange() 1700 if (Node* target = rootEditableElement()) { in setFocusedNodeIfNeeded()
|
D | InsertListCommand.cpp | 111 if (!endingSelection().rootEditableElement()) in doApply()
|
D | Editor.cpp | 184 return m_frame->selection()->rootEditableElement(); in canEdit() 252 return selection->isRange() && selection->rootEditableElement(); in canDelete() 270 …| previous.deepEquivalent().deprecatedNode()->rootEditableElement() != startContainer->rootEditabl… in canDeleteRange() 417 Node* nodeToCheck = m_frame->selection()->rootEditableElement(); in replaceSelectionWithFragment() 2283 if (Element* root = m_frame->selection()->selection().rootEditableElement()) in markAllMisspellingsAndBadGrammarInRanges()
|
D | ReplaceSelectionCommand.cpp | 141 Element* editableRoot = selection.rootEditableElement(); in ReplacementFragment() 818 Element* currentRoot = selection.rootEditableElement(); in doApply()
|
D | VisibleSelection.cpp | 571 Element* VisibleSelection::rootEditableElement() const in rootEditableElement() function in WebCore::VisibleSelection
|
D | CompositeEditCommand.cpp | 254 …r->canHaveChildren() || hasARenderedDescendant(node.get()) || node->rootEditableElement() == node)) in prune() 1052 || listNode == emptyListItem->rootEditableElement()) in breakOutOfEmptyListItem()
|
/external/webkit/Source/WebKit/wx/ |
D | WebDOMSelection.cpp | 53 return new WebDOMElement(m_selection->rootEditableElement()); in GetRootEditableElement()
|
/external/webkit/Source/WebCore/html/ |
D | HTMLAnchorElement.cpp | 161 …otEditableElementForSelectionOnMouseDown = document()->frame()->selection()->rootEditableElement(); in defaultEventHandler() 194 …ument()->frame() && document()->frame()->selection()->rootEditableElement() == rootEditableElement… in setActive() 525 …ouseEventWithoutShiftKey && m_rootEditableElementForSelectionOnMouseDown != rootEditableElement()); in treatLinkAsLiveForEventType()
|
/external/webkit/Source/WebCore/page/ |
D | FocusController.cpp | 314 Node* root = node->rootEditableElement(); in relinquishesEditingFocus() 345 Node * root = s->rootEditableElement(); in clearSelectionIfNeeded() 369 …if (oldFocusedNode && oldFocusedNode->rootEditableElement() == oldFocusedNode && !relinquishesEdit… in setFocusedNode()
|
D | EventHandler.cpp | 638 Element* editableElement = selection.rootEditableElement(); in selectionExtentRespectingEditingBoundary() 1157 return frame->selection()->rootEditableElement() != node->rootEditableElement(); in nodeIsNotBeingEdited() 2260 …if (start.deprecatedNode() && (selectionController->rootEditableElement() || selectionController->… in sendContextMenuEventForKey()
|
/external/webkit/Source/WebCore/dom/ |
D | Position.cpp | 420 Node* fromRootEditableElement = deprecatedNode()->rootEditableElement(); in previousCharacterPosition() 429 if (currentPos.deprecatedNode()->rootEditableElement() != fromRootEditableElement) in previousCharacterPosition() 448 Node* fromRootEditableElement = deprecatedNode()->rootEditableElement(); in nextCharacterPosition() 457 if (currentPos.deprecatedNode()->rootEditableElement() != fromRootEditableElement) in nextCharacterPosition()
|
D | Node.h | 264 Element* rootEditableElement() const;
|
/external/webkit/Source/WebKit/gtk/WebCoreSupport/ |
D | DumpRenderTreeSupportGtk.cpp | 561 Element* selectionRoot = frame->selection()->rootEditableElement(); in firstRectForCharacterRange() 584 Element* selectionRoot = frame->selection()->rootEditableElement(); in selectedRange()
|
/external/webkit/Source/WebKit/qt/WebCoreSupport/ |
D | DumpRenderTreeSupportQt.cpp | 570 Element* selectionRoot = frame->selection()->rootEditableElement(); in selectedRange() 596 Element* selectionRoot = frame->selection()->rootEditableElement(); in firstRectForCharacterRange()
|
/external/webkit/Source/WebKit/qt/Api/ |
D | qwebpage.cpp | 1064 if (frame->selection()->rootEditableElement()) in inputMethodEvent() 1065 node = frame->selection()->rootEditableElement()->shadowAncestorNode(); in inputMethodEvent() 1390 if (frame->selection()->rootEditableElement()) in inputMethodQuery() 1391 renderer = frame->selection()->rootEditableElement()->shadowAncestorNode()->renderer(); in inputMethodQuery()
|