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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/dom/
StaticNodeList.h 32 #include "core/dom/NodeList.h"
41 class StaticNodeList : public NodeList {
45 RefPtr<StaticNodeList> nodeList = adoptRef(new StaticNodeList);
46 nodeList->m_nodes.swap(nodes);
47 return nodeList.release();
EventContext.h 49 PassRefPtr<NodeList> eventPath() { return m_eventPath; }
51 void setEventPath(PassRefPtr<NodeList> nodeList) { m_eventPath = nodeList; }
65 RefPtr<NodeList> m_eventPath;
MutationRecord.cpp 36 #include "core/dom/NodeList.h"
47 ChildListRecord(PassRefPtr<Node> target, PassRefPtr<NodeList> added, PassRefPtr<NodeList> removed, PassRefPtr<Node> previousSibling, PassRefPtr<Node> nextSibling)
59 virtual NodeList* addedNodes() OVERRIDE { return m_addedNodes.get(); }
60 virtual NodeList* removedNodes() OVERRIDE { return m_removedNodes.get(); }
65 RefPtr<NodeList> m_addedNodes;
66 RefPtr<NodeList> m_removedNodes;
82 virtual NodeList* addedNodes() OVERRIDE { return lazilyInitializeEmptyNodeList(m_addedNodes); }
83 virtual NodeList* removedNodes() OVERRIDE { return lazilyInitializeEmptyNodeList(m_removedNodes); }
85 static NodeList* lazilyInitializeEmptyNodeList(RefPtr<NodeList>& nodeList
    [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...]
sub_grph.h 227 void PullUpBegins (int currId, int baseId, int endId, int procLabel, int *nodeList, int currNum, int maxNum);
228 void ProcessBegins (int currId, int endId, int procLabel, int *nodeList, int currNum, int *visitMark, int maxNum);
229 void PullUpEnds (int currId, int baseId, int initialId, int procLabel, int *nodeList, int currNum, int maxNum);
230 void ProcessEnds (int currId, int initialId, int procLabel, int *nodeList, int currNum, int *visitMark, int maxNum);
231 bool PullUpTags (int currId, int baseId, int initialId, int outTag, int *nodeList, int currNum, int maxNum);
232 void ProcessTags (int currId, int initialId, int *nodeList, int currNum, int *visitMark, int maxNum);
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/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/chromium_org/third_party/WebKit/Source/core/html/
HTMLCollection.cpp 28 #include "core/dom/NodeList.h"
240 template <> inline bool isMatchingElement(const LiveNodeList* nodeList, Element* element)
242 return nodeList->nodeMatches(element);
245 template <> inline bool isMatchingElement(const HTMLTagNodeList* nodeList, Element* element)
247 return nodeList->nodeMatchesInlined(element);
250 template <> inline bool isMatchingElement(const ClassNodeList* nodeList, Element* element)
252 return nodeList->nodeMatchesInlined(element);
304 inline Element* firstMatchingElement(const NodeListType* nodeList, ContainerNode* root)
307 while (element && !isMatchingElement(nodeList, element))
313 inline Element* nextMatchingElement(const NodeListType* nodeList, Element* current, ContainerNode* root
    [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...]
TestResultsGenerator.java 35 import org.w3c.dom.NodeList;
312 NodeList nodeList = aDocument.getElementsByTagName("problem");
313 if (nodeList == null ||nodeList.getLength()==0)
316 int length = nodeList.getLength();
318 Node problemNode = nodeList.item(i);
    [all...]
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
CtsXmlGenerator.java 20 import org.w3c.dom.NodeList;
122 NodeList nodeList = parentElement.getElementsByTagName(elementName);
123 if (nodeList.getLength() > 0) {
124 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);
  /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/chromium_org/third_party/icu/source/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/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...]
  /libcore/luni/src/test/java/libcore/xml/
JaxenXPathTestSuite.java 25 import org.w3c.dom.NodeList;
168 NodeList valueOfElements = element.getElementsByTagName("valueOf");
188 NodeList result = (NodeList) xpath.evaluate(
296 private static List<Element> elementsOf(NodeList nodeList) {
298 for (int i = 0; i < nodeList.getLength(); i++) {
299 Node node = nodeList.item(i);
XsltXPathConformanceTestSuite.java 57 import org.w3c.dom.NodeList;
558 NodeList childNodes = node.getChildNodes();
564 private static List<Element> elementsOf(NodeList nodeList) {
566 for (int i = 0; i < nodeList.getLength(); i++) {
567 Node node = nodeList.item(i);
  /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/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);
  /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/xpath/
NodeSetDTM.java 32 import org.w3c.dom.NodeList;
38 * NodeList, or NodeIterator. However, in order for it to
39 * act as a NodeVector or NodeList, it's required that
53 * <p>Thought: Should NodeSetDTM really implement NodeList and NodeIterator,
61 implements /* NodeList, NodeIterator, */ DTMIterator,
67 * Create an empty nodelist.
90 // * given nodelist into it.
92 // * @param nodelist List of Nodes to be made members of the new set.
94 // public NodeSetDTM(NodeList nodelist)
    [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...]

Completed in 1346 milliseconds

1 2