Searched refs:getFirstChild (Results 1 - 25 of 43) sorted by relevance

12

/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DChildIterator.java73 return dtm.getFirstChild(current);
92 ? m_cdtm.getFirstChild(m_context)
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMChildIterNodeList.java79 m_firstChild=parentDTM.getFirstChild(parentHandle);
H A DDTMTreeWalker.java115 int nextNode = m_dtm.getFirstChild(pos);
168 int nextNode = m_dtm.getFirstChild(pos);
H A DDTMDocumentImpl.java991 * (dtm.getFirstChild(nodeHandle)!=DTM.NULL) is just as fast and
999 return(getFirstChild(nodeHandle) != NULL);
1010 public int getFirstChild(int nodeHandle) { method in class:DTMDocumentImpl
1065 // do not need to test node type since getFirstChild does that
1067 for (int nextkid = getFirstChild(nodeHandle); nextkid != NULL;
1206 for (int nextkid = getFirstChild(parent); nextkid != nodeHandle;
H A DDTMNodeProxy.java379 public final Node getFirstChild() method in class:DTMNodeProxy
382 int newnode = dtm.getFirstChild(node);
548 return (DTM.NULL != dtm.getFirstChild(node));
594 for(int kidhandle=dtm.getFirstChild(dochandle);
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFuncDoclocation.java58 whereNode = dtm.getFirstChild(whereNode);
/external/llvm/lib/DebugInfo/
H A DDWARFDebugInfoEntry.h80 DWARFDebugInfoEntryMinimal *getFirstChild() { function in class:llvm::DWARFDebugInfoEntryMinimal
83 const DWARFDebugInfoEntryMinimal *getFirstChild() const { function in class:llvm::DWARFDebugInfoEntryMinimal
H A DDWARFDebugInfoEntry.cpp50 const DWARFDebugInfoEntryMinimal *child = getFirstChild();
436 const DWARFDebugInfoEntryMinimal *child = getFirstChild();
/external/skia/src/xml/
H A DSkDOM.cpp30 if ((node = dom.getFirstChild(node)) != NULL)
81 const SkDOM::Node* SkDOM::getFirstChild(const Node* node, const char name[]) const function in class:SkDOM
322 node = dom.getFirstChild(node, NULL);
349 node = this->getFirstChild(node, elem);
450 const Node* child = this->getFirstChild(node);
496 SkASSERT(dom.getFirstChild(root, "elem1"));
497 SkASSERT(!dom.getFirstChild(root, "subelem1"));
/external/skia/src/views/
H A DSkListWidget.cpp447 if ((child = dom.getFirstChild(node, "bindings")) != NULL)
466 child = dom.getFirstChild(child, "bind");
556 child = dom.getFirstChild(node, "fields");
563 child = dom.getFirstChild(child, "field");
573 child = dom.getFirstChild(node, "records");
580 child = dom.getFirstChild(child, "record");
H A DSkStaticTextView.cpp177 if ((node = dom.getFirstChild(node, "paint")) != NULL &&
178 (node = dom.getFirstChild(node, "screenplay")) != NULL)
H A DSkParsePaint.cpp16 if ((node = dom.getFirstChild(node, "shader")) == NULL)
H A DSkListView.cpp129 const SkDOM::Node* child = dom.getFirstChild(node, "item");
144 child = dom.getFirstChild(node, "item");
484 if ((child = dom.getFirstChild(node, "hilite-paint")) != NULL)
491 if ((child = dom.getFirstChild(node, "file-listsource")) != NULL)
499 else if ((child = dom.getFirstChild(node, "xml-listsource")) != NULL)
873 if ((child = dom.getFirstChild(node, "hilite-paint")) != NULL)
880 if ((child = dom.getFirstChild(node, "file-listsource")) != NULL)
888 else if ((child = dom.getFirstChild(node, "xml-listsource")) != NULL)
H A DSkViewInflate.cpp26 const SkDOM::Node* child = dom.getFirstChild(node);
H A DSkWidgets.cpp133 if ((node = dom.getFirstChild(node, "event")) != NULL)
490 if ((node = dom.getFirstChild(node, "paint")) != NULL)
/external/skia/include/xml/
H A DSkDOM.h42 const Node* getFirstChild(const Node*, const char elem[] = NULL) const;
/external/apache-xml/src/main/java/org/apache/xalan/serialize/
H A DSerializerUtils.java130 for (int n = dtm.getFirstChild(doc);
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemCopyOf.java167 for (int child = dtm.getFirstChild(pos); child != DTM.NULL;
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTM.java230 * (dtm.getFirstChild(nodeHandle)!=DTM.NULL) is just as fast and
246 public int getFirstChild(int nodeHandle); method in interface:DTM
/external/skia/samplecode/
H A DSampleAnimator.cpp75 const SkDOMNode* child = dom.getFirstChild(node);
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DTreeWalker.java147 Node nextNode = pos.getFirstChild();
201 Node nextNode = pos.getFirstChild();
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DTreeWalker.java179 Node nextNode = pos.getFirstChild();
232 Node nextNode = pos.getFirstChild();
H A DDOMHelper.java431 Node child = parent.getFirstChild();
1210 for (Node node = elem.getFirstChild(); null != node;
1319 for (Node child = node.getFirstChild(); null != child;
/external/libvpx/examples/includes/ASCIIMathPHP-2.0/
H A DASCIIMathPHP-2.0.class.php242 function getFirstChild() function
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()) {
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
H A DDOM2DTM.java349 next = pos.getFirstChild();
925 for (Node child = node.getFirstChild(); null != child;
1208 n=n.getFirstChild();
1667 for (Node child = node.getFirstChild(); null != child;

Completed in 458 milliseconds

12