HomeSort by relevance Sort by last modified time
    Searched refs:isDescendantOf (Results 1 - 25 of 48) sorted by null

1 2

  /external/webkit/Source/WebCore/dom/
NodeIterator.cpp 172 if (!removedNode->isDescendantOf(root()))
175 bool willRemoveReferenceNodeAncestor = referenceNode.node && referenceNode.node->isDescendantOf(removedNode);
185 while (node && node->isDescendantOf(removedNode))
196 while (node && node->isDescendantOf(removedNode))
214 while (node && node->isDescendantOf(removedNode))
224 while (node && node->isDescendantOf(removedNode))
SelectorNodeList.cpp 55 if (element && (rootNode->isDocumentNode() || element->isDescendantOf(rootNode)) && selectorChecker.checkSelector(onlySelector, element))
Node.cpp     [all...]
Node.h 409 bool isDescendantOf(const Node*) const;
  /external/webkit/Source/WebCore/page/
FrameTree.h 55 bool isDescendantOf(const Frame* ancestor) const;
FrameTree.cpp 242 bool FrameTree::isDescendantOf(const Frame* ancestor) const
260 ASSERT(!stayWithin || child->tree()->isDescendantOf(stayWithin));
269 ASSERT(!stayWithin || sibling->tree()->isDescendantOf(stayWithin));
282 ASSERT(!stayWithin || !sibling || sibling->tree()->isDescendantOf(stayWithin));
FocusController.cpp 339 if (selectionStartNode == newFocusedNode || selectionStartNode->isDescendantOf(newFocusedNode) || selectionStartNode->shadowAncestorNode() == newFocusedNode)
  /external/webkit/Source/WebCore/editing/
VisiblePosition.cpp 416 if (highestRoot && !pos.deepEquivalent().deprecatedNode()->isDescendantOf(highestRoot))
442 if (highestRoot && !pos.deepEquivalent().deprecatedNode()->isDescendantOf(highestRoot))
530 bool nextIsOutsideOriginalBlock = !nextNode->isDescendantOf(originalBlock) && nextNode != originalBlock;
531 bool prevIsOutsideOriginalBlock = !prevNode->isDescendantOf(originalBlock) && prevNode != originalBlock;
683 if (!visiblePosition.deepEquivalent().containerNode()->isDescendantOf(node))
687 return previous.isNull() || !previous.deepEquivalent().deprecatedNode()->isDescendantOf(node);
695 if (!visiblePosition.deepEquivalent().containerNode()->isDescendantOf(node))
699 return next.isNull() || !next.deepEquivalent().deprecatedNode()->isDescendantOf(node);
DeleteSelectionCommand.cpp 145 if (startSpecialContainer && startSpecialContainer->isDescendantOf(endSpecialContainer))
149 else if (endSpecialContainer && endSpecialContainer->isDescendantOf(startSpecialContainer))
352 if (m_startRoot != m_endRoot && !(node->isDescendantOf(m_startRoot.get()) && node->isDescendantOf(m_endRoot.get()))) {
473 bool startNodeWasDescendantOfEndNode = m_upstreamStart.deprecatedNode()->isDescendantOf(m_downstreamEnd.deprecatedNode());
496 } else if (!m_downstreamEnd.deprecatedNode()->isDescendantOf(node.get())) {
517 if (m_downstreamEnd.deprecatedNode() != startNode && !m_upstreamStart.deprecatedNode()->isDescendantOf(m_downstreamEnd.deprecatedNode()) && m_downstreamEnd.anchorNode()->inDocument() && m_downstreamEnd.deprecatedEditingOffset() >= caretMinOffset(m_downstreamEnd.deprecatedNode())) {
536 if (m_upstreamStart.deprecatedNode()->isDescendantOf(m_downstreamEnd.deprecatedNode())) {
609 if (!mergeDestination.deepEquivalent().deprecatedNode() || !mergeDestination.deepEquivalent().deprecatedNode()->isDescendantOf(enclosingBlock(m_upstreamStart.containerNode())) || m_startsAtEmptyLine) {
    [all...]
htmlediting.cpp 289 while (p.deprecatedNode() && !isEditablePosition(p) && p.deprecatedNode()->isDescendantOf(highestRoot))
292 if (p.deprecatedNode() && p.deprecatedNode() != highestRoot && !p.deprecatedNode()->isDescendantOf(highestRoot))
311 while (p.deprecatedNode() && !isEditablePosition(p) && p.deprecatedNode()->isDescendantOf(highestRoot))
314 if (p.deprecatedNode() && p.deprecatedNode() != highestRoot && !p.deprecatedNode()->isDescendantOf(highestRoot))
    [all...]
BreakBlockquoteCommand.cpp 123 if (!startNode->isDescendantOf(topBlockquote)) {
FormatBlockCommand.cpp 75 && refNode != root && !root->isDescendantOf(refNode)) {
CompositeEditCommand.cpp 277 ASSERT(!first->isDescendantOf(second.get()) && second != first);
731 if (!upstreamEnd.deprecatedNode()->isDescendantOf(upstreamStart.deprecatedNode())) {
739 ASSERT(upstreamStart.deprecatedNode()->isDescendantOf(enclosingBlock(upstreamEnd.deprecatedNode())));
804 if (start.deprecatedNode() != end.deprecatedNode() && !start.deprecatedNode()->isDescendantOf(end.deprecatedNode())) {
808 while (!end.deprecatedNode()->isDescendantOf(outerNode)) {
820 if (n == end.deprecatedNode() || end.deprecatedNode()->isDescendantOf(n))
    [all...]
markup.cpp 344 if (pastEnd && pastEnd->isDescendantOf(n))
366 if (next != pastEnd && next->isDescendantOf(ancestor))
377 Node* lastAncestorClosedOrSelf = n->isDescendantOf(lastClosed) ? lastClosed : n;
383 ASSERT(startNode->isDescendantOf(parent));
696 if (node->isDescendantOf(deleteButtonContainerElement))
    [all...]
TextIterator.cpp 451 if ((pastEnd && parentNode == m_endContainer) || m_endContainer->isDescendantOf(parentNode))
889 if (!m_node->isDescendantOf(m_startContainer))
    [all...]
ApplyStyleCommand.cpp 340 if (start.deprecatedNode()->isDescendantOf(end.deprecatedNode()))
720 if (pastEndNode && pastEndNode->isDescendantOf(node))
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/
WebFrameProxy.h 128 bool isDescendantOf(const WebFrameProxy* ancestor) const;
WebFrameProxy.cpp 221 bool WebFrameProxy::isDescendantOf(const WebFrameProxy* ancestor) const
  /external/webkit/Source/WebKit/mac/Carbon/
HIWebView.mm 921 check( [oldFirstResponderView isDescendantOf:view->fWebView] );
924 && ![oldFirstResponderView isDescendantOf:view->fFirstResponder] )
    [all...]
  /external/webkit/Source/WebCore/platform/mac/
ScrollViewMac.mm 65 ASSERT(![parentView isDescendantOf:childView]);
WidgetMac.mm 83 if ([firstResponder isKindOfClass:[NSView class]] && [(NSView *)firstResponder isDescendantOf:view])
  /external/webkit/Source/WebKit/mac/Misc/
WebNSViewExtras.m 209 ([responder isKindOfClass:[NSView class]] && [(NSView *)responder isDescendantOf:self])));
  /external/webkit/Source/WebCore/html/
HTMLDocument.cpp 154 if (focusedFrame->tree()->isDescendantOf(frame()))
  /external/webkit/Source/WebCore/svg/
SVGSVGElement.cpp 646 if (element && element->isDescendantOf(this))
  /external/webkit/Source/WebKit/android/jni/
WebViewCore.h 653 bool isDescendantOf(WebCore::Node* parent, WebCore::Node* node);
    [all...]

Completed in 399 milliseconds

1 2