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

1 2

  /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);
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
CtsXmlGenerator.java 20 import org.w3c.dom.NodeList;
118 NodeList nodeList = parentElement.getElementsByTagName(elementName);
119 if (nodeList.getLength() > 0) {
120 Element element = (Element) nodeList.item(0);
  /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);
  /tools/motodev/src/plugins/preflighting.checkers/src/com/motorolamobility/preflighting/checkers/layout/
RepeatedIdCondition.java 30 import org.w3c.dom.NodeList;
142 NodeList nodeList = elementNode.getChildNodes();
143 for (int i = 0; i < nodeList.getLength(); i++)
145 Node node = nodeList.item(i);
MissingIdCondition.java 29 import org.w3c.dom.NodeList;
186 NodeList nodeList = rootElem.getChildNodes();
187 for (int i = 0; i < nodeList.getLength(); i++)
189 Node node = nodeList.item(i);
220 NodeList nodeList = node.getChildNodes();
221 for (int i = 0; i < nodeList.getLength(); i++)
223 Node childNode = nodeList.item(i);
ViewTypeIdsCondition.java 30 import org.w3c.dom.NodeList;
198 NodeList nodeList = elementNode.getChildNodes();
199 for (int i = 0; i < nodeList.getLength(); i++)
201 Node node = nodeList.item(i);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
UnpackUpdateJars.java 30 import org.w3c.dom.NodeList;
180 NodeList nodeList=aDocument.getElementsByTagName("plugin");
181 if (nodeList==null)
184 for (int i = 0; i < nodeList.getLength(); i++) {
185 Node pluginNode = nodeList.item(i);
  /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);
  /tools/motodev/src/plugins/preflighting.checkers/src/com/motorolamobility/preflighting/checkers/buildingblocksdeclaration/
BuildingBlocksInheritanceCondition.java 24 import org.w3c.dom.NodeList;
187 NodeList nodeList = manifestDoc.getElementsByTagName(MANIFEST_NODE_NAME);
188 return nodeList.item(ZERO_INDEX).getAttributes().getNamedItem(PACKAGE_NAME_NODE_ATTRIBUTE)
307 NodeList applicationNodes = manifestDoc.getElementsByTagName(selectedNodeName);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
TestVersionTracker.java 47 import org.w3c.dom.NodeList;
239 NodeList nodeList = doc.getElementsByTagName("import");
240 if (nodeList == null || nodeList.getLength() == 0) {
243 for (int i = 0; i < nodeList.getLength(); i++) {
244 Node node = nodeList.item(i);
304 NodeList nodeList = doc.getElementsByTagName("target");
305 if (nodeList == null || nodeList.getLength() == 0)
    [all...]
  /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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/
buildTools.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/93/1/.cp/
convert.jar 
  /external/libxslt/libxslt/
xsltInternals.h     [all...]
  /tools/motodev/src/plugins/logger/lib/
log4j-1.2.14.jar 
  /tools/motodev/src/plugins/preflighting.core/lib/
log4j-1.2.14.jar 

Completed in 1800 milliseconds

1 2