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

  /external/chromium_org/third_party/WebKit/Source/core/editing/
DeleteSelectionCommand.cpp 189 m_startTableRow = enclosingNodeOfType(start, &isTableRow);
190 m_endTableRow = enclosingNodeOfType(end, &isTableRow);
193 // If the cell is non-editable, enclosingNodeOfType won't return it by default, so
195 Node* startCell = enclosingNodeOfType(m_upstreamStart, &isTableCell, CanCrossEditingBoundary);
196 Node* endCell = enclosingNodeOfType(m_downstreamEnd, &isTableCell, CanCrossEditingBoundary);
267 // FIXME: Passing false to enclosingNodeOfType tells it that it's OK to return a non-editable
269 m_startBlock = enclosingNodeOfType(m_downstreamStart.parentAnchoredEquivalent(), &isBlock, CanCrossEditingBoundary);
270 m_endBlock = enclosingNodeOfType(m_upstreamEnd.parentAnchoredEquivalent(), &isBlock, CanCrossEditingBoundary);
300 if (enclosingNodeOfType(m_selectionToDelete.start(), isMailBlockquote))
    [all...]
IndentOutdentCommand.cpp 87 Node* enclosingCell = enclosingNodeOfType(start, &isTableCell);
122 Node* enclosingNode = enclosingNodeOfType(visibleStartOfParagraph.deepEquivalent(), &isListOrIndentBlockquote);
BreakBlockquoteCommand.cpp 103 while (isFirstVisiblePositionInNode(VisiblePosition(pos), enclosingNodeOfType(pos, isMailBlockquote)))
ApplyBlockElementCommand.cpp 132 Node* enclosingCell = enclosingNodeOfType(start, &isTableCell);
139 if (enclosingCell && enclosingCell != enclosingNodeOfType(endOfNextParagraph.deepEquivalent(), &isTableCell))
htmlediting.cpp 175 return (node == editableRootForPosition(pos) || node == enclosingNodeOfType(pos, &isTableCell));
208 // Since enclosingNodeOfType won't search beyond the highest root editable node,
210 Element* enclosingCell = toElement(enclosingNodeOfType(p, &isTableCell));
331 Node* enclosingNode = enclosingNodeOfType(firstPositionInOrBeforeNode(node), isBlock, rule);
572 Node* enclosingNodeOfType(const Position& p, bool (*nodeIsOfType)(const Node*), EditingBoundaryCrossingRule rule)
640 return toElement(enclosingNodeOfType(p, isTableCell));
    [all...]
TypingCommand.cpp 374 if (enclosingNodeOfType(endingSelection().start(), &isTableStructureNode)) {
449 Node* enclosingTableCell = enclosingNodeOfType(visibleStart.deepEquivalent(), &isTableCell);
538 Node* enclosingTableCell = enclosingNodeOfType(visibleEnd.deepEquivalent(), &isTableCell);
ReplaceSelectionCommand.cpp 381 bool isInsideMailBlockquote = enclosingNodeOfType(inserted, isMailBlockquote, CanCrossEditingBoundary);
455 return !enclosingNodeOfType(source.deepEquivalent(), &isMailPasteAsQuotationNode) &&
504 Node* blockquoteNode = !context || isMailPasteAsQuotationNode(context) ? context : enclosingNodeOfType(firstPositionInNode(context), isMailBlockquote, CanCrossEditingBoundary);
723 if (isMailPasteAsQuotationNode(topNode) || enclosingNodeOfType(firstPositionInOrBeforeNode(topNode), isMailBlockquote, CanCrossEditingBoundary))
    [all...]
htmlediting.h 69 Node* enclosingNodeOfType(const Position&, bool (*nodeIsOfType)(const Node*), EditingBoundaryCrossingRule = CannotCrossEditingBoundary);
markup.cpp 453 Node* commonAncestorBlock = enclosingNodeOfType(firstPositionInOrBeforeNode(commonAncestor), isHTMLBlockElement);
507 if (Node* parentListNode = enclosingNodeOfType(firstPositionInOrBeforeNode(range->firstNode()), isListItem)) {
    [all...]
CompositeEditCommand.cpp     [all...]
EditingStyle.cpp     [all...]

Completed in 352 milliseconds