Searched defs:nodeList (Results 1 - 17 of 17) sorted by relevance

/external/webkit/LayoutTests/fast/dom/NodeList/script-tests/
H A Dnodelist-item-call-as-function.js3 var nodeList = document.getElementsByTagName('div'); variable
4 shouldBe("nodeList[0]", "nodeList(0)");
5 shouldBe("!nodeList[nodeList.length]", "!nodeList(nodeList.length)");
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXNodeSetForDOM.java61 public XNodeSetForDOM(NodeList nodeList, XPathContext xctxt) argument
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);
/external/webkit/Source/JavaScriptCore/API/tests/
H A DNodeList.c34 NodeList* nodeList = (NodeList*)malloc(sizeof(NodeList)); local
35 nodeList->parentNode = parentNode;
36 nodeList->refCount = 0;
37 return nodeList;
40 extern unsigned NodeList_length(NodeList* nodeList) argument
44 NodeLink* n = nodeList->parentNode->childNodesTail;
53 extern Node* NodeList_item(NodeList* nodeList, unsigned index) argument
55 unsigned length = NodeList_length(nodeList);
60 NodeLink* n = nodeList->parentNode->childNodesTail;
70 extern void NodeList_ref(NodeList* nodeList) argument
75 NodeList_deref(NodeList* nodeList) argument
[all...]
H A DJSNodeList.c38 NodeList* nodeList = JSObjectGetPrivate(thisObject); local
39 ASSERT(nodeList);
40 Node* node = NodeList_item(nodeList, (unsigned)JSValueToNumber(context, arguments[0], exception));
58 NodeList* nodeList = JSObjectGetPrivate(thisObject); local
59 ASSERT(nodeList);
60 return JSValueMakeNumber(context, NodeList_length(nodeList));
70 NodeList* nodeList = JSObjectGetPrivate(thisObject); local
71 ASSERT(nodeList);
75 Node* node = NodeList_item(nodeList, uindex);
87 NodeList* nodeList local
95 NodeList* nodeList = JSObjectGetPrivate(thisObject); local
120 JSNodeList_new(JSContextRef context, NodeList* nodeList) argument
[all...]
/external/webkit/Source/WebCore/wml/
H A DWMLTemplateElement.cpp81 RefPtr<NodeList> nodeList = doc->getElementsByTagName("card"); local
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));
H A DWMLCardElement.cpp253 RefPtr<NodeList> nodeList = document->getElementsByTagName("card"); local
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();
294 WMLCardElement* card = static_cast<WMLCardElement*>(nodeList->item(i));
310 RefPtr<NodeList> nodeList = doc->getElementsByTagName("card");
311 if (!nodeList)
[all...]
/external/srec/tools/grxmlcompile/
H A Dsub_phon.cpp360 int *nodeList= new int [numVertex]; local
362 nodeList[ii]= NONE_LABEL;
369 nodeList[currId]= DISCARD_LABEL;
370 else if (nodeList[currId] != DISCARD_LABEL) {
371 if (nodeList[currId] == NONE_LABEL)
372 nodeList[currId]= arc[ii]->GetOutput();
373 else if (nodeList[currId] != arc[ii]->GetOutput())
374 nodeList[currId]= DISCARD_LABEL;
382 if (nodeList[currId] >= 0 && arc[ii]->GetOutput() >= 0) // unique ones
405 delete [] nodeList;
[all...]
H A Dsub_grph.cpp376 int *nodeList= new int [numVertex]; local
382 ProcessBegins (startPoint, endPoint, BEGINRULE_LABEL, nodeList, 0, visitList, numVertex);
385 delete [] nodeList;
397 int *nodeList= new int [numVertex]; local
403 ProcessEnds (endPoint, startPoint, ENDRULE_LABEL, nodeList, 0, visitList, numVertex);
406 delete [] nodeList;
418 int *nodeList= new int [numVertex]; local
424 ProcessBegins (startPoint, endPoint, NONE_LABEL, nodeList, 0, visitList, numVertex);
427 delete [] nodeList;
455 int *nodeList local
470 PullUpBegins(int currId, int baseId, int finalId, int procLabel, int *nodeList, int currNum, int maxNum) argument
491 ProcessBegins(int currId, int finalId, int procLabel, int *nodeList, int currNum, int *visitMark, int maxNum) argument
527 int *nodeList= new int [numVertex]; local
542 PullUpEnds(int currId, int baseId, int initialId, int procLabel, int *nodeList, int currNum, int maxNum) argument
563 ProcessEnds(int currId, int initialId, int procLabel, int *nodeList, int currNum, int *visitMark, int maxNum) argument
763 int *nodeList= new int [numVertex]; local
778 PullUpTags(int currId, int baseId, int initialId, int outTag, int *nodeList, int currNum, int maxNum) argument
802 ProcessTags(int currId, int initialId, int *nodeList, int currNum, int *visitMark, int maxNum) argument
[all...]
/external/webkit/Source/WebCore/loader/archive/cf/
H A DLegacyWebArchive.cpp425 Vector<Node*> nodeList;
426 String markupString = createMarkup(node, IncludeNode, &nodeList);
431 return create(markupString, frame, nodeList);
475 Vector<Node*> nodeList;
478 String markupString = frame->documentTypeString() + createMarkup(range, &nodeList, AnnotateForInterchange);
480 return create(markupString, frame, nodeList);
567 Vector<Node*> nodeList; local
568 String markupString = frame->documentTypeString() + createMarkup(selectionRange.get(), &nodeList, AnnotateForInterchange);
570 RefPtr<LegacyWebArchive> archive = create(markupString, frame, nodeList);
/external/apache-xml/src/main/java/org/apache/xpath/
H A DNodeSetDTM.java160 public NodeSetDTM(NodeList nodeList, XPathContext xctxt) argument
167 int n = nodeList.getLength();
170 Node node = nodeList.item(i);
/external/icu4c/tools/ctestfw/
H A Dctest.c78 const TestNode** nodeList,
319 * @param nodeList an array of MAXTESTS depth that's used for keeping track of where we are. nodeList[depth] points to the 'parent' at depth depth.
324 const TestNode** nodeList,
343 nodeList[depth++] = root;
349 strcat(pathToFunction, nodeList[i]->name);
352 strcat(pathToFunction, nodeList[i]->name); /* including 'root' */
434 log_testinfo("---%s%c\n",pathToFunction, nodeList[i]->test?' ':TEST_SEPARATOR );
448 iterateTestsWithLevel ( root->child, depth, nodeList, mode );
480 iterateTestsWithLevel ( root->sibling, depth, nodeList, mod
322 iterateTestsWithLevel( const TestNode* root, int depth, const TestNode** nodeList, TestMode mode) argument
490 const TestNode *nodeList[MAXTESTS]; local
503 const TestNode *nodeList[MAXTESTS]; local
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/
H A DParser.java19 protected ArrayList nodeList; field in class:Parser
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...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/
H A DbuildTools.jarMETA-INF/MANIFEST.MF org/eclipse/releng/Mailer.class Mailer.java package org.eclipse ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/93/1/.cp/
H A Dconvert.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/jdt/ org/eclipse/jdt/core/ ...
/external/libxslt/libxslt/
H A DxsltInternals.h1694 xmlNodeSetPtr nodeList; /* the current node list */ member in struct:_xsltTransformContext
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.debug.core_3.6.0.v20100519.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...

Completed in 1751 milliseconds