OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
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
133
Node* enclosingCell =
enclosingNodeOfType
(start, &isTableCell);
140
if (enclosingCell && enclosingCell !=
enclosingNodeOfType
(endOfNextParagraph.deepEquivalent(), &isTableCell))
htmlediting.cpp
171
return (node == editableRootForPosition(pos) || node ==
enclosingNodeOfType
(pos, &isTableCell));
204
// Since
enclosingNodeOfType
won't search beyond the highest root editable node,
206
Element* enclosingCell = toElement(
enclosingNodeOfType
(p, &isTableCell));
327
Node* enclosingNode =
enclosingNodeOfType
(firstPositionInOrBeforeNode(node), isBlock, rule);
565
Node*
enclosingNodeOfType
(const Position& p, bool (*nodeIsOfType)(const Node*), EditingBoundaryCrossingRule rule)
633
return toElement(
enclosingNodeOfType
(p, isTableCell));
[
all
...]
TypingCommand.cpp
369
if (
enclosingNodeOfType
(endingSelection().start(), &isTableStructureNode)) {
444
Node* enclosingTableCell =
enclosingNodeOfType
(visibleStart.deepEquivalent(), &isTableCell);
533
Node* enclosingTableCell =
enclosingNodeOfType
(visibleEnd.deepEquivalent(), &isTableCell);
ReplaceSelectionCommand.cpp
378
bool isInsideMailBlockquote =
enclosingNodeOfType
(inserted, isMailBlockquote, CanCrossEditingBoundary);
452
return !
enclosingNodeOfType
(source.deepEquivalent(), &isMailPasteAsQuotationNode) &&
502
Node* blockquoteNode = !context || isMailPasteAsQuotationNode(context) ? context :
enclosingNodeOfType
(firstPositionInNode(context), isMailBlockquote, CanCrossEditingBoundary);
723
if (isMailPasteAsQuotationNode(topNode) ||
enclosingNodeOfType
(firstPositionInOrBeforeNode(topNode), isMailBlockquote, CanCrossEditingBoundary))
[
all
...]
htmlediting.h
68
Node*
enclosingNodeOfType
(const Position&, bool (*nodeIsOfType)(const Node*), EditingBoundaryCrossingRule = CannotCrossEditingBoundary);
markup.cpp
454
Node* commonAncestorBlock =
enclosingNodeOfType
(firstPositionInOrBeforeNode(commonAncestor), isHTMLBlockElement);
508
if (Node* parentListNode =
enclosingNodeOfType
(firstPositionInOrBeforeNode(range->firstNode()), isListItem)) {
[
all
...]
CompositeEditCommand.cpp
[
all
...]
EditingStyle.cpp
[
all
...]
Completed in 49 milliseconds