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 179 m_startTableRow = enclosingNodeOfType(start, &isHTMLTableRowElement);
180 m_endTableRow = enclosingNodeOfType(end, &isHTMLTableRowElement);
183 // If the cell is non-editable, enclosingNodeOfType won't return it by default, so
185 Node* startCell = enclosingNodeOfType(m_upstreamStart, &isTableCell, CanCrossEditingBoundary);
186 Node* endCell = enclosingNodeOfType(m_downstreamEnd, &isTableCell, CanCrossEditingBoundary);
257 // FIXME: Passing false to enclosingNodeOfType tells it that it's OK to return a non-editable
259 m_startBlock = enclosingNodeOfType(m_downstreamStart.parentAnchoredEquivalent(), &isBlock, CanCrossEditingBoundary);
260 m_endBlock = enclosingNodeOfType(m_upstreamEnd.parentAnchoredEquivalent(), &isBlock, CanCrossEditingBoundary);
290 if (enclosingNodeOfType(m_selectionToDelete.start(), isMailBlockquote))
639 Node* listItemInFirstParagraph = enclosingNodeOfType(m_upstreamStart, isListItem)
    [all...]
IndentOutdentCommand.cpp 98 Node* enclosingCell = enclosingNodeOfType(start, &isTableCell);
132 Node* enclosingNode = enclosingNodeOfType(visibleStartOfParagraph.deepEquivalent(), &isListOrIndentBlockquote);
BreakBlockquoteCommand.cpp 103 while (isFirstVisiblePositionInNode(VisiblePosition(pos), enclosingNodeOfType(pos, isMailBlockquote)))
ApplyBlockElementCommand.cpp 137 Node* enclosingCell = enclosingNodeOfType(start, &isTableCell);
144 if (enclosingCell && enclosingCell != enclosingNodeOfType(endOfNextParagraph.deepEquivalent(), &isTableCell))
htmlediting.cpp 173 return (node == editableRootForPosition(pos) || node == enclosingNodeOfType(pos, &isTableCell));
206 // Since enclosingNodeOfType won't search beyond the highest root editable node,
208 Element* enclosingCell = toElement(enclosingNodeOfType(p, &isTableCell));
333 Node* enclosingNode = enclosingNodeOfType(firstPositionInOrBeforeNode(node), isBlock, rule);
569 Node* enclosingNodeOfType(const Position& p, bool (*nodeIsOfType)(const Node*), EditingBoundaryCrossingRule rule)
637 return toElement(enclosingNodeOfType(p, isTableCell));
    [all...]
TypingCommand.cpp 371 if (enclosingNodeOfType(endingSelection().start(), &isTableStructureNode)) {
449 Node* enclosingTableCell = enclosingNodeOfType(visibleStart.deepEquivalent(), &isTableCell);
538 Node* enclosingTableCell = enclosingNodeOfType(visibleEnd.deepEquivalent(), &isTableCell);
ReplaceSelectionCommand.cpp 384 bool isInsideMailBlockquote = enclosingNodeOfType(inserted, isMailBlockquote, CanCrossEditingBoundary);
461 return !enclosingNodeOfType(source.deepEquivalent(), &isMailPasteAsQuotationNode) &&
512 Node* blockquoteNode = !context || isMailPasteAsQuotationNode(context) ? context : enclosingNodeOfType(firstPositionInNode(context), isMailBlockquote, CanCrossEditingBoundary);
733 if (isMailPasteAsQuotationNode(topNode) || enclosingNodeOfType(firstPositionInOrBeforeNode(topNode), isMailBlockquote, CanCrossEditingBoundary))
    [all...]
htmlediting.h 68 Node* enclosingNodeOfType(const Position&, bool (*nodeIsOfType)(const Node*), EditingBoundaryCrossingRule = CannotCrossEditingBoundary);
markup.cpp 465 Node* commonAncestorBlock = enclosingNodeOfType(firstPositionInOrBeforeNode(commonAncestor), isHTMLBlockElement);
519 if (Node* parentListNode = enclosingNodeOfType(firstPositionInOrBeforeNode(range->firstNode()), isListItem)) {
    [all...]
CompositeEditCommand.cpp     [all...]
EditingStyle.cpp     [all...]

Completed in 567 milliseconds