Home
last modified time | relevance | path

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

12345

/external/webkit/Source/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/Source/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()
/external/webkit/Source/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/apache-xml/src/main/java/org/apache/xpath/objects/
DXNodeSetForDOM.java28 import org.w3c.dom.NodeList;
61 public XNodeSetForDOM(NodeList nodeList, XPathContext xctxt) in XNodeSetForDOM()
120 public NodeList nodelist() throws javax.xml.transform.TransformerException in nodelist()
122 return (m_origObj instanceof NodeList) in nodelist()
123 ? (NodeList)m_origObj : super.nodelist(); in nodelist()
DXRTreeFrag.java31 import org.w3c.dom.NodeList;
237 public NodeList convertToNodeset() in convertToNodeset()
240 if (m_obj instanceof NodeList) in convertToNodeset()
241 return (NodeList) m_obj; in convertToNodeset()
DXObjectFactory.java146 else if (val instanceof org.w3c.dom.NodeList) in create()
148 result = new XNodeSetForDOM((org.w3c.dom.NodeList)val, xctxt); in create()
/external/webkit/Source/WebCore/dom/
DNodeList.h34 class NodeList : public RefCounted<NodeList> {
36 virtual ~NodeList() { } in ~NodeList()
DNode.h62 class NodeList; variable
148 PassRefPtr<NodeList> childNodes();
521 PassRefPtr<NodeList> getElementsByTagName(const AtomicString&);
522 …PassRefPtr<NodeList> getElementsByTagNameNS(const AtomicString& namespaceURI, const AtomicString& …
523 PassRefPtr<NodeList> getElementsByName(const String& elementName);
524 PassRefPtr<NodeList> getElementsByClassName(const String& classNames);
527 PassRefPtr<NodeList> querySelectorAll(const String& selectors, ExceptionCode&);
/external/webkit/LayoutTests/fast/dom/NodeList/
Dnodelist-item-call-as-function-expected.txt1 This tests that items in a NodeList can be retrieved directly by calling as a function with an inte…
2 It means NodeList[0] and NodeList(0) both work.
/external/webkit/Source/WebCore/bindings/js/
DJSNodeListCustom.cpp61 inline JSC::WeakHandleOwner* wrapperOwner(DOMWrapperWorld*, NodeList*) in wrapperOwner() argument
67 inline void* wrapperContext(DOMWrapperWorld* world, NodeList*) in wrapperContext() argument
72 JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, NodeList* impl) in toJS()
93 bool JSNodeList::canGetItemsForName(ExecState*, NodeList* impl, const Identifier& propertyName) in canGetItemsForName()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/
DRSSFeedUpdateEntryTask.java38 import org.w3c.dom.NodeList;
215 NodeList nodelist = getNodeList(document, xpath); in findAndReplace()
278 NodeList nodelist = getNodeList(document, xpath.substring(0, xpath.lastIndexOf("/"))); in getParentNode()
295 private NodeList getNodeList(Document document, String xpath) in getNodeList()
297 NodeList nodelist = null; in getNodeList()
302 if (o instanceof NodeList) in getNodeList()
304 nodelist = (NodeList)o; in getNodeList()
/external/webkit/Source/WebCore/bindings/v8/custom/
DV8NamedNodesCollection.h42 class V8NamedNodesCollection : public NodeList {
44 static PassRefPtr<NodeList> create(const Vector<RefPtr<Node> >& nodes) in create()
DV8NodeListCustom.cpp47 NodeList* list = V8NodeList::toNative(info.Holder()); in namedPropertyGetter()
69 NodeList* list = V8NodeList::toNative(args.Holder()); in callAsFunctionCallback()
/external/apache-xml/src/main/java/org/apache/xpath/
DXPathAPI.java31 import org.w3c.dom.NodeList;
144 public static NodeList selectNodeList(Node contextNode, String str) in selectNodeList()
161 public static NodeList selectNodeList( in selectNodeList()
DCachedXPathAPI.java31 import org.w3c.dom.NodeList;
199 public NodeList selectNodeList(Node contextNode, String str) in selectNodeList()
216 public NodeList selectNodeList( in selectNodeList()
DNodeSet.java30 import org.w3c.dom.NodeList;
60 implements NodeList, NodeIterator, Cloneable, ContextNodeList
89 public NodeSet(NodeList nodelist) in NodeSet()
431 public void addNodes(NodeList nodelist) in addNodes()
516 public void addNodesInDocOrder(NodeList nodelist, XPathContext support) in addNodesInDocOrder()
572 NodeList nodelist, XPathContext support) in addNodesInDocOrder()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
DErrorTracker.java26 import org.w3c.dom.NodeList;
72 NodeList elements = document.getElementsByTagName("platform"); in loadFile()
92 NodeList effectedFiles = document.getElementsByTagName("effectedFile"); in loadFile()
113 NodeList testLogList = document.getElementsByTagName("logFile"); in loadFile()
/external/webkit/Source/WebCore/html/
DHTMLCollection.h36 class NodeList; variable
57 PassRefPtr<NodeList> tags(const String&);
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DDTMNodeProxy.java41 import org.w3c.dom.NodeList;
363 public final NodeList getChildNodes() in getChildNodes()
743 public final NodeList getElementsByTagName(String tagname) in getElementsByTagName()
752 NodeList nodeList = retNode.getChildNodes(); in getElementsByTagName()
769 return (NodeList) nodeSet; in getElementsByTagName()
800 NodeList nodeList = tempNode.getChildNodes(); in traverseChildren()
866 public final NodeList getElementsByTagNameNS(String namespaceURI, in getElementsByTagNameNS()
877 NodeList nodeList = retNode.getChildNodes(); in getElementsByTagNameNS()
894 return (NodeList) nodeSet; in getElementsByTagNameNS()
937 NodeList nl = tempNode.getChildNodes(); in traverseChildren()
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DElemExsltFunction.java32 import org.w3c.dom.NodeList;
88 NodeList children = this.getChildNodes(); in execute()
/external/webkit/Source/WebCore/wml/
DWMLCardElement.cpp253 RefPtr<NodeList> nodeList = document->getElementsByTagName("card"); in insertedIntoDocument()
285 RefPtr<NodeList> nodeList = doc->getElementsByTagName("card"); in findNamedCardInDocument()
310 RefPtr<NodeList> nodeList = doc->getElementsByTagName("card"); in determineActiveCard()
/external/webkit/Source/WebCore/svg/
DSVGSVGElement.h104 NodeList* getIntersectionList(const FloatRect&, SVGElement* referenceElement);
105 NodeList* getEnclosureList(const FloatRect&, SVGElement* referenceElement);

12345