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

1 2 3 4

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_attrhaschildnodes.java 31 * Checks that Node.hasChildNodes() is true for an attribute with content.
63 boolean hasChildNodes;
69 hasChildNodes = titleAttr.hasChildNodes();
70 assertTrue("hasChildrenIsTrue", hasChildNodes);
hc_nodehaschildnodes.java 31 * The "hasChildNodes()" method returns true if the node
35 * "hasChildNodes()" method. It should return the boolean
69 state = employeeNode.hasChildNodes();
hc_nodehaschildnodesfalse.java 31 * The "hasChildNodes()" method returns false if the node
34 * Retrieve the text of the first "em" element and invoke the "hasChildNodes()" method. It
72 hasChild = emText.hasChildNodes();
nodehaschildnodes.java 31 * The "hasChildNodes()" method returns true if the node
35 * "hasChildNodes()" method. It should return the boolean
70 state = employeeNode.hasChildNodes();
nodehaschildnodesfalse.java 31 * The "hasChildNodes()" method returns false if the node
35 * second employee and invoke the "hasChildNodes()" method.
77 state = textNode.hasChildNodes();
  /external/webkit/Source/WebCore/dom/
PositionIterator.cpp 46 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_offsetInAnchor >= lastOffsetForEditing(m_anchorNode)
    [all...]
ContainerNodeAlgorithms.h 61 if (n->hasChildNodes())
ContainerNode.h 59 bool hasChildNodes() const { return m_firstChild; }
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_attrhaschildnodes.js 78 Checks that Node.hasChildNodes() is true for an attribute with content.
92 var hasChildNodes;
104 hasChildNodes = titleAttr.hasChildNodes();
105 assertTrue("hasChildrenIsTrue",hasChildNodes);
hc_nodehaschildnodes.js 78 The "hasChildNodes()" method returns true if the node
82 "hasChildNodes()" method. It should return the boolean
103 state = employeeNode.hasChildNodes();
hc_nodehaschildnodesfalse.js 78 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/
hc_attrhaschildnodes.js 78 Checks that Node.hasChildNodes() is true for an attribute with content.
92 var hasChildNodes;
104 hasChildNodes = titleAttr.hasChildNodes();
105 assertTrue("hasChildrenIsTrue",hasChildNodes);
hc_nodehaschildnodes.js 78 The "hasChildNodes()" method returns true if the node
82 "hasChildNodes()" method. It should return the boolean
103 state = employeeNode.hasChildNodes();
hc_nodehaschildnodesfalse.js 78 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/html/
HTMLNoScriptElement.cpp 68 if (hasChildNodes()) {
  /external/webkit/Source/WebKit/chromium/src/
WebNode.cpp 128 bool WebNode::hasChildNodes() const
130 return m_private->hasChildNodes();
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
documentimportnode09.java 88 success = importedDocFrag.hasChildNodes();
documentimportnode10.java 88 success = importedDocFrag.hasChildNodes();
documentimportnode11.java 41 * if the original document is not altered by checking if hasChildNodes returns false.
84 success = imported.hasChildNodes();
importNode05.java 87 hasChild = aNode.hasChildNodes();
importNode06.java 85 hasChild = aNode.hasChildNodes();
importNode08.java 83 hasChild = aNode.hasChildNodes();
  /libcore/luni/src/main/java/org/w3c/dom/
Node.java 401 public boolean hasChildNodes();
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DocumentImportNode.java 259 success = importedDocFrag.hasChildNodes();
276 success = importedDocFrag.hasChildNodes();
289 success = imported.hasChildNodes();
  /external/webkit/Source/WebKit/chromium/public/
WebNode.h 95 WEBKIT_API bool hasChildNodes() const;

Completed in 1511 milliseconds

1 2 3 4