countChildren     545 Source/core/dom/ContainerNode.cpp             removedChildren.reserveInitialCapacity(countChildren());
countChildren     108 Source/core/dom/ContainerNode.h     unsigned countChildren() const;
countChildren     274 Source/core/dom/ContainerNode.h inline unsigned Node::countChildren() const
countChildren     278 Source/core/dom/ContainerNode.h     return toContainerNode(this)->countChildren();
countChildren     474 Source/core/dom/Node.h     unsigned countChildren() const;
countChildren     218 Source/core/dom/Position.cpp         && (m_anchorType == PositionIsAfterAnchor || m_anchorType == PositionIsAfterChildren || static_cast<unsigned>(m_offset) == m_anchorNode->countChildren())
countChildren     277 Source/core/dom/Position.h     return node->offsetInCharacters() ? node->maxCharacterOffset() : static_cast<int>(node->countChildren());
countChildren     661 Source/core/dom/Range.cpp         return toContainerNode(node)->countChildren();
countChildren    1627 Source/core/dom/Range.cpp         return m_start.container()->countChildren();
countChildren    1636 Source/core/dom/Range.cpp         return m_end.container()->countChildren();
countChildren    1160 Source/core/editing/Editor.cpp             searchRange->setEnd(shadowTreeRoot.get(), shadowTreeRoot->countChildren());
countChildren    1178 Source/core/editing/Editor.cpp                 searchRange->setEnd(shadowTreeRoot.get(), shadowTreeRoot->countChildren());
countChildren     355 Source/core/editing/htmlediting.cpp         return node->countChildren();
countChildren     115 Source/core/frame/SmartClip.cpp     if (hitNodes.isEmpty() || hitNodes.size() == bestNode->countChildren()) {
countChildren     340 Source/core/page/DOMSelection.cpp     if (offset > (node->offsetInCharacters() ? caretMaxOffset(node) : (int)node->countChildren())) {
countChildren     496 Source/core/page/DOMSelection.cpp     setBaseAndExtent(n, 0, n, n->countChildren(), exceptionState);
countChildren    3129 Source/core/rendering/RenderObject.cpp         return node() ? max(1U, node()->countChildren()) : 1;
countChildren     612 Source/core/rendering/RenderReplaced.cpp     int end = node()->hasChildren() ? node()->countChildren() : 1;
countChildren     324 Source/web/TextFinder.cpp             searchRange->setEnd(shadowTreeRoot, shadowTreeRoot->countChildren(), exceptionState);