HomeSort by relevance Sort by last modified time
    Searched refs:getFirstChild (Results 201 - 225 of 239) sorted by null

1 2 3 4 5 6 7 8910

  /libcore/luni/src/main/java/org/apache/xalan/serialize/
SerializerUtils.java 130 for (int n = dtm.getFirstChild(doc);
  /libcore/luni/src/main/java/org/apache/xalan/templates/
ElemCopyOf.java 167 for (int child = dtm.getFirstChild(pos); child != DTM.NULL;
ElemTemplateElement.java     [all...]
  /libcore/luni/src/main/java/org/apache/xml/dtm/
DTM.java 230 * (dtm.getFirstChild(nodeHandle)!=DTM.NULL) is just as fast and
246 public int getFirstChild(int nodeHandle);
    [all...]
  /libcore/luni/src/test/java/tests/xml/
SimpleBuilderTest.java 53 Node child = node.getFirstChild();
  /libcore/luni/src/main/java/org/apache/xml/serializer/
TreeWalker.java 147 Node nextNode = pos.getFirstChild();
201 Node nextNode = pos.getFirstChild();
  /libcore/luni/src/main/java/org/apache/xml/utils/
TreeWalker.java 179 Node nextNode = pos.getFirstChild();
232 Node nextNode = pos.getFirstChild();
DOMHelper.java 431 Node child = parent.getFirstChild();
    [all...]
  /external/libvpx/examples/includes/ASCIIMathPHP-2.0/
ASCIIMathPHP-2.0.class.php 242 function getFirstChild()
397 if ($c_node_0 = $this->getFirstChild()) {
661 if ($node_8 = $node_5->getFirstChild()) {
680 if($tmp_node_first = $tmp_node->getFirstChild()) {
761 if ($tmp_c_node = $tmp_node->getFirstChild()) {
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
NodeImpl.java 87 public Node getFirstChild() {
422 while ((child = getFirstChild()) != null) {
614 for (Node child = node.getFirstChild(); child != null; child = child.getNextSibling()) {
  /libcore/luni/src/test/java/tests/api/javax/xml/parsers/
DocumentBuilderTest.java 626 assertEquals("foo", ((EntityReference)root.getFirstChild()).getNodeName());
711 assertEquals("bar", ((Text)root.getFirstChild()).getData());
725 assertEquals("foo", ((EntityReference)root.getFirstChild()).getNodeName());
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ImportNode.java 142 child = aNode.getFirstChild();
225 child = aNode.getFirstChild();
288 child = aNode.getFirstChild();
427 // child = aNode.getFirstChild();
461 // child = entity1.getFirstChild();
Prefix.java 113 textNode = testEmployee.getFirstChild();
240 // entRef = genderNode.getFirstChild();
247 // entElement = entRef.getFirstChild();
  /external/skia/src/views/
SkWidgets.cpp 126 if ((node = dom.getFirstChild(node, "event")) != NULL)
483 if ((node = dom.getFirstChild(node, "paint")) != NULL)
SkWidgetViews.cpp 163 if ((node = dom.getFirstChild(node, "event")) != NULL)
  /external/skia/src/xml/
SkXMLWriter.cpp 183 node = dom.getFirstChild(node, NULL);
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/
DTMDocumentImpl.java     [all...]
DTMNodeProxy.java 379 public final Node getFirstChild()
382 int newnode = dtm.getFirstChild(node);
548 return (DTM.NULL != dtm.getFirstChild(node));
594 for(int kidhandle=dtm.getFirstChild(dochandle);
    [all...]
DTMDefaultBaseTraversers.java 410 return getFirstChild(context);
888 first = getFirstChild(context);
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DOM2DTM.java 349 next = pos.getFirstChild();
    [all...]
DOM2DTMdefaultNamespaceDeclarationNode.java 81 public Node getFirstChild() {return null;}
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
ApplicationToggle.java 252 for (Node node = root_node.getFirstChild(); node != null;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/mock/
MockXmlNode.java 135 public Node getFirstChild() {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiActions.java 305 xml_next.getFirstChild());
  /libcore/luni/src/main/java/org/apache/xml/serializer/dom3/
DOM3TreeWalker.java 276 nextNode = pos.getFirstChild();
349 nextNode = pos.getFirstChild();
    [all...]

Completed in 2026 milliseconds

1 2 3 4 5 6 7 8910