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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/dom/
StaticNodeList.h 32 #include "core/dom/NodeList.h"
44 class StaticNodeTypeList FINAL : public NodeList {
75 RefPtrWillBeRawPtr<StaticNodeTypeList<NodeType> > nodeList = adoptRefWillBeNoop(new StaticNodeTypeList<NodeType>);
76 nodeList->m_nodes.swap(nodes);
77 v8::Isolate::GetCurrent()->AdjustAmountOfExternalAllocatedMemory(nodeList->AllocationSize());
78 return nodeList.release();
105 NodeList::trace(visitor);
  /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;
148 NodeList nodeList = parentElement.getElementsByTagName(elementName);
149 if (nodeList.getLength() > 0) {
150 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);
  /cts/common/host-side/xml-plan-generator/src/com/android/compatibility/common/xmlgenerator/
XmlPlanGenerator.java 23 import org.w3c.dom.NodeList;
202 NodeList nodeList = parent.getElementsByTagName(elem);
203 if (nodeList.getLength() > 0) {
204 Element element = (Element) nodeList.item(0);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_graph.cpp 402 std::list<Node *> nodeList;
412 nodeList.push_front(t);
419 for (std::list<Node *>::iterator n = nodeList.begin();
420 n != nodeList.end(); ++n) {
425 n = nodeList.erase(n);
  /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/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_graph.cpp 402 std::list<Node *> nodeList;
412 nodeList.push_front(t);
419 for (std::list<Node *>::iterator n = nodeList.begin();
420 n != nodeList.end(); ++n) {
425 n = nodeList.erase(n);
  /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/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...]
  /prebuilts/devtools/tools/lib/
jsilver-1.0.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/jsilver/jsilver/1.0.0/
jsilver-1.0.0.jar 
  /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/chromium_org/third_party/icu/source/tools/ctestfw/
ctest.c 78 const TestNode** nodeList,
322 * @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.
327 const TestNode** nodeList,
346 nodeList[depth++] = root;
352 strcat(pathToFunction, nodeList[i]->name);
355 strcat(pathToFunction, nodeList[i]->name); /* including 'root' */
438 log_testinfo("---%s%c\n",pathToFunction, nodeList[i]->test?' ':TEST_SEPARATOR );
452 iterateTestsWithLevel ( root->child, depth, nodeList, mode );
484 iterateTestsWithLevel ( root->sibling, depth, nodeList, mode )
    [all...]
  /external/icu/icu4c/source/tools/ctestfw/
ctest.c 78 const TestNode** nodeList,
322 * @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.
327 const TestNode** nodeList,
346 nodeList[depth++] = root;
352 strcat(pathToFunction, nodeList[i]->name);
355 strcat(pathToFunction, nodeList[i]->name); /* including 'root' */
438 log_testinfo("---%s%c\n",pathToFunction, nodeList[i]->test?' ':TEST_SEPARATOR );
452 iterateTestsWithLevel ( root->child, depth, nodeList, mode );
484 iterateTestsWithLevel ( root->sibling, depth, nodeList, mode )
    [all...]
  /external/deqp/modules/glshared/
glsShaderLibrary.cpp     [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/chromium_org/third_party/libxslt/libxslt/
xsltInternals.h     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/93/1/.cp/
convert.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/manifest-merger/22.8.0/
manifest-merger-22.8.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/manifest-merger/22.9.2/
manifest-merger-22.9.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/manifest-merger/23.0.1/
manifest-merger-23.0.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/manifest-merger/23.0.2/
manifest-merger-23.0.2.jar 

Completed in 901 milliseconds

1 2