Home
last modified time | relevance | path

Searched refs:NodeList (Results 1 – 25 of 70) sorted by relevance

123

/external/webkit/JavaScriptCore/API/tests/
DNodeList.c30 extern NodeList* NodeList_new(Node* parentNode) in NodeList_new()
34 NodeList* nodeList = (NodeList*)malloc(sizeof(NodeList)); in NodeList_new()
40 extern unsigned NodeList_length(NodeList* nodeList) in NodeList_length()
53 extern Node* NodeList_item(NodeList* nodeList, unsigned index) in NodeList_item()
70 extern void NodeList_ref(NodeList* nodeList) in NodeList_ref()
75 extern void NodeList_deref(NodeList* nodeList) in NodeList_deref()
DNodeList.h34 } NodeList; typedef
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*);
DJSNodeList.c38 NodeList* nodeList = JSObjectGetPrivate(thisObject); in JSNodeList_item()
58 NodeList* nodeList = JSObjectGetPrivate(thisObject); in JSNodeList_length()
70 NodeList* nodeList = JSObjectGetPrivate(thisObject); in JSNodeList_getProperty()
87 NodeList* nodeList = JSObjectGetPrivate(thisObject); in JSNodeList_initialize()
95 NodeList* nodeList = JSObjectGetPrivate(thisObject); in JSNodeList_finalize()
120 JSObjectRef JSNodeList_new(JSContextRef context, NodeList* nodeList) in JSNodeList_new()
DJSNodeList.h32 extern JSObjectRef JSNodeList_new(JSContextRef, NodeList*);
/external/webkit/WebKit/chromium/src/
DWebNodeList.cpp51 NodeList* p = const_cast<NodeList*>(other.m_private); in assign()
57 WebNodeList::WebNodeList(const PassRefPtr<NodeList>& col) in WebNodeList()
58 : m_private(static_cast<NodeList*>(col.releaseRef())) in WebNodeList()
62 void WebNodeList::assign(NodeList* p) in assign()
DWebDocument.cpp137 RefPtr<NodeList> metaTags = in applicationID()
/external/webkit/WebKit/chromium/public/
DWebNodeList.h36 namespace WebCore { class NodeList; } variable
64 WebNodeList(const WTF::PassRefPtr<WebCore::NodeList>&);
68 void assign(WebCore::NodeList*);
69 WebCore::NodeList* m_private;
/external/webkit/WebCore/dom/
DNodeList.h34 class NodeList : public RefCounted<NodeList> {
36 virtual ~NodeList() { } in ~NodeList()
DNode.h50 class NodeList; variable
122 PassRefPtr<NodeList> childNodes();
500 PassRefPtr<NodeList> getElementsByTagName(const String&);
501 …PassRefPtr<NodeList> getElementsByTagNameNS(const AtomicString& namespaceURI, const String& localN…
502 PassRefPtr<NodeList> getElementsByName(const String& elementName);
503 PassRefPtr<NodeList> getElementsByClassName(const String& classNames);
506 PassRefPtr<NodeList> querySelectorAll(const String& selectors, ExceptionCode&);
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)
DDocument.idl49 NodeList getElementsByTagName(in DOMString tagname);
62 …[OldStyleObjC] NodeList getElementsByTagNameNS(in [ConvertNullToNullString] DOMString namespaceURI,
177 NodeList getElementsByName(in DOMString elementName);
227 NodeList getElementsByClassName(in DOMString tagname);
232 NodeList querySelectorAll(in DOMString selectors)
DStaticNodeList.h41 class StaticNodeList : public NodeList {
DDynamicNodeList.h38 class DynamicNodeList : public NodeList {
/external/webkit/WebCore/bindings/v8/custom/
DV8NodeListCustom.cpp47 NodeList* list = V8NodeList::toNative(info.Holder()); in namedPropertyGetter()
69 NodeList* list = V8NodeList::toNative(args.Holder()); in callAsFunctionCallback()
DV8NamedNodesCollection.h41 class V8NamedNodesCollection : public NodeList {
DV8HTMLFormElementCustom.cpp80 NodeList* collection = new V8NamedNodesCollection(elements); in namedPropertyGetter()
/external/webkit/WebCore/html/
DHTMLCollection.h38 class NodeList; variable
60 PassRefPtr<NodeList> tags(const String&);
/external/webkit/WebCore/wml/
DWMLCardElement.cpp248 RefPtr<NodeList> nodeList = document->getElementsByTagName("card"); in insertedIntoDocument()
280 RefPtr<NodeList> nodeList = doc->getElementsByTagName("card"); in findNamedCardInDocument()
305 RefPtr<NodeList> nodeList = doc->getElementsByTagName("card"); in determineActiveCard()
DWMLTableElement.cpp119 RefPtr<NodeList> children = startElement->childNodes(); in scanTableChildElements()
135 RefPtr<NodeList> children = sourceElement->childNodes(); in transferAllChildrenOfElementToTargetElement()
DWMLTemplateElement.cpp76 RefPtr<NodeList> nodeList = doc->getElementsByTagName("card"); in registerTemplatesInDocument()
DWMLPElement.cpp88 RefPtr<NodeList> nodeList = document()->getElementsByTagName("p"); in insertedIntoDocument()
/external/webkit/WebCore/svg/
DSVGSVGElement.h100 NodeList* getIntersectionList(const FloatRect&, SVGElement* referenceElement);
101 NodeList* getEnclosureList(const FloatRect&, SVGElement* referenceElement);
DSVGSVGElement.idl65 core::NodeList getIntersectionList(in SVGRect rect,
67 core::NodeList getEnclosureList(in SVGRect rect,
/external/webkit/WebCore/loader/
DMediaDocument.cpp179 RefPtr<NodeList> nodeList = targetNode->getElementsByTagName("video"); in defaultEventHandler()
218 RefPtr<NodeList> nodeList = htmlBody->getElementsByTagName("video"); in replaceMediaElementTimerFired()
/external/webkit/WebCore/bindings/js/
DJSNodeListCustom.cpp54 bool JSNodeList::canGetItemsForName(ExecState*, NodeList* impl, const Identifier& propertyName) in canGetItemsForName()

123