Searched refs:hasChildNodes (Results 1 - 25 of 60) sorted by relevance

123

/external/webkit/LayoutTests/dom/html/level1/core/
H A Dhc_attrhaschildnodes.js78 Checks that Node.hasChildNodes() is true for an attribute with content.
92 var hasChildNodes;
104 hasChildNodes = titleAttr.hasChildNodes();
105 assertTrue("hasChildrenIsTrue",hasChildNodes);
H A Dhc_nodehaschildnodes.js78 The "hasChildNodes()" method returns true if the node
82 "hasChildNodes()" method. It should return the boolean
103 state = employeeNode.hasChildNodes();
H A Dhc_nodehaschildnodesfalse.js78 The "hasChildNodes()" method returns false if the node
81 Retrieve the text of the first "em" element and invoke the "hasChildNodes()" method. It
107 hasChild = emText.hasChildNodes();
/external/webkit/LayoutTests/dom/xhtml/level1/core/
H A Dhc_attrhaschildnodes.js78 Checks that Node.hasChildNodes() is true for an attribute with content.
92 var hasChildNodes;
104 hasChildNodes = titleAttr.hasChildNodes();
105 assertTrue("hasChildrenIsTrue",hasChildNodes);
H A Dhc_nodehaschildnodes.js78 The "hasChildNodes()" method returns true if the node
82 "hasChildNodes()" method. It should return the boolean
103 state = employeeNode.hasChildNodes();
H A Dhc_nodehaschildnodesfalse.js78 The "hasChildNodes()" method returns false if the node
81 Retrieve the text of the first "em" element and invoke the "hasChildNodes()" method. It
107 hasChild = emText.hasChildNodes();
/external/webkit/Source/WebCore/dom/
H A DPositionIterator.cpp46 if (m_anchorNode->hasChildNodes())
63 if (!m_anchorNode->hasChildNodes() && m_offsetInAnchor < lastOffsetForEditing(m_anchorNode))
82 m_offsetInAnchor = m_anchorNode->hasChildNodes() ? 0 : lastOffsetForEditing(m_anchorNode);
91 if (m_anchorNode->hasChildNodes()) {
93 m_offsetInAnchor = m_anchorNode->hasChildNodes()? 0: lastOffsetForEditing(m_anchorNode);
106 ASSERT(!m_anchorNode->hasChildNodes());
117 return (!m_anchorNode->hasChildNodes() && !m_offsetInAnchor) || (m_nodeAfterPositionInAnchor && !m_nodeAfterPositionInAnchor->previousSibling());
126 return !m_anchorNode->parentNode() && (m_anchorNode->hasChildNodes() || m_offsetInAnchor >= lastOffsetForEditing(m_anchorNode));
134 return !m_anchorNode->hasChildNodes() && !m_offsetInAnchor;
144 return m_anchorNode->hasChildNodes() || m_offsetInAncho
[all...]
H A DContainerNodeAlgorithms.h61 if (n->hasChildNodes())
H A DContainerNode.h59 bool hasChildNodes() const { return m_firstChild; } function in class:WebCore::ContainerNode
H A DText.cpp92 ASSERT(type != Node::ENTITY_REFERENCE_NODE || !n->hasChildNodes());
109 ASSERT(type != Node::ENTITY_REFERENCE_NODE || !n->hasChildNodes());
H A DNode.idl78 boolean hasChildNodes();
/external/webkit/LayoutTests/dom/xhtml/level3/core/
H A Ddocumentadoptnode15.js106 success = adoptedDocFrag.hasChildNodes();
H A Ddocumentadoptnode13.js113 success = adoptedDocFrag.hasChildNodes();
H A Ddocumentadoptnode22.js109 success = adoptedNode.hasChildNodes();
H A Ddocumentadoptnode14.js133 success = adoptedDocFrag.hasChildNodes();
/external/webkit/Source/WebCore/html/
H A DHTMLNoScriptElement.cpp68 if (hasChildNodes()) {
/external/webkit/Source/WebKit/chromium/src/
H A DWebNode.cpp128 bool WebNode::hasChildNodes() const function in class:WebKit::WebNode
130 return m_private->hasChildNodes();
H A DWebPageSerializerImpl.cpp356 if (element->hasChildNodes() || param->haveAddedContentsBeforeEnd)
376 if (element->hasChildNodes() || param->haveAddedContentsBeforeEnd) {
/external/webkit/Source/WebKit/chromium/public/
H A DWebNode.h95 WEBKIT_API bool hasChildNodes() const;
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTM.java237 public boolean hasChildNodes(int nodeHandle); method in interface:DTM
/external/webkit/Source/WebCore/editing/
H A DBreakBlockquoteCommand.cpp189 if (!originalParent->hasChildNodes())
H A DMarkupAccumulator.cpp435 if (node->hasChildNodes())
456 if (!node->isElementNode() || shouldSelfClose(node) || (!node->hasChildNodes() && elementCannotHaveEndTag(node)))
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebelement.cpp1049 if (m_element->hasChildNodes())
1075 if (m_element->hasChildNodes())
1252 while (node->hasChildNodes() && node->firstChild()->isElementNode())
1296 if (m_element->hasChildNodes())
1339 if (m_element->hasChildNodes())
/external/webkit/Source/WebKit/win/
H A DDOMCoreClasses.h181 virtual HRESULT STDMETHODCALLTYPE hasChildNodes(
405 virtual HRESULT STDMETHODCALLTYPE hasChildNodes( function in class:DOMDocument
406 /* [retval][out] */ BOOL* result) { return DOMNode::hasChildNodes(result); }
636 virtual HRESULT STDMETHODCALLTYPE hasChildNodes( function in class:DOMElement
637 /* [retval][out] */ BOOL* result) { return DOMNode::hasChildNodes(result); }
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
H A DDOM2DTMdefaultNamespaceDeclarationNode.java78 public boolean hasChildNodes() {return false;} method in class:DOM2DTMdefaultNamespaceDeclarationNode

Completed in 390 milliseconds

123