HomeSort by relevance Sort by last modified time
    Searched refs:NodeList (Results 651 - 675 of 817) sorted by null

<<21222324252627282930>>

  /external/chromium_org/third_party/WebKit/Source/core/dom/
Element.idl 35 [PerWorldBindings] NodeList getElementsByTagName(DOMString name);
45 NodeList getElementsByTagNameNS([TreatNullAs=NullString] DOMString namespaceURI, DOMString localName);
87 NodeList getElementsByClassName(DOMString classNames);
99 [RaisesException] NodeList querySelectorAll(DOMString selectors);
108 [RuntimeEnabled=ShadowDOM, PerWorldBindings] NodeList getDestinationInsertionPoints();
Document.idl 39 [PerWorldBindings] NodeList getElementsByTagName(DOMString localName);
47 NodeList getElementsByTagNameNS([TreatNullAs=NullString] DOMString namespaceURI, DOMString localName);
123 [PerWorldBindings] NodeList getElementsByName([Default=Undefined] optional DOMString elementName);
149 NodeList getElementsByClassName(DOMString classNames);
155 [RaisesException] NodeList querySelectorAll(DOMString selectors);
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
CtsXmlGenerator.java 20 import org.w3c.dom.NodeList;
122 NodeList nodeList = parentElement.getElementsByTagName(elementName);
123 if (nodeList.getLength() > 0) {
124 Element element = (Element) nodeList.item(0);
  /external/chromium_org/third_party/WebKit/Source/core/events/
Event.idl 74 [RuntimeEnabled=ShadowDOM] readonly attribute NodeList path;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLSelectElement.idl 54 readonly attribute NodeList labels;
HTMLTextAreaElement.idl 48 readonly attribute NodeList labels;
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
ColladaParser.java 36 import org.w3c.dom.NodeList;
106 NodeList nl = docEle.getElementsByTagName("light");
175 NodeList nl = shape.getElementsByTagName("instance_material");
284 NodeList nl = sampler.getElementsByTagName("source");
351 NodeList nl = mat.getElementsByTagName("instance_effect");
372 NodeList nl = fx.getElementsByTagName("newparam");
418 NodeList nl = light.getElementsByTagName(knownTypes[i]);
502 NodeList nl = elem.getElementsByTagName(name);
  /libcore/luni/src/main/java/java/util/prefs/
XMLParser.java 42 import org.w3c.dom.NodeList;
366 NodeList children = selectNodeList(node, "node");
367 NodeList entries = selectNodeList(node, "map/entry");
397 private static NodeList selectNodeList(Element documentElement, String string) {
399 NodeList result = null;
405 NodeList childNodes = documentElement.getChildNodes();
421 NodeList nextChildNodes = ((Node)next).getChildNodes();
453 NodeList entries = selectNodeList(document.getDocumentElement(), "entry");
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NodeSetPrefix.java 33 import org.w3c.dom.NodeList;
108 // NodeList elementList;
147 // NodeList elementList;
231 NodeList elementList;
ImportNode.java 33 import org.w3c.dom.NodeList;
102 NodeList childList;
184 NodeList children;
209 NodeList addresses;
235 NodeList addresses;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/functests/sampleProjects/
AndroidManifestWriter.java 25 import org.w3c.dom.NodeList;
69 NodeList nodeList = mDoc.getElementsByTagName(AndroidManifest.NODE_USES_SDK);
70 if (nodeList.getLength() > 0) {
71 usesSdkElement = (Element) nodeList.item(0);
  /external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
InsertionPoint.h 55 PassRefPtr<NodeList> getDistributedNodes();
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_attrinsertbefore3.java 60 NodeList acronymList;
hc_attrinsertbefore4.java 60 NodeList acronymList;
hc_attrinsertbefore7.java 62 NodeList acronymList;
hc_attrreplacechild2.java 60 NodeList acronymList;
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
getElementsByTagNameNS03.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 "http://www.nist.gov
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;
importNode01.java 84 NodeList childList;
  /libcore/luni/src/main/java/org/w3c/dom/
Node.java 230 * A <code>NodeList</code> that contains all children of this node. If
231 * there are no children, this is a <code>NodeList</code> containing no
234 public NodeList getChildNodes();
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
InnerNodeImpl.java 25 import org.w3c.dom.NodeList;
55 public NodeList getChildNodes() {
109 NodeList toAdd = newChild.getChildNodes();
DocumentImpl.java 33 import org.w3c.dom.NodeList;
223 NodeList list = node.getChildNodes();
299 NodeList list = node.getChildNodes();
389 public NodeList getElementsByTagName(String name) {
395 public NodeList getElementsByTagNameNS(String namespaceURI, String localName) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateMetadata.java 58 import org.w3c.dom.NodeList;
84 NodeList parameters = mDocument.getElementsByTagName(TAG_PARAMETER);
194 NodeList icons = mDocument.getElementsByTagName(TAG_ICONS);
288 NodeList icons = mDocument.getElementsByTagName(TAG_ICONS);
323 NodeList thumbs = mDocument.getElementsByTagName(TAG_THUMB);
366 NodeList children = bestMatch.getChildNodes();
384 NodeList elements = mDocument.getElementsByTagName(TAG_DEPENDENCY);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNodeProxy.java 41 import org.w3c.dom.NodeList;
363 public final NodeList getChildNodes()
743 public final NodeList getElementsByTagName(String tagname)
752 NodeList nodeList = retNode.getChildNodes();
753 for (int i = 0; i < nodeList.getLength(); i++)
755 traverseChildren(listVector, nodeList.item(i), tagname,
769 return (NodeList) nodeSet;
800 NodeList nodeList = tempNode.getChildNodes()
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
NodeSet.java 30 import org.w3c.dom.NodeList;
37 * NodeList, or NodeIterator. However, in order for it to
38 * act as a NodeVector or NodeList, it's required that
52 * <p>Thought: Should NodeSet really implement NodeList and NodeIterator,
60 implements NodeList, NodeIterator, Cloneable, ContextNodeList
64 * Create an empty nodelist.
85 * given nodelist into it.
87 * @param nodelist List of Nodes to be made members of the new set.
89 public NodeSet(NodeList nodelist)
    [all...]

Completed in 2326 milliseconds

<<21222324252627282930>>