HomeSort by relevance Sort by last modified time
    Searched refs:NodeList (Results 1 - 25 of 800) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/JavaScriptCore/API/tests/
NodeList.h 34 } NodeList;
36 extern NodeList* NodeList_new(Node* parentNode);
37 extern unsigned NodeList_length(NodeList*);
38 extern Node* NodeList_item(NodeList*, unsigned);
39 extern void NodeList_ref(NodeList*);
40 extern void NodeList_deref(NodeList*);
JSNodeList.h 30 #include "NodeList.h"
32 extern JSObjectRef JSNodeList_new(JSContextRef, NodeList*);
NodeList.c 26 #include "NodeList.h"
30 extern NodeList* NodeList_new(Node* parentNode)
34 NodeList* nodeList = (NodeList*)malloc(sizeof(NodeList));
35 nodeList->parentNode = parentNode;
36 nodeList->refCount = 0;
37 return nodeList;
40 extern unsigned NodeList_length(NodeList* nodeList
    [all...]
JSNodeList.c 38 NodeList* nodeList = JSObjectGetPrivate(thisObject);
39 ASSERT(nodeList);
40 Node* node = NodeList_item(nodeList, (unsigned)JSValueToNumber(context, arguments[0], exception));
58 NodeList* nodeList = JSObjectGetPrivate(thisObject);
59 ASSERT(nodeList);
60 return JSValueMakeNumber(context, NodeList_length(nodeList));
70 NodeList* nodeList = JSObjectGetPrivate(thisObject)
    [all...]
  /packages/apps/Mms/src/org/w3c/dom/smil/
ElementTimeContainer.java 15 import org.w3c.dom.NodeList;
23 * A NodeList that contains all timed childrens of this node. If there are
24 * no timed children, the <code>Nodelist</code> is empty. An iterator
28 public NodeList getTimeChildren();
36 public NodeList getActiveChildrenAt(float instant);
SMILLayoutElement.java 14 * 2) ADD public NodeList getRegions();
19 import org.w3c.dom.NodeList;
46 public NodeList getRegions();
ElementExclusiveTimeContainer.java 16 import org.w3c.dom.NodeList;
38 public NodeList getPausedElements();
  /libcore/luni/src/main/java/org/w3c/dom/
NodeList.java 16 * The <code>NodeList</code> interface provides the abstraction of an ordered
18 * is implemented. <code>NodeList</code> objects in the DOM are live.
19 * <p>The items in the <code>NodeList</code> are accessible via an integral
23 public interface NodeList {
30 * <code>NodeList</code>, or <code>null</code> if that is not a valid
  /external/webkit/Source/WebCore/dom/
NodeList.h 34 class NodeList : public RefCounted<NodeList> {
36 virtual ~NodeList() { }
38 // DOM methods & attributes for NodeList
NodeList.idl 28 ] NodeList {
DocumentFragment.idl 26 [RequiresAllArguments=Raise] NodeList querySelectorAll(in DOMString selectors)
  /external/webkit/Source/WebKit/chromium/src/
WebNodeList.cpp 35 #include "NodeList.h"
51 NodeList* p = const_cast<NodeList*>(other.m_private);
57 WebNodeList::WebNodeList(const PassRefPtr<NodeList>& col)
58 : m_private(static_cast<NodeList*>(col.releaseRef()))
62 void WebNodeList::assign(NodeList* p)
  /external/webkit/Source/WebKit/chromium/public/
WebNodeList.h 36 namespace WebCore { class NodeList; }
64 WebNodeList(const WTF::PassRefPtr<WebCore::NodeList>&);
68 void assign(WebCore::NodeList*);
69 WebCore::NodeList* m_private;
  /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/webkit/LayoutTests/fast/dom/NodeList/script-tests/
nodelist-item-call-as-function.js 1 description('This tests that items in a NodeList can be retrieved directly by calling as a function with an integral index parameter, starting from 0.<br>It means NodeList[0] and NodeList(0) both work.');
3 var nodeList = document.getElementsByTagName('div');
4 shouldBe("nodeList[0]", "nodeList(0)");
5 shouldBe("!nodeList[nodeList.length]", "!nodeList(nodeList.length)")
    [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;
nodelistindexgetlengthofemptylist.java 65 NodeList elementList;
67 NodeList employeeList;
70 NodeList textList;
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8NamedNodesCollection.h 35 #include "NodeList.h"
42 class V8NamedNodesCollection : public NodeList {
44 static PassRefPtr<NodeList> create(const Vector<RefPtr<Node> >& nodes)
  /external/webkit/Source/WebCore/html/
HTMLAllCollection.idl 39 NodeList tags(in DOMString name);
HTMLProgressElement.idl 30 readonly attribute NodeList labels;
  /libcore/luni/src/main/java/java/util/prefs/
NodeSet.java 6 import org.w3c.dom.NodeList;
8 class NodeSet implements NodeList {
  /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/tests/org/w3c/dom/
HasAttribute.java 5 import org.w3c.dom.NodeList;
51 NodeList elementList;
64 // NodeList elementList;
75 NodeList elementList;
86 NodeList elementList;
  /packages/apps/Mms/src/com/android/mms/dom/smil/
ElementSequentialTimeContainerImpl.java 23 import org.w3c.dom.NodeList;
45 public NodeList getActiveChildrenAt(float instant) {
46 NodeList allChildren = this.getTimeChildren();
61 NodeList children = getTimeChildren();
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XNodeSetForDOM.java 28 import org.w3c.dom.NodeList;
33 * Node object, NodeList object, or NodeIterator.
61 public XNodeSetForDOM(NodeList nodeList, XPathContext xctxt)
64 m_origObj = nodeList;
69 // m_obj=new org.apache.xpath.NodeSetDTM(nodeList, xctxt);
70 org.apache.xpath.NodeSetDTM nsdtm=new org.apache.xpath.NodeSetDTM(nodeList, xctxt);
101 * Cast result object to a nodelist. Always issues an error.
114 * Cast result object to a nodelist. Always issues an error.
120 public NodeList nodelist() throws javax.xml.transform.TransformerExceptio method in class:XNodeSetForDOM
    [all...]

Completed in 1328 milliseconds

1 2 3 4 5 6 7 8 91011>>