HomeSort by relevance Sort by last modified time
    Searched defs:nodeList (Results 1 - 16 of 16) sorted by null

  /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/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/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...]
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...]
  /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);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/functests/sampleProjects/
AndroidManifestWriter.java 25 import org.w3c.dom.NodeList;
69 NodeList nodeList = mDoc.getElementsByTagName(AndroidManifest.NODE_USES_SDK);
70 if (nodeList.getLength() > 0) {
71 usesSdkElement = (Element) nodeList.item(0);
  /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...]
sub_phon.cpp 360 int *nodeList= new int [numVertex];
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...]
  /external/webkit/Source/WebCore/loader/archive/cf/
LegacyWebArchive.cpp 425 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;
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/xml/dtm/ref/
DTMNodeProxy.java 41 import org.w3c.dom.NodeList;
363 public final NodeList getChildNodes()
743 public final NodeList getElementsByTagName(String tagname)
752 NodeList nodeList = retNode.getChildNodes();
753 for (int i = 0; i < nodeList.getLength(); i++)
755 traverseChildren(listVector, nodeList.item(i), tagname,
769 return (NodeList) nodeSet;
800 NodeList nodeList = tempNode.getChildNodes()
    [all...]
  /external/icu4c/tools/ctestfw/
ctest.c 78 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, mode )
    [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...]
  /external/libxslt/libxslt/
xsltInternals.h     [all...]
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 

Completed in 2958 milliseconds