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

12 3 4 5 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/mock/
MockNodeList.java 20 import org.w3c.dom.NodeList;
26 * A quick mock implementation of NodeList on top of ArrayList.
28 public class MockNodeList implements NodeList {
  /libcore/luni/src/test/java/tests/org/w3c/dom/
HasAttribute.java 5 import org.w3c.dom.NodeList;
51 NodeList elementList;
64 // NodeList elementList;
75 NodeList elementList;
86 NodeList elementList;
Prefix.java 26 import org.w3c.dom.NodeList;
87 NodeList elementList;
101 NodeList elementList;
113 NodeList elementList;
124 NodeList elementList;
145 NodeList elementList;
163 NodeList elementList;
183 // NodeList genderList;
215 NodeList elementList;
235 NodeList elementList
    [all...]
HasAttributeNS.java 26 import org.w3c.dom.NodeList;
77 NodeList elementList;
90 NodeList elementList;
103 NodeList elementList;
119 // NodeList elementList;
133 NodeList elementList;
SetAttributeNS.java 27 import org.w3c.dom.NodeList;
83 NodeList elementList;
104 NodeList elementList;
128 // NodeList genderList;
130 // NodeList genList;
132 // NodeList gList;
163 NodeList elementList;
194 NodeList elementList;
212 NodeList elementList;
233 NodeList elementList
    [all...]
LocalName.java 5 import org.w3c.dom.NodeList;
57 NodeList elementList;
80 NodeList elementList;
93 NodeList elementList;
SetAttributeNodeNS.java 27 import org.w3c.dom.NodeList;
88 NodeList elementList;
114 // NodeList genderList;
116 // NodeList genList;
118 // NodeList gList;
152 NodeList elementList;
167 NodeList elementList;
188 NodeList elementList;
SetNamedItemNS.java 28 import org.w3c.dom.NodeList;
78 NodeList elementList;
109 NodeList elementList;
136 NodeList elementList;
159 // NodeList elementList;
161 // NodeList nList;
163 // NodeList n2List;
201 NodeList elementList;
NamespaceURI.java 26 import org.w3c.dom.NodeList;
79 // NodeList elementList;
93 NodeList elementList;
108 NodeList elementList;
120 NodeList elementList;
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNodeListBase.java 26 * NodeList interface wrapped around a DTM Iterator. The author
27 * considers this something of an abominations, since NodeList was not
34 * NodeList operating over the same document. In particular:
46 * promise to implement the DOM NodeList's "live view" response to
54 public class DTMNodeListBase implements org.w3c.dom.NodeList {
59 // org.w3c.dom.NodeList API follows
67 * <code>NodeList</code>, or <code>null</code> if that is not a valid
  /external/chromium_org/third_party/WebKit/Source/core/dom/
StaticNodeList.h 32 #include "core/dom/NodeList.h"
44 class StaticNodeTypeList FINAL : public NodeList {
75 RefPtrWillBeRawPtr<StaticNodeTypeList<NodeType> > nodeList = adoptRefWillBeNoop(new StaticNodeTypeList<NodeType>);
76 nodeList->m_nodes.swap(nodes);
77 v8::Isolate::GetCurrent()->AdjustAmountOfExternalAllocatedMemory(nodeList->AllocationSize());
78 return nodeList.release();
105 NodeList::trace(visitor);
  /external/srec/tools/grxmlcompile/
sub_grph.cpp 376 int *nodeList= new int [numVertex];
382 ProcessBegins (startPoint, endPoint, BEGINRULE_LABEL, nodeList, 0, visitList, numVertex);
385 delete [] nodeList;
397 int *nodeList= new int [numVertex];
403 ProcessEnds (endPoint, startPoint, ENDRULE_LABEL, nodeList, 0, visitList, numVertex);
406 delete [] nodeList;
418 int *nodeList= new int [numVertex];
424 ProcessBegins (startPoint, endPoint, NONE_LABEL, nodeList, 0, visitList, numVertex);
427 delete [] nodeList;
455 int *nodeList= new int [numVertex]
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
NodeSetDTM.java 32 import org.w3c.dom.NodeList;
38 * NodeList, or NodeIterator. However, in order for it to
39 * act as a NodeVector or NodeList, it's required that
53 * <p>Thought: Should NodeSetDTM really implement NodeList and NodeIterator,
61 implements /* NodeList, NodeIterator, */ DTMIterator,
67 * Create an empty nodelist.
90 // * given nodelist into it.
92 // * @param nodelist List of Nodes to be made members of the new set.
94 // public NodeSetDTM(NodeList nodelist)
    [all...]
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...]
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
nodechildnodesempty.java 31 * The "getChildNodes()" method returns a NodeList
33 * are not any children, this is a NodeList that does not
37 * NodeList returned should not have any nodes.
65 NodeList elementList;
67 NodeList childList;
70 NodeList childNodesList;
hc_nodechildnodesempty.java 31 * The "getChildNodes()" method returns a NodeList
33 * are not any children, this is a NodeList that does not
37 * NodeList returned should not have any nodes.
65 NodeList elementList;
66 NodeList childList;
hc_nodecommentnodeattributes.java 67 NodeList nodeList;
71 nodeList = doc.getChildNodes();
72 for (int indexN10043 = 0; indexN10043 < nodeList.getLength(); indexN10043++) {
73 commentNode = (Node) nodeList.item(indexN10043);
  /packages/apps/Mms/src/com/android/mms/dom/smil/
SmilLayoutElementImpl.java 20 import org.w3c.dom.NodeList;
41 public NodeList getRegions() {
46 NodeList childNodes = this.getChildNodes();
SmilRegionMediaElementImpl.java 20 import org.w3c.dom.NodeList;
36 NodeList regions = doc.getLayout().getElementsByTagName("region");
  /external/chromium_org/third_party/WebKit/PerformanceTests/Bindings/
node-list-access.html 11 description: "This benchmark covers 'childNodes' in Dromaeo/dom-traverse.html, and other DOM attributes that access NodeList.",
  /external/chromium_org/third_party/WebKit/public/web/
WebNodeList.h 44 class NodeList;
67 WebNodeList(const PassRefPtrWillBeRawPtr<NodeList>&);
68 WebNodeList& operator=(const PassRefPtrWillBeRawPtr<NodeList>&);
72 WebPrivatePtr<NodeList> m_private;
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
JAXPExtensionsProvider.java 134 // XNodeSet object() returns NodeVector and not NodeList
135 // Explicitly getting NodeList by using nodelist()
137 argList.add ( i, ((XNodeSet)argument).nodelist() );
185 // XNodeSet object() returns NodeVector and not NodeList
186 // Explicitly getting NodeList by using nodelist()
188 argList.add ( i, ((XNodeSet)argument).nodelist() );
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
XTagXmlResourceLoader.java 10 import org.w3c.dom.NodeList;
44 NodeList items = document.getElementsByTagName( tag );
  /packages/apps/Mms/src/org/w3c/dom/smil/
ElementExclusiveTimeContainer.java 16 import org.w3c.dom.NodeList;
38 public NodeList getPausedElements();
  /external/smack/src/org/jivesoftware/smackx/provider/
VCardProvider.java 134 NodeList photo = document.getElementsByTagName("PHOTO");
139 NodeList childNodes = photoNode.getChildNodes();
166 NodeList nodes = document.getElementsByTagName("USERID");
180 NodeList allPhones = document.getElementsByTagName("TEL");
183 NodeList nodes = allPhones.item(i).getChildNodes();
216 NodeList allAddresses = document.getElementsByTagName("ADR");
224 NodeList childNodes = addressNode.getChildNodes();
249 NodeList nodes = document.getElementsByTagName(tag);
257 NodeList childNodes = document.getDocumentElement().getChildNodes();
282 NodeList childNodes = node.getChildNodes()
    [all...]

Completed in 1329 milliseconds

12 3 4 5 6 7 8 91011>>