HomeSort by relevance Sort by last modified time
    Searched full:getfirstchild (Results 1 - 25 of 254) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/chromium/chrome/browser/sync/engine/
read_node_mock.h 25 MOCK_CONST_METHOD0(GetFirstChild, int64());
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_nodegetfirstchildnull.java 31 * If there is not a first child then the "getFirstChild()"
33 * Retrieve the text of the first "em" element and invoke the "getFirstChild()" method. It
69 emText = (CharacterData) emNode.getFirstChild();
70 nullChild = emText.getFirstChild();
nodegetfirstchildnull.java 31 * If there is not a first child then the "getFirstChild()"
35 * employee and invoke the "getFirstChild()" method. It
75 textNode = secondChildNode.getFirstChild();
76 noChildNode = textNode.getFirstChild();
hc_nodegetfirstchild.java 31 * The "getFirstChild()" method returns the first child
35 * "getFirstChild()" method. The NodeName returned
72 fchildNode = employeeNode.getFirstChild();
nodegetfirstchild.java 31 * The "getFirstChild()" method returns the first child
67 fchildNode = employeeNode.getFirstChild();
attrremovechild1.java 68 entElement = (Element) entRef.getFirstChild();
71 textNode = (Text) attrNode.getFirstChild();
attrreplacechild1.java 69 entElement = (Element) entRef.getFirstChild();
72 textNode = (Text) attrNode.getFirstChild();
elementgetelementsbytagnameaccessnodelist.java 69 child = testEmployee.getFirstChild();
77 child = child.getFirstChild();
hc_attrinsertbefore2.java 76 refChild = titleAttr.getFirstChild();
84 firstChild = titleAttr.getFirstChild();
hc_attrinsertbefore4.java 82 refChild = titleAttr.getFirstChild();
90 firstChild = titleAttr.getFirstChild();
hc_attrremovechild1.java 72 textNode = (Text) titleAttr.getFirstChild();
81 firstChild = titleAttr.getFirstChild();
hc_attrreplacechild1.java 74 firstChild = titleAttr.getFirstChild();
83 firstChild = titleAttr.getFirstChild();
hc_attrreplacechild2.java 80 firstChild = titleAttr.getFirstChild();
89 firstChild = titleAttr.getFirstChild();
hc_elementgetelementsbytagnameaccessnodelist.java 79 firstC = testEmployee.getFirstChild();
89 employeeIDNode = (CharacterData) firstC.getFirstChild();
hc_nodegetlastchildnull.java 33 * Retrieve the text of the first "em" element and invoke the "getFirstChild()" method. It
69 emText = (CharacterData) emNode.getFirstChild();
  /libcore/support/src/test/java/tests/support/
Support_Xml.java 42 NodeList children = doc.getFirstChild().getChildNodes();
48 return (Element) doc.getFirstChild();
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_nodegetfirstchild.js 78 The "getFirstChild()" method returns the first child
82 "getFirstChild()" method. The NodeName returned
hc_nodegetfirstchildnull.js 78 If there is not a first child then the "getFirstChild()"
81 Retrieve the text of the first "em" element and invoke the "getFirstChild()" method. It
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_nodegetfirstchild.js 78 The "getFirstChild()" method returns the first child
82 "getFirstChild()" method. The NodeName returned
hc_nodegetfirstchildnull.js 78 If there is not a first child then the "getFirstChild()"
81 Retrieve the text of the first "em" element and invoke the "getFirstChild()" method. It
  /libcore/luni/src/test/java/tests/org/w3c/dom/
HCNodeDocumentFragmentNormalize.java 63 txtNode = (Text) docFragment.getFirstChild();
79 txtNode = (Text) docFragment.getFirstChild();
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
InnerNodeImpl.java 65 public Node getFirstChild() {
154 for (Node node = getFirstChild(); node != null; node = next) {
200 Node child = getFirstChild();
216 Node child = getFirstChild();
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
XmlParserUtils.java 30 public static Node getFirstChild(Node node, String xmlLocalName) {
33 for(Node child = node.getFirstChild(); child != null; child = child.getNextSibling()) {
59 Node child = getFirstChild(node, xmlLocalName);
78 Node child = getFirstChild(node, xmlLocalName);
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
ChildIterator.java 73 return dtm.getFirstChild(current);
92 ? m_cdtm.getFirstChild(m_context)
  /external/skia/src/views/
SkStaticTextView.cpp 170 if ((node = dom.getFirstChild(node, "paint")) != NULL &&
171 (node = dom.getFirstChild(node, "screenplay")) != NULL)

Completed in 903 milliseconds

1 2 3 4 5 6 7 8 91011