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

1 2 3

  /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/WebCore/dom/
PositionIterator.cpp 43 if (m_anchorNode->hasChildNodes())
60 if (!m_anchorNode->hasChildNodes() && m_offsetInAnchor < lastOffsetForEditing(m_anchorNode))
79 m_offsetInAnchor = m_anchorNode->hasChildNodes() ? 0 : lastOffsetForEditing(m_anchorNode);
91 if (m_anchorNode->hasChildNodes()) {
93 if (!m_anchorNode->hasChildNodes())
108 return (!m_anchorNode->hasChildNodes() && !m_offsetInAnchor) || (m_nodeAfterPositionInAnchor && !m_nodeAfterPositionInAnchor->previousSibling());
117 return !m_anchorNode->parentNode() && (m_anchorNode->hasChildNodes() || m_offsetInAnchor >= lastOffsetForEditing(m_anchorNode));
125 return !m_anchorNode->hasChildNodes() && !m_offsetInAnchor;
135 return m_anchorNode->hasChildNodes() || m_offsetInAnchor >= lastOffsetForEditing(m_anchorNode);
ContainerNodeAlgorithms.h 61 if (n->hasChildNodes())
ContainerNode.h 52 bool hasChildNodes() const { return m_firstChild; }
Node.idl 77 boolean hasChildNodes();
Text.cpp 96 ASSERT(type != Node::ENTITY_REFERENCE_NODE || !n->hasChildNodes());
113 ASSERT(type != Node::ENTITY_REFERENCE_NODE || !n->hasChildNodes());
  /external/webkit/WebCore/html/
HTMLNoScriptElement.cpp 71 if (hasChildNodes()) {
  /external/webkit/WebKit/chromium/src/
WebNode.cpp 154 bool WebNode::hasChildNodes() const
156 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();
  /external/webkit/WebKit/chromium/public/
WebNode.h 100 WEBKIT_API bool hasChildNodes() const;
  /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 301 success = importedDocFrag.hasChildNodes();
324 success = importedDocFrag.hasChildNodes();
343 success = imported.hasChildNodes();
  /external/webkit/WebCore/editing/
BreakBlockquoteCommand.cpp 193 if (!originalParent->hasChildNodes())
  /external/webkit/WebCore/svg/
SVGElementInstance.h 139 bool hasChildNodes() const { return m_firstChild; }
  /libcore/luni/src/main/java/org/apache/xml/dtm/
DTM.java 237 public boolean hasChildNodes(int nodeHandle);
    [all...]
  /external/webkit/WebKit/qt/Api/
qwebelement.cpp 1001 if (m_element->hasChildNodes())
1027 if (m_element->hasChildNodes())
1202 while (node->hasChildNodes() && node->firstChild()->isElementNode())
    [all...]

Completed in 399 milliseconds

1 2 3