Searched refs:NodeList (Results 1 - 25 of 52) sorted by relevance

123

/external/webkit/JavaScriptCore/API/tests/
H A DNodeList.h34 } NodeList; typedef in typeref:struct:__anon5477
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*);
H A DJSNodeList.h30 #include "NodeList.h"
32 extern JSObjectRef JSNodeList_new(JSContextRef, NodeList*);
H A DNodeList.c26 #include "NodeList.h"
30 extern NodeList* NodeList_new(Node* parentNode)
34 NodeList* nodeList = (NodeList*)malloc(sizeof(NodeList));
40 extern unsigned NodeList_length(NodeList* nodeList)
53 extern Node* NodeList_item(NodeList* nodeList, unsigned index)
70 extern void NodeList_ref(NodeList* nodeList)
75 extern void NodeList_deref(NodeList* nodeList)
H A DJSNodeList.c38 NodeList* nodeList = JSObjectGetPrivate(thisObject);
58 NodeList* nodeList = JSObjectGetPrivate(thisObject);
70 NodeList* nodeList = JSObjectGetPrivate(thisObject);
87 NodeList* nodeList = JSObjectGetPrivate(thisObject);
95 NodeList* nodeList = JSObjectGetPrivate(thisObject);
120 JSObjectRef JSNodeList_new(JSContextRef context, NodeList* nodeList)
/external/webkit/WebCore/dom/
H A DNodeList.h34 class NodeList : public RefCounted<NodeList> { class in namespace:WebCore
36 virtual ~NodeList() { }
38 // DOM methods & attributes for NodeList
H A DNodeList.idl27 ] NodeList {
H A DDocumentFragment.idl26 NodeList querySelectorAll(in DOMString selectors)
H A DStaticNodeList.h32 #include "NodeList.h"
41 class StaticNodeList : public NodeList {
H A DElement.idl44 NodeList getElementsByTagName(in DOMString name);
57 [OldStyleObjC] NodeList getElementsByTagNameNS(in [ConvertNullToNullString] DOMString namespaceURI,
100 NodeList getElementsByClassName(in DOMString name);
105 NodeList querySelectorAll(in DOMString selectors)
H A DDynamicNodeList.h27 #include "NodeList.h"
38 class DynamicNodeList : public NodeList {
57 // DOM methods & attributes for NodeList
/external/webkit/WebKit/chromium/src/
H A DWebNodeList.cpp35 #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/WebKit/chromium/public/
H A DWebNodeList.h36 namespace WebCore { class NodeList; }
64 WebNodeList(const WTF::PassRefPtr<WebCore::NodeList>&);
68 void assign(WebCore::NodeList*);
69 WebCore::NodeList* m_private;
/external/webkit/WebCore/html/
H A DHTMLAllCollection.idl39 NodeList tags(in DOMString name);
H A DHTMLCollection.idl35 NodeList tags(in DOMString name);
H A DHTMLCollection.h38 class NodeList;
60 PassRefPtr<NodeList> tags(const String&);
/external/webkit/WebCore/bindings/v8/custom/
H A DV8NamedNodesCollection.h35 #include "NodeList.h"
41 class V8NamedNodesCollection : public NodeList {
H A DV8NodeListCustom.cpp34 #include "NodeList.h"
46 INC_STATS("DOM.NodeList.NamedPropertyGetter");
47 NodeList* list = V8NodeList::toNative(info.Holder());
65 INC_STATS("DOM.NodeList.callAsFunction()");
69 NodeList* list = V8NodeList::toNative(args.Holder());
H A DV8HTMLFormElementCustom.cpp80 NodeList* collection = new V8NamedNodesCollection(elements);
/external/webkit/WebCore/bindings/js/
H A DJSNodeListCustom.cpp32 #include "NodeList.h"
54 bool JSNodeList::canGetItemsForName(ExecState*, NodeList* impl, const Identifier& propertyName)
/external/webkit/WebCore/svg/
H A DSVGSVGElement.idl65 core::NodeList getIntersectionList(in SVGRect rect,
67 core::NodeList getEnclosureList(in SVGRect rect,
H A DSVGSVGElement.h100 NodeList* getIntersectionList(const FloatRect&, SVGElement* referenceElement);
101 NodeList* getEnclosureList(const FloatRect&, SVGElement* referenceElement);
/external/webkit/WebCore/wml/
H A DWMLPElement.cpp34 #include "NodeList.h"
88 RefPtr<NodeList> nodeList = document()->getElementsByTagName("p");
H A DWMLTemplateElement.cpp27 #include "NodeList.h"
76 RefPtr<NodeList> nodeList = doc->getElementsByTagName("card");
/external/webkit/WebCore/bindings/objc/
H A DDOMUtility.mm113 WRAP(NodeList)
/external/webkit/WebCore/loader/
H A DMediaDocument.cpp43 #include "NodeList.h"
179 RefPtr<NodeList> nodeList = targetNode->getElementsByTagName("video");
218 RefPtr<NodeList> nodeList = htmlBody->getElementsByTagName("video");

Completed in 248 milliseconds

123