HomeSort by relevance Sort by last modified time
    Searched refs:enclosingNodeOfType (Results 1 - 11 of 11) sorted by null

  /external/webkit/Source/WebCore/editing/
DeleteSelectionCommand.cpp 187 m_startTableRow = enclosingNodeOfType(start, &isTableRow);
188 m_endTableRow = enclosingNodeOfType(end, &isTableRow);
191 // If the cell is non-editable, enclosingNodeOfType won't return it by default, so
193 Node* startCell = enclosingNodeOfType(m_upstreamStart, &isTableCell, CanCrossEditingBoundary);
194 Node* endCell = enclosingNodeOfType(m_downstreamEnd, &isTableCell, CanCrossEditingBoundary);
265 // FIXME: Passing false to enclosingNodeOfType tells it that it's OK to return a non-editable
267 m_startBlock = enclosingNodeOfType(m_downstreamStart.parentAnchoredEquivalent(), &isBlock, CanCrossEditingBoundary);
268 m_endBlock = enclosingNodeOfType(m_upstreamEnd.parentAnchoredEquivalent(), &isBlock, CanCrossEditingBoundary);
289 if (enclosingNodeOfType(m_selectionToDelete.start(), isMailBlockquote))
    [all...]
IndentOutdentCommand.cpp 93 Node* enclosingCell = enclosingNodeOfType(start, &isTableCell);
122 Node* enclosingNode = enclosingNodeOfType(visibleStartOfParagraph.deepEquivalent(), &isListOrIndentBlockquote);
BreakBlockquoteCommand.cpp 102 while (isFirstVisiblePositionInNode(VisiblePosition(pos), enclosingNodeOfType(pos, isMailBlockquote)))
ApplyBlockElementCommand.cpp 124 Node* enclosingCell = enclosingNodeOfType(start, &isTableCell);
131 if (enclosingCell && enclosingCell != enclosingNodeOfType(endOfNextParagraph.deepEquivalent(), &isTableCell))
htmlediting.cpp 189 return (node == editableRootForPosition(pos) || node == enclosingNodeOfType(pos, &isTableCell));
222 // Since enclosingNodeOfType won't search beyond the highest root editable node,
224 Element* enclosingCell = static_cast<Element*>(enclosingNodeOfType(p, &isTableCell));
333 return static_cast<Element*>(enclosingNodeOfType(firstPositionInOrBeforeNode(node), isBlock, rule));
616 Node* enclosingNodeOfType(const Position& p, bool (*nodeIsOfType)(const Node*), EditingBoundaryCrossingRule rule)
656 return static_cast<Element*>(enclosingNodeOfType(p, isTableCell));
    [all...]
ReplaceSelectionCommand.cpp 361 bool isInsideMailBlockquote = enclosingNodeOfType(inserted, isMailBlockquote, CanCrossEditingBoundary);
461 return !enclosingNodeOfType(source.deepEquivalent(), &isMailPasteAsQuotationNode) &&
560 if (isMailPasteAsQuotationNode(topNode) || enclosingNodeOfType(firstPositionInOrBeforeNode(topNode), isMailBlockquote, CanCrossEditingBoundary))
627 Node* blockquoteNode = isMailPasteAsQuotationNode(context) ? context : enclosingNodeOfType(firstPositionInNode(context), isMailBlockquote, CanCrossEditingBoundary);
    [all...]
htmlediting.h 67 Node* enclosingNodeOfType(const Position&, bool (*nodeIsOfType)(const Node*), EditingBoundaryCrossingRule = CannotCrossEditingBoundary);
DeleteButtonController.cpp 161 // The enclosingNodeOfType function only works on nodes that are editable
166 Node* element = enclosingNodeOfType(firstPositionInNode(container), &isDeletableElement);
TypingCommand.cpp 438 if (enclosingNodeOfType(endingSelection().start(), &isTableStructureNode)) {
markup.cpp 638 style->removeStyleAddedByNode(enclosingNodeOfType(firstPositionInNode(parentOfLastClosed), isMailBlockquote, CanCrossEditingBoundary));
    [all...]
CompositeEditCommand.cpp     [all...]

Completed in 54 milliseconds