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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/JavaScriptCore/API/tests/
NodeList.c 26 #include "NodeList.h"
30 extern NodeList* NodeList_new(Node* parentNode)
34 NodeList* nodeList = (NodeList*)malloc(sizeof(NodeList));
35 nodeList->parentNode = parentNode;
36 nodeList->refCount = 0;
37 return nodeList;
40 extern unsigned NodeList_length(NodeList* nodeList
    [all...]
JSNodeList.c 38 NodeList* nodeList = JSObjectGetPrivate(thisObject);
39 ASSERT(nodeList);
40 Node* node = NodeList_item(nodeList, (unsigned)JSValueToNumber(context, arguments[0], exception));
58 NodeList* nodeList = JSObjectGetPrivate(thisObject);
59 ASSERT(nodeList);
60 return JSValueMakeNumber(context, NodeList_length(nodeList));
70 NodeList* nodeList = JSObjectGetPrivate(thisObject)
    [all...]
  /external/webkit/LayoutTests/fast/dom/NodeList/script-tests/
nodelist-item-call-as-function.js 1 description('This tests that items in a NodeList can be retrieved directly by calling as a function with an integral index parameter, starting from 0.<br>It means NodeList[0] and NodeList(0) both work.');
3 var nodeList = document.getElementsByTagName('div');
4 shouldBe("nodeList[0]", "nodeList(0)");
5 shouldBe("!nodeList[nodeList.length]", "!nodeList(nodeList.length)")
    [all...]
  /external/webkit/Source/WebCore/wml/
WMLTemplateElement.cpp 27 #include "NodeList.h"
81 RefPtr<NodeList> nodeList = doc->getElementsByTagName("card");
82 if (!nodeList)
85 unsigned length = nodeList->length();
91 cards.add(static_cast<WMLCardElement*>(nodeList->item(i)));
97 nodeList = doc->getElementsByTagName("template");
98 if (!nodeList)
101 length = nodeList->length();
108 WMLTemplateElement* temp = static_cast<WMLTemplateElement*>(nodeList->item(i))
    [all...]
WMLPElement.cpp 34 #include "NodeList.h"
93 RefPtr<NodeList> nodeList = document()->getElementsByTagName("p");
94 if (!nodeList)
97 unsigned length = nodeList->length();
103 if (nodeList->item(length - 1) != this)
106 WMLPElement* lastParagraph = static_cast<WMLPElement*>(nodeList->item(length - 2));
WMLCardElement.cpp 30 #include "NodeList.h"
253 RefPtr<NodeList> nodeList = document->getElementsByTagName("card");
254 if (nodeList && nodeList->length() == 1 && nodeList->item(0) == this)
285 RefPtr<NodeList> nodeList = doc->getElementsByTagName("card");
286 if (!nodeList)
289 unsigned length = nodeList->length()
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/
Parser.java 19 protected ArrayList nodeList;
42 this.nodeList = listNode;
46 this.stack.add(new State(numstate, this.nodeList));
52 s.nodes = this.nodeList;
875 @SuppressWarnings("hiding") ArrayList nodeList = new ArrayList();
883 nodeList.add(pcommandNode1);
884 return nodeList;
892 @SuppressWarnings("hiding") ArrayList nodeList = new ArrayList();
897 nodeList.add(pcommandNode1);
898 return nodeList;
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_nodecommentnodeattributes.java 67 NodeList nodeList;
71 nodeList = doc.getChildNodes();
72 for (int indexN10043 = 0; indexN10043 < nodeList.getLength(); indexN10043++) {
73 commentNode = (Node) nodeList.item(indexN10043);
  /external/srec/tools/grxmlcompile/
sub_grph.cpp 376 int *nodeList= new int [numVertex];
382 ProcessBegins (startPoint, endPoint, BEGINRULE_LABEL, nodeList, 0, visitList, numVertex);
385 delete [] nodeList;
397 int *nodeList= new int [numVertex];
403 ProcessEnds (endPoint, startPoint, ENDRULE_LABEL, nodeList, 0, visitList, numVertex);
406 delete [] nodeList;
418 int *nodeList= new int [numVertex];
424 ProcessBegins (startPoint, endPoint, NONE_LABEL, nodeList, 0, visitList, numVertex);
427 delete [] nodeList;
455 int *nodeList= new int [numVertex]
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XNodeSetForDOM.java 28 import org.w3c.dom.NodeList;
33 * Node object, NodeList object, or NodeIterator.
61 public XNodeSetForDOM(NodeList nodeList, XPathContext xctxt)
64 m_origObj = nodeList;
69 // m_obj=new org.apache.xpath.NodeSetDTM(nodeList, xctxt);
70 org.apache.xpath.NodeSetDTM nsdtm=new org.apache.xpath.NodeSetDTM(nodeList, xctxt);
101 * Cast result object to a nodelist. Always issues an error.
114 * Cast result object to a nodelist. Always issues an error.
120 public NodeList nodelist() throws javax.xml.transform.TransformerExceptio method in class:XNodeSetForDOM
    [all...]
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLTableElement31.js 98 var nodeList;
112 nodeList = doc.getElementsByTagName("body");
113 assertSize("tableSize1",1,nodeList);
114 testNode = nodeList.item(0);
117 nodeList = doc.getElementsByTagName("table");
118 assertSize("tableSize2",2,nodeList);
HTMLAnchorElement01.js 90 var nodeList;
100 nodeList = doc.getElementsByTagName("a");
101 assertSize("Asize",1,nodeList);
102 testNode = nodeList.item(0);
HTMLAnchorElement02.js 90 var nodeList;
100 nodeList = doc.getElementsByTagName("a");
101 assertSize("Asize",1,nodeList);
102 testNode = nodeList.item(0);
HTMLAnchorElement03.js 90 var nodeList;
100 nodeList = doc.getElementsByTagName("a");
101 assertSize("Asize",1,nodeList);
102 testNode = nodeList.item(0);
HTMLAnchorElement04.js 89 var nodeList;
99 nodeList = doc.getElementsByTagName("a");
100 assertSize("Asize",1,nodeList);
101 testNode = nodeList.item(0);
HTMLAnchorElement05.js 89 var nodeList;
99 nodeList = doc.getElementsByTagName("a");
100 assertSize("Asize",1,nodeList);
101 testNode = nodeList.item(0);
HTMLAnchorElement06.js 89 var nodeList;
99 nodeList = doc.getElementsByTagName("a");
100 assertSize("Asize",1,nodeList);
101 testNode = nodeList.item(0);
HTMLAnchorElement07.js 89 var nodeList;
99 nodeList = doc.getElementsByTagName("a");
100 assertSize("Asize",1,nodeList);
101 testNode = nodeList.item(0);
HTMLAnchorElement08.js 89 var nodeList;
99 nodeList = doc.getElementsByTagName("a");
100 assertSize("Asize",1,nodeList);
101 testNode = nodeList.item(0);
HTMLAnchorElement09.js 89 var nodeList;
99 nodeList = doc.getElementsByTagName("a");
100 assertSize("Asize",1,nodeList);
101 testNode = nodeList.item(0);
HTMLAnchorElement10.js 90 var nodeList;
100 nodeList = doc.getElementsByTagName("a");
101 assertSize("Asize",1,nodeList);
102 testNode = nodeList.item(0);
HTMLAnchorElement11.js 89 var nodeList;
99 nodeList = doc.getElementsByTagName("a");
100 assertSize("Asize",1,nodeList);
101 testNode = nodeList.item(0);
HTMLAnchorElement12.js 89 var nodeList;
99 nodeList = doc.getElementsByTagName("a");
100 assertSize("Asize",1,nodeList);
101 testNode = nodeList.item(0);
HTMLAnchorElement13.js 86 var nodeList;
95 nodeList = doc.getElementsByTagName("a");
96 assertSize("Asize",1,nodeList);
97 testNode = nodeList.item(0);
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLTableElement31.js 98 var nodeList;
112 nodeList = doc.getElementsByTagName("body");
113 assertSize("tableSize1",1,nodeList);
114 testNode = nodeList.item(0);
117 nodeList = doc.getElementsByTagName("table");
118 assertSize("tableSize2",2,nodeList);

Completed in 491 milliseconds

1 2 3 4 5 6 7 8 91011>>