HomeSort by relevance Sort by last modified time
    Searched full:nodelist (Results 76 - 100 of 1064) sorted by null

1 2 34 5 6 7 8 91011>>

  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
getElementsByTagNameNS07.java 34 * The "getElementsByTagNameNS(namespaceURI,localName)" method returns a NodeList
38 * Create a NodeList of all the descendant elements
41 * The method should return a NodeList whose length is
76 NodeList elementList;
getElementsByTagNameNS10.java 34 * The "getElementsByTagNameNS(namespaceURI,localName)" method returns a NodeList
38 * Create a NodeList of all the descendant elements of the document element
41 * The method should return a NodeList of elements that have "http://www.nist.gov
78 NodeList elementList;
getElementsByTagNameNS11.java 34 * The "getElementsByTagNameNS(namespaceURI,localName)" method returns a NodeList
38 * Create a NodeList of all the descendant elements
41 * The method should return a NodeList of Elements that have
77 NodeList elementList;
getElementsByTagNameNS12.java 34 * The "getElementsByTagNameNS(namespaceURI,localName)" method returns a NodeList
38 * Create a NodeList of all the descendant elements
41 * The method should return a NodeList whose length is "0".
70 NodeList elementList;
getElementsByTagNameNS13.java 34 * The "getElementsByTagNameNS(namespaceURI,localName)" method returns a NodeList
38 * Create a NodeList of all the descendant elements
41 * The method should return a NodeList whose length is
76 NodeList elementList;
getElementsByTagNameNS14.java 34 * The "getElementsByTagNameNS(namespaceURI,localName)" method returns a NodeList
38 * Create a NodeList of all the descendant elements
41 * The method should return a NodeList whose length is
76 NodeList elementList;
  /libcore/luni/src/test/java/tests/org/w3c/dom/
AttrGetOwnerElement.java 7 import org.w3c.dom.NodeList;
42 // NodeList elementList;
89 NodeList addresses;
108 NodeList elementList;
NodeHasAttributes.java 27 import org.w3c.dom.NodeList;
77 NodeList elementList;
101 NodeList elementList;
122 NodeList elementList;
NamedNodeMapRemoveNamedItemNS.java 27 import org.w3c.dom.NodeList;
80 NodeList elementList;
99 // NodeList elementList;
146 NodeList elementList;
212 NodeList elementList;
234 NodeList elementList;
256 NodeList elementList;
280 NodeList elementList;
GetAttributeNS.java 27 import org.w3c.dom.NodeList;
81 // NodeList elementList;
96 NodeList elementList;
115 NodeList elementList;
132 NodeList elementList;
147 NodeList elementList;
RemoveNamedItemNS.java 27 import org.w3c.dom.NodeList;
79 NodeList elementList;
98 NodeList elementList;
124 // NodeList elementList;
126 // NodeList nList;
128 // NodeList n2List;
NamedNodeMapSetNamedItemNS.java 28 import org.w3c.dom.NodeList;
90 NodeList elementList;
129 NodeList elementList;
130 NodeList elementListAlt;
165 NodeList elementList;
231 NodeList elementList;
257 NodeList elementList;
283 NodeList elementList;
350 // NodeList elementList;
381 // NodeList elementList
    [all...]
  /packages/apps/Mms/src/com/android/mms/dom/
NodeListImpl.java 23 import org.w3c.dom.NodeList;
25 public class NodeListImpl implements NodeList {
37 * Constructs a NodeList by searching for all descendants or the direct
52 * Constructs a NodeList for a given static node list.
  /external/chromium_org/cc/trees/
layer_sorter.h 96 typedef std::vector<GraphNode> NodeList;
98 NodeList nodes_;
  /external/chromium_org/chrome/browser/resources/ntp4/
dot_list.js 14 * @type {!NodeList|undefined}
36 * @type {!NodeList|undefined}
  /external/chromium_org/third_party/WebKit/Source/core/dom/
MutationRecord.idl 37 readonly attribute NodeList addedNodes;
38 readonly attribute NodeList removedNodes;
  /external/chromium_org/third_party/libxslt/libexslt/
saxon.c 209 xmlNodeSetPtr nodelist; local
220 nodelist = obj->nodesetval;
221 if ((nodelist == NULL) || (nodelist->nodeNr <= 0)) {
226 cur = nodelist->nodeTab[0];
227 for (i = 1;i < nodelist->nodeNr;i++) {
228 int ret = xmlXPathCmpNodes(cur, nodelist->nodeTab[i]);
230 cur = nodelist->nodeTab[i];
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
NodeListImpl.java 22 import org.w3c.dom.NodeList;
34 public class NodeListImpl implements NodeList {
  /libcore/luni/src/test/java/libcore/xml/
JaxenXPathTestSuite.java 25 import org.w3c.dom.NodeList;
168 NodeList valueOfElements = element.getElementsByTagName("valueOf");
188 NodeList result = (NodeList) xpath.evaluate(
296 private static List<Element> elementsOf(NodeList nodeList) {
298 for (int i = 0; i < nodeList.getLength(); i++) {
299 Node node = nodeList.item(i);
  /libcore/support/src/test/java/tests/support/
Support_Xml.java 25 import org.w3c.dom.NodeList;
42 NodeList children = doc.getFirstChild().getChildNodes();
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMAxisIterNodeList.java 31 * NodeList interface wrapped around a DTM Iterator. The author
32 * considers this something of an abominations, since NodeList was not
39 * NodeList operating over the same document. In particular:
51 * promise to implement the DOM NodeList's "live view" response to
93 // org.w3c.dom.NodeList API follows
101 * <code>NodeList</code>, or <code>null</code> if that is not a valid
DTMNodeList.java 29 * NodeList interface wrapped around a DTM Iterator. The author
30 * considers this something of an abominations, since NodeList was not
37 * NodeList operating over the same document. In particular:
49 * promise to implement the DOM NodeList's "live view" response to
96 // org.w3c.dom.NodeList API follows
104 * <code>NodeList</code>, or <code>null</code> if that is not a valid
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
UnpackUpdateJars.java 30 import org.w3c.dom.NodeList;
180 NodeList nodeList=aDocument.getElementsByTagName("plugin");
181 if (nodeList==null)
184 for (int i = 0; i < nodeList.getLength(); i++) {
185 Node pluginNode = nodeList.item(i);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_nodechildnodesappendchild.java 31 * The NodeList returned by the "getChildNodes()" method
33 * reflected on the nodes returned in the NodeList.
35 * Create a NodeList of the children of the second employee
39 * The length of the NodeList should reflect this new
70 NodeList elementList;
72 NodeList childList;
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
CtsXmlGenerator.java 20 import org.w3c.dom.NodeList;
148 NodeList nodeList = parentElement.getElementsByTagName(elementName);
149 if (nodeList.getLength() > 0) {
150 Element element = (Element) nodeList.item(0);

Completed in 1834 milliseconds

1 2 34 5 6 7 8 91011>>