Home
last modified time | relevance | path

Searched refs:hasChildNodes (Results 1 – 25 of 35) sorted by relevance

12

/external/webkit/WebCore/dom/
DPositionIterator.cpp39 …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()
DText.cpp99 ASSERT(type != Node::ENTITY_REFERENCE_NODE || !n->hasChildNodes()); in earliestLogicallyAdjacentTextNode()
116 ASSERT(type != Node::ENTITY_REFERENCE_NODE || !n->hasChildNodes()); in latestLogicallyAdjacentTextNode()
DContainerNodeAlgorithms.h61 if (n->hasChildNodes()) in removeAllChildrenInContainer()
DContainerNode.h53 bool hasChildNodes() const { return m_firstChild; } in hasChildNodes() function
DNode.idl78 boolean hasChildNodes();
DNode.h136 bool hasChildNodes() const { return firstChild(); } in hasChildNodes() function
DPosition.cpp141 if (child || !n->hasChildNodes() && o < maxDeepOffset(n)) { in next()
DElement.cpp856 if (style->affectedByEmpty() && (!style->emptyState() || e->hasChildNodes())) in checkForSiblingStyleChanges()
/external/webkit/WebKit/win/
DDOMCoreClasses.h182 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()
DDOMHTMLClasses.h254 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 …]
DDOMCoreClasses.cpp234 HRESULT STDMETHODCALLTYPE DOMNode::hasChildNodes( in hasChildNodes() function in DOMNode
DChangeLog10150 (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/
DSVGElementInstance.h183 bool hasChildNodes() const { return m_firstChild; } in hasChildNodes() function
DSVGPatternElement.cpp300 if (!attributes.hasPatternContentElement() && current->hasChildNodes()) in collectPatternProperties()
DSVGUseElement.cpp480 if (element->hasChildNodes()) in buildInstanceTree()
/external/webkit/WebCore/rendering/
DRenderReplaced.cpp306 int end = element()->hasChildNodes() ? element()->childNodeCount() : 1; in isSelected()
DRenderTreeAsText.cpp129 if (!node->hasChildNodes()) in isEmptyOrUnstyledAppleStyleSpan()
DRenderTextControl.cpp159 if (value != text() || !m_innerText->hasChildNodes()) { in setInnerTextValue()
/external/webkit/WebCore/inspector/front-end/
Dutilities.js596 if (!this || !this.hasChildNodes || !this.hasChildNodes())
DElementsTreeOutline.js250 …gnoreWhitespace ? (firstChildSkippingWhitespace.call(node) ? true : false) : node.hasChildNodes());
DElementsPanel.js853 if (crumbs.hasChildNodes())
/external/webkit/WebCore/editing/
Dhtmlediting.cpp64 return node && (!node->hasChildNodes() || editingIgnoresContent(node)); in isAtomicNode()
367 if (node->hasChildNodes()) in maxDeepOffset()
Dmarkup.cpp565 if (node->hasChildNodes()) in shouldSelfClose()
574 …if (!node->isElementNode() || shouldSelfClose(node) || (!node->hasChildNodes() && doesHTMLForbidEn… in appendEndMarkup()
DReplaceSelectionCommand.cpp293 if (!container->hasChildNodes()) in removeInterchangeNodes()
/external/webkit/WebKit/win/Interfaces/
DDOMCore.idl178 - (BOOL)hasChildNodes;
180 HRESULT hasChildNodes([out, retval] BOOL* result);

12