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

1 2 3 4 5 6 7 8 91011>>

  /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();
  /external/chromium_org/third_party/WebKit/Source/core/dom/
NodeList.h 35 class NodeList : public ScriptWrappable, public RefCounted<NodeList> {
37 virtual ~NodeList() { }
39 // DOM methods & attributes for NodeList
49 NodeList()
WebKitNamedFlow.idl 39 NodeList getRegionsByContent(Node contentNode);
40 NodeList getRegions();
41 NodeList getContent();
MutationRecord.h 42 class NodeList;
47 static PassRefPtr<MutationRecord> createChildList(PassRefPtr<Node> target, PassRefPtr<NodeList> added, PassRefPtr<NodeList> removed, PassRefPtr<Node> previousSibling, PassRefPtr<Node> nextSibling);
62 virtual NodeList* addedNodes() = 0;
63 virtual NodeList* removedNodes() = 0;
DocumentFragment.idl 26 [RaisesException] NodeList querySelectorAll(DOMString selectors);
NamedNodesCollection.h 35 #include "core/dom/NodeList.h"
42 class NamedNodesCollection : public NodeList {
44 static PassRefPtr<NodeList> create(const Vector<RefPtr<Node> >& nodes)
NodeList.idl 24 ] interface NodeList {
MutationRecord.cpp 36 #include "core/dom/NodeList.h"
47 ChildListRecord(PassRefPtr<Node> target, PassRefPtr<NodeList> added, PassRefPtr<NodeList> removed, PassRefPtr<Node> previousSibling, PassRefPtr<Node> nextSibling)
59 virtual NodeList* addedNodes() OVERRIDE { return m_addedNodes.get(); }
60 virtual NodeList* removedNodes() OVERRIDE { return m_removedNodes.get(); }
65 RefPtr<NodeList> m_addedNodes;
66 RefPtr<NodeList> m_removedNodes;
82 virtual NodeList* addedNodes() OVERRIDE { return lazilyInitializeEmptyNodeList(m_addedNodes); }
83 virtual NodeList* removedNodes() OVERRIDE { return lazilyInitializeEmptyNodeList(m_removedNodes); }
85 static NodeList* lazilyInitializeEmptyNodeList(RefPtr<NodeList>& nodeList
    [all...]
MutationRecord.idl 36 readonly attribute NodeList addedNodes;
37 readonly attribute NodeList removedNodes;
NamedFlow.h 44 class NodeList;
57 PassRefPtr<NodeList> getRegionsByContent(Node*);
58 PassRefPtr<NodeList> getRegions();
59 PassRefPtr<NodeList> getContent();
  /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/chromium_org/third_party/WebKit/Source/core/html/shadow/
HTMLContentElement.idl 31 NodeList getDistributedNodes();
  /external/chromium_org/third_party/WebKit/Source/web/
WebNodeList.cpp 35 #include "core/dom/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.leakRef()))
62 void WebNodeList::assign(NodeList* p)
  /external/chromium_org/third_party/WebKit/public/web/
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/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8NodeListCustom.cpp 38 #include "core/dom/NodeList.h"
47 NodeList* impl = static_cast<NodeList*>(object);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLProgressElement.idl 24 readonly attribute NodeList labels;
RadioNodeList.idl 28 ] interface RadioNodeList : NodeList {
HTMLMeterElement.idl 27 readonly attribute NodeList labels;
  /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
  /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;
  /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 {

Completed in 461 milliseconds

1 2 3 4 5 6 7 8 91011>>