enclosingNodeOfType  133 Source/core/editing/ApplyBlockElementCommand.cpp         Node* enclosingCell = enclosingNodeOfType(start, &isTableCell);
enclosingNodeOfType  140 Source/core/editing/ApplyBlockElementCommand.cpp         if (enclosingCell && enclosingCell != enclosingNodeOfType(endOfNextParagraph.deepEquivalent(), &isTableCell))
enclosingNodeOfType  103 Source/core/editing/BreakBlockquoteCommand.cpp     while (isFirstVisiblePositionInNode(VisiblePosition(pos), enclosingNodeOfType(pos, isMailBlockquote)))
enclosingNodeOfType 1339 Source/core/editing/CompositeEditCommand.cpp     if (enclosingNodeOfType(previous.deepEquivalent(), &isMailBlockquote))
enclosingNodeOfType  175 Source/core/editing/DeleteSelectionCommand.cpp     m_startTableRow = enclosingNodeOfType(start, &isHTMLTableRowElement);
enclosingNodeOfType  176 Source/core/editing/DeleteSelectionCommand.cpp     m_endTableRow = enclosingNodeOfType(end, &isHTMLTableRowElement);
enclosingNodeOfType  181 Source/core/editing/DeleteSelectionCommand.cpp     Node* startCell = enclosingNodeOfType(m_upstreamStart, &isTableCell, CanCrossEditingBoundary);
enclosingNodeOfType  182 Source/core/editing/DeleteSelectionCommand.cpp     Node* endCell = enclosingNodeOfType(m_downstreamEnd, &isTableCell, CanCrossEditingBoundary);
enclosingNodeOfType  255 Source/core/editing/DeleteSelectionCommand.cpp     m_startBlock = enclosingNodeOfType(m_downstreamStart.parentAnchoredEquivalent(), &isBlock, CanCrossEditingBoundary);
enclosingNodeOfType  256 Source/core/editing/DeleteSelectionCommand.cpp     m_endBlock = enclosingNodeOfType(m_upstreamEnd.parentAnchoredEquivalent(), &isBlock, CanCrossEditingBoundary);
enclosingNodeOfType  286 Source/core/editing/DeleteSelectionCommand.cpp     if (enclosingNodeOfType(m_selectionToDelete.start(), isMailBlockquote))
enclosingNodeOfType  635 Source/core/editing/DeleteSelectionCommand.cpp     Node* listItemInFirstParagraph = enclosingNodeOfType(m_upstreamStart, isListItem);
enclosingNodeOfType  636 Source/core/editing/DeleteSelectionCommand.cpp     Node* listItemInSecondParagraph = enclosingNodeOfType(m_downstreamEnd, isListItem);
enclosingNodeOfType  724 Source/core/editing/DeleteSelectionCommand.cpp     if (m_deleteIntoBlockquoteStyle && !enclosingNodeOfType(m_endingPosition, isMailBlockquote, CanCrossEditingBoundary))
enclosingNodeOfType 1055 Source/core/editing/EditingStyle.cpp         wrappingStyle->removeStyleAddedByNode(enclosingNodeOfType(firstPositionInOrBeforeNode(context), isMailBlockquote, CanCrossEditingBoundary));
enclosingNodeOfType   98 Source/core/editing/IndentOutdentCommand.cpp     Node* enclosingCell = enclosingNodeOfType(start, &isTableCell);
enclosingNodeOfType  132 Source/core/editing/IndentOutdentCommand.cpp     Node* enclosingNode = enclosingNodeOfType(visibleStartOfParagraph.deepEquivalent(), &isListOrIndentBlockquote);
enclosingNodeOfType  376 Source/core/editing/ReplaceSelectionCommand.cpp     bool isInsideMailBlockquote = enclosingNodeOfType(inserted, isMailBlockquote, CanCrossEditingBoundary);
enclosingNodeOfType  450 Source/core/editing/ReplaceSelectionCommand.cpp     return !enclosingNodeOfType(source.deepEquivalent(), &isMailPasteAsQuotationNode) &&
enclosingNodeOfType  501 Source/core/editing/ReplaceSelectionCommand.cpp             Node* blockquoteNode = !context || isMailPasteAsQuotationNode(context) ? context : enclosingNodeOfType(firstPositionInNode(context), isMailBlockquote, CanCrossEditingBoundary);
enclosingNodeOfType  722 Source/core/editing/ReplaceSelectionCommand.cpp     if (isMailPasteAsQuotationNode(topNode) || enclosingNodeOfType(firstPositionInOrBeforeNode(topNode), isMailBlockquote, CanCrossEditingBoundary))
enclosingNodeOfType  774 Source/core/editing/ReplaceSelectionCommand.cpp     Node* blockquoteNode = isMailPasteAsQuotationNode(context) ? context : enclosingNodeOfType(firstPositionInNode(context), isMailBlockquote, CanCrossEditingBoundary);
enclosingNodeOfType  916 Source/core/editing/ReplaceSelectionCommand.cpp     bool startIsInsideMailBlockquote = enclosingNodeOfType(insertionPos, isMailBlockquote, CanCrossEditingBoundary);
enclosingNodeOfType  970 Source/core/editing/ReplaceSelectionCommand.cpp     if (startIsInsideMailBlockquote && m_preventNesting && !(enclosingNodeOfType(insertionPos, &isTableStructureNode))) {
enclosingNodeOfType 1217 Source/core/editing/ReplaceSelectionCommand.cpp     if (Node* mailBlockquote = enclosingNodeOfType(positionAtStartOfInsertedContent().deepEquivalent(), isMailPasteAsQuotationNode))
enclosingNodeOfType  371 Source/core/editing/TypingCommand.cpp     if (enclosingNodeOfType(endingSelection().start(), &isTableStructureNode)) {
enclosingNodeOfType  449 Source/core/editing/TypingCommand.cpp         Node* enclosingTableCell = enclosingNodeOfType(visibleStart.deepEquivalent(), &isTableCell);
enclosingNodeOfType  538 Source/core/editing/TypingCommand.cpp         Node* enclosingTableCell = enclosingNodeOfType(visibleEnd.deepEquivalent(), &isTableCell);
enclosingNodeOfType  173 Source/core/editing/htmlediting.cpp     return (node == editableRootForPosition(pos) || node == enclosingNodeOfType(pos, &isTableCell));
enclosingNodeOfType  208 Source/core/editing/htmlediting.cpp     Element* enclosingCell = toElement(enclosingNodeOfType(p, &isTableCell));
enclosingNodeOfType  329 Source/core/editing/htmlediting.cpp     Node* enclosingNode = enclosingNodeOfType(firstPositionInOrBeforeNode(node), isBlock, rule);
enclosingNodeOfType  633 Source/core/editing/htmlediting.cpp     return toElement(enclosingNodeOfType(p, isTableCell));
enclosingNodeOfType   68 Source/core/editing/htmlediting.h Node* enclosingNodeOfType(const Position&, bool (*nodeIsOfType)(const Node*), EditingBoundaryCrossingRule = CannotCrossEditingBoundary);
enclosingNodeOfType  453 Source/core/editing/markup.cpp     Node* commonAncestorBlock = enclosingNodeOfType(firstPositionInOrBeforeNode(commonAncestor), isHTMLBlockElement);
enclosingNodeOfType  507 Source/core/editing/markup.cpp         if (Node* parentListNode = enclosingNodeOfType(firstPositionInOrBeforeNode(range->firstNode()), isListItem)) {