/external/webkit/Source/JavaScriptCore/API/tests/ |
D | NodeList.c | 30 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()
|
D | NodeList.h | 34 } 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*);
|
D | JSNodeList.c | 38 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()
|
D | JSNodeList.h | 32 extern JSObjectRef JSNodeList_new(JSContextRef, NodeList*);
|
/external/webkit/Source/WebKit/chromium/src/ |
D | WebNodeList.cpp | 51 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/ |
D | WebNodeList.h | 36 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/ |
D | XNodeSetForDOM.java | 28 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()
|
D | XRTreeFrag.java | 31 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()
|
D | XObjectFactory.java | 146 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/ |
D | NodeList.h | 34 class NodeList : public RefCounted<NodeList> { 36 virtual ~NodeList() { } in ~NodeList()
|
D | Node.h | 62 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/ |
D | nodelist-item-call-as-function-expected.txt | 1 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/ |
D | JSNodeListCustom.cpp | 61 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/ |
D | RSSFeedUpdateEntryTask.java | 38 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/ |
D | V8NamedNodesCollection.h | 42 class V8NamedNodesCollection : public NodeList { 44 static PassRefPtr<NodeList> create(const Vector<RefPtr<Node> >& nodes) in create()
|
D | V8NodeListCustom.cpp | 47 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/ |
D | XPathAPI.java | 31 import org.w3c.dom.NodeList; 144 public static NodeList selectNodeList(Node contextNode, String str) in selectNodeList() 161 public static NodeList selectNodeList( in selectNodeList()
|
D | CachedXPathAPI.java | 31 import org.w3c.dom.NodeList; 199 public NodeList selectNodeList(Node contextNode, String str) in selectNodeList() 216 public NodeList selectNodeList( in selectNodeList()
|
D | NodeSet.java | 30 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/ |
D | ErrorTracker.java | 26 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/ |
D | HTMLCollection.h | 36 class NodeList; variable 57 PassRefPtr<NodeList> tags(const String&);
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
D | DTMNodeProxy.java | 41 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/ |
D | ElemExsltFunction.java | 32 import org.w3c.dom.NodeList; 88 NodeList children = this.getChildNodes(); in execute()
|
/external/webkit/Source/WebCore/wml/ |
D | WMLCardElement.cpp | 253 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/ |
D | SVGSVGElement.h | 104 NodeList* getIntersectionList(const FloatRect&, SVGElement* referenceElement); 105 NodeList* getEnclosureList(const FloatRect&, SVGElement* referenceElement);
|