/external/webkit/WebCore/dom/ |
D | PositionIterator.cpp | 39 …return Position(m_parent, m_child ? m_child->nodeIndex() : (m_parent->hasChildNodes() ? maxDeepOff… in operator Position() 54 if (!m_parent->hasChildNodes() && m_offset < maxDeepOffset(m_parent)) in increment() 73 m_offset = m_parent->hasChildNodes() ? 0 : maxDeepOffset(m_parent); in decrement() 85 if (m_parent->hasChildNodes()) { in decrement() 87 if (!m_parent->hasChildNodes()) in decrement() 102 return !m_parent->hasChildNodes() && !m_offset || m_child && !m_child->previousSibling(); in atStart() 111 …return !m_parent->parentNode() && (m_parent->hasChildNodes() || m_offset >= maxDeepOffset(m_parent… in atEnd() 119 return !m_parent->hasChildNodes() && !m_offset; in atStartOfNode() 129 return m_parent->hasChildNodes() || m_offset >= maxDeepOffset(m_parent); in atEndOfNode()
|
D | Text.cpp | 99 ASSERT(type != Node::ENTITY_REFERENCE_NODE || !n->hasChildNodes()); in earliestLogicallyAdjacentTextNode() 116 ASSERT(type != Node::ENTITY_REFERENCE_NODE || !n->hasChildNodes()); in latestLogicallyAdjacentTextNode()
|
D | ContainerNodeAlgorithms.h | 61 if (n->hasChildNodes()) in removeAllChildrenInContainer()
|
D | ContainerNode.h | 53 bool hasChildNodes() const { return m_firstChild; } in hasChildNodes() function
|
D | Node.idl | 78 boolean hasChildNodes();
|
D | Node.h | 136 bool hasChildNodes() const { return firstChild(); } in hasChildNodes() function
|
D | Position.cpp | 141 if (child || !n->hasChildNodes() && o < maxDeepOffset(n)) { in next()
|
D | Element.cpp | 856 if (style->affectedByEmpty() && (!style->emptyState() || e->hasChildNodes())) in checkForSiblingStyleChanges()
|
/external/webkit/WebKit/win/ |
D | DOMCoreClasses.h | 182 virtual HRESULT STDMETHODCALLTYPE hasChildNodes( 408 virtual HRESULT STDMETHODCALLTYPE hasChildNodes( in hasChildNodes() function 409 /* [retval][out] */ BOOL *result) { return DOMNode::hasChildNodes(result); } in hasChildNodes() 640 virtual HRESULT STDMETHODCALLTYPE hasChildNodes( in hasChildNodes() function 641 /* [retval][out] */ BOOL *result) { return DOMNode::hasChildNodes(result); } in hasChildNodes()
|
D | DOMHTMLClasses.h | 254 virtual HRESULT STDMETHODCALLTYPE hasChildNodes( in hasChildNodes() function 255 /* [retval][out] */ BOOL *result) { return DOMDocument::hasChildNodes(result); } in hasChildNodes() 528 virtual HRESULT STDMETHODCALLTYPE hasChildNodes( in hasChildNodes() function 529 /* [retval][out] */ BOOL *result) { return DOMElement::hasChildNodes(result); } in hasChildNodes() 787 virtual HRESULT STDMETHODCALLTYPE hasChildNodes( in hasChildNodes() function 788 /* [retval][out] */ BOOL *result) { return DOMHTMLElement::hasChildNodes(result); } in hasChildNodes() 1092 virtual HRESULT STDMETHODCALLTYPE hasChildNodes( in hasChildNodes() function 1093 /* [retval][out] */ BOOL *result) { return DOMHTMLElement::hasChildNodes(result); } in hasChildNodes() 1416 virtual HRESULT STDMETHODCALLTYPE hasChildNodes( in hasChildNodes() function 1417 /* [retval][out] */ BOOL *result) { return DOMHTMLElement::hasChildNodes(result); } in hasChildNodes() [all …]
|
D | DOMCoreClasses.cpp | 234 HRESULT STDMETHODCALLTYPE DOMNode::hasChildNodes( in hasChildNodes() function in DOMNode
|
D | ChangeLog | 10150 (DeprecatedDOMNode::hasChildNodes): 10289 (DeprecatedDOMDocument::hasChildNodes): 10328 (DeprecatedDOMElement::hasChildNodes): 10822 (DeprecatedDOMHTMLDocument::hasChildNodes): 10879 (DeprecatedDOMHTMLElement::hasChildNodes): 10937 (DeprecatedDOMHTMLFormElement::hasChildNodes): 11009 (DeprecatedDOMHTMLSelectElement::hasChildNodes): 11081 (DeprecatedDOMHTMLOptionElement::hasChildNodes): 11153 (DeprecatedDOMHTMLInputElement::hasChildNodes): 11225 (DeprecatedDOMHTMLTextAreaElement::hasChildNodes): [all …]
|
/external/webkit/WebCore/svg/ |
D | SVGElementInstance.h | 183 bool hasChildNodes() const { return m_firstChild; } in hasChildNodes() function
|
D | SVGPatternElement.cpp | 300 if (!attributes.hasPatternContentElement() && current->hasChildNodes()) in collectPatternProperties()
|
D | SVGUseElement.cpp | 480 if (element->hasChildNodes()) in buildInstanceTree()
|
/external/webkit/WebCore/rendering/ |
D | RenderReplaced.cpp | 306 int end = element()->hasChildNodes() ? element()->childNodeCount() : 1; in isSelected()
|
D | RenderTreeAsText.cpp | 129 if (!node->hasChildNodes()) in isEmptyOrUnstyledAppleStyleSpan()
|
D | RenderTextControl.cpp | 159 if (value != text() || !m_innerText->hasChildNodes()) { in setInnerTextValue()
|
/external/webkit/WebCore/inspector/front-end/ |
D | utilities.js | 596 if (!this || !this.hasChildNodes || !this.hasChildNodes())
|
D | ElementsTreeOutline.js | 250 …gnoreWhitespace ? (firstChildSkippingWhitespace.call(node) ? true : false) : node.hasChildNodes());
|
D | ElementsPanel.js | 853 if (crumbs.hasChildNodes())
|
/external/webkit/WebCore/editing/ |
D | htmlediting.cpp | 64 return node && (!node->hasChildNodes() || editingIgnoresContent(node)); in isAtomicNode() 367 if (node->hasChildNodes()) in maxDeepOffset()
|
D | markup.cpp | 565 if (node->hasChildNodes()) in shouldSelfClose() 574 …if (!node->isElementNode() || shouldSelfClose(node) || (!node->hasChildNodes() && doesHTMLForbidEn… in appendEndMarkup()
|
D | ReplaceSelectionCommand.cpp | 293 if (!container->hasChildNodes()) in removeInterchangeNodes()
|
/external/webkit/WebKit/win/Interfaces/ |
D | DOMCore.idl | 178 - (BOOL)hasChildNodes; 180 HRESULT hasChildNodes([out, retval] BOOL* result);
|