Home
last modified time | relevance | path

Searched refs:nodeList (Results 1 – 25 of 30) sorted by relevance

12

/external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/
DParser.java19 protected ArrayList nodeList; field in Parser
42 this.nodeList = listNode; in push()
46 this.stack.add(new State(numstate, this.nodeList)); in push()
52 s.nodes = this.nodeList; in push()
875 @SuppressWarnings("hiding") ArrayList nodeList = new ArrayList(); in new0() local
883 nodeList.add(pcommandNode1); in new0()
884 return nodeList; in new0()
892 @SuppressWarnings("hiding") ArrayList nodeList = new ArrayList(); in new1() local
897 nodeList.add(pcommandNode1); in new1()
898 return nodeList; in new1()
[all …]
/external/srec/tools/grxmlcompile/
Dsub_grph.cpp376 int *nodeList= new int [numVertex]; in RemoveRuleStarts() local
382 ProcessBegins (startPoint, endPoint, BEGINRULE_LABEL, nodeList, 0, visitList, numVertex); in RemoveRuleStarts()
385 delete [] nodeList; in RemoveRuleStarts()
397 int *nodeList= new int [numVertex]; in RemoveRuleEnds() local
403 ProcessEnds (endPoint, startPoint, ENDRULE_LABEL, nodeList, 0, visitList, numVertex); in RemoveRuleEnds()
406 delete [] nodeList; in RemoveRuleEnds()
418 int *nodeList= new int [numVertex]; in RemoveNulls() local
424 ProcessBegins (startPoint, endPoint, NONE_LABEL, nodeList, 0, visitList, numVertex); in RemoveNulls()
427 delete [] nodeList; in RemoveNulls()
455 int *nodeList= new int [numVertex]; in RemoveForwardConnections() local
[all …]
Dsub_phon.cpp360 int *nodeList= new int [numVertex]; in MarkNodesByOutputAndClearArcs() local
362 nodeList[ii]= NONE_LABEL; in MarkNodesByOutputAndClearArcs()
369 nodeList[currId]= DISCARD_LABEL; in MarkNodesByOutputAndClearArcs()
370 else if (nodeList[currId] != DISCARD_LABEL) { in MarkNodesByOutputAndClearArcs()
371 if (nodeList[currId] == NONE_LABEL) in MarkNodesByOutputAndClearArcs()
372 nodeList[currId]= arc[ii]->GetOutput(); in MarkNodesByOutputAndClearArcs()
373 else if (nodeList[currId] != arc[ii]->GetOutput()) in MarkNodesByOutputAndClearArcs()
374 nodeList[currId]= DISCARD_LABEL; in MarkNodesByOutputAndClearArcs()
382 if (nodeList[currId] >= 0 && arc[ii]->GetOutput() >= 0) // unique ones in MarkNodesByOutputAndClearArcs()
405 delete [] nodeList; in MarkNodesByOutputAndClearArcs()
Dsub_grph.h227 …void PullUpBegins (int currId, int baseId, int endId, int procLabel, int *nodeList, int currNum, i…
228 …void ProcessBegins (int currId, int endId, int procLabel, int *nodeList, int currNum, int *visitMa…
229 …void PullUpEnds (int currId, int baseId, int initialId, int procLabel, int *nodeList, int currNum,…
230 …void ProcessEnds (int currId, int initialId, int procLabel, int *nodeList, int currNum, int *visit…
231 …bool PullUpTags (int currId, int baseId, int initialId, int outTag, int *nodeList, int currNum, in…
232 …void ProcessTags (int currId, int initialId, int *nodeList, int currNum, int *visitMark, int maxNu…
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLCollection.cpp241 template <> inline bool isMatchingElement(const LiveNodeList* nodeList, Element* element) in isMatchingElement() argument
243 return nodeList->nodeMatches(element); in isMatchingElement()
246 template <> inline bool isMatchingElement(const HTMLTagNodeList* nodeList, Element* element) in isMatchingElement() argument
248 return nodeList->nodeMatchesInlined(element); in isMatchingElement()
251 template <> inline bool isMatchingElement(const ClassNodeList* nodeList, Element* element) in isMatchingElement() argument
253 return nodeList->nodeMatchesInlined(element); in isMatchingElement()
305 inline Element* firstMatchingElement(const NodeListType* nodeList, ContainerNode& root) in firstMatchingElement() argument
308 while (element && !isMatchingElement(nodeList, element)) in firstMatchingElement()
314 inline Element* nextMatchingElement(const NodeListType* nodeList, Element& current, ContainerNode* … in nextMatchingElement() argument
319 } while (next && !isMatchingElement(nodeList, next)); in nextMatchingElement()
[all …]
/external/chromium_org/third_party/WebKit/Source/core/dom/
DStaticNodeList.h45 RefPtr<StaticNodeList> nodeList = adoptRef(new StaticNodeList); in adopt() local
46 nodeList->m_nodes.swap(nodes); in adopt()
47 return nodeList.release(); in adopt()
DMutationRecord.cpp85 static NodeList* lazilyInitializeEmptyNodeList(RefPtr<NodeList>& nodeList) in lazilyInitializeEmptyNodeList() argument
87 if (!nodeList) in lazilyInitializeEmptyNodeList()
88 nodeList = StaticNodeList::createEmpty(); in lazilyInitializeEmptyNodeList()
89 return nodeList.get(); in lazilyInitializeEmptyNodeList()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
DTestVersionTracker.java239 NodeList nodeList = doc.getElementsByTagName("import"); in getPrerequisitePluginsFromPluginXml() local
240 if (nodeList == null || nodeList.getLength() == 0) { in getPrerequisitePluginsFromPluginXml()
243 for (int i = 0; i < nodeList.getLength(); i++) { in getPrerequisitePluginsFromPluginXml()
244 Node node = nodeList.item(i); in getPrerequisitePluginsFromPluginXml()
304 NodeList nodeList = doc.getElementsByTagName("target"); in setHasPerformanceTarget() local
305 if (nodeList == null || nodeList.getLength() == 0) { in setHasPerformanceTarget()
308 for (int i = 0; i < nodeList.getLength(); i++) { in setHasPerformanceTarget()
309 Node node = nodeList.item(i); in setHasPerformanceTarget()
DTestResultsGenerator.java312 NodeList nodeList = aDocument.getElementsByTagName("problem"); in parseCompileLog()
313 if (nodeList == null ||nodeList.getLength()==0) in parseCompileLog()
316 int length = nodeList.getLength(); in parseCompileLog()
318 Node problemNode = nodeList.item(i); in parseCompileLog()
/external/apache-xml/src/main/java/org/apache/xpath/objects/
DXNodeSetForDOM.java61 public XNodeSetForDOM(NodeList nodeList, XPathContext xctxt) in XNodeSetForDOM() argument
64 m_origObj = nodeList; in XNodeSetForDOM()
70 org.apache.xpath.NodeSetDTM nsdtm=new org.apache.xpath.NodeSetDTM(nodeList, xctxt); in XNodeSetForDOM()
/external/icu4c/tools/ctestfw/
Dctest.c78 const TestNode** nodeList,
324 const TestNode** nodeList, in iterateTestsWithLevel() argument
343 nodeList[depth++] = root; in iterateTestsWithLevel()
349 strcat(pathToFunction, nodeList[i]->name); in iterateTestsWithLevel()
352 strcat(pathToFunction, nodeList[i]->name); /* including 'root' */ in iterateTestsWithLevel()
434 log_testinfo("---%s%c\n",pathToFunction, nodeList[i]->test?' ':TEST_SEPARATOR ); in iterateTestsWithLevel()
448 iterateTestsWithLevel ( root->child, depth, nodeList, mode ); in iterateTestsWithLevel()
480 iterateTestsWithLevel ( root->sibling, depth, nodeList, mode ); in iterateTestsWithLevel()
490 const TestNode *nodeList[MAXTESTS]; in showTests() local
495 iterateTestsWithLevel ( root, 0, nodeList, SHOWTESTS ); in showTests()
[all …]
/external/chromium_org/third_party/icu/source/tools/ctestfw/
Dctest.c78 const TestNode** nodeList,
324 const TestNode** nodeList, in iterateTestsWithLevel() argument
343 nodeList[depth++] = root; in iterateTestsWithLevel()
349 strcat(pathToFunction, nodeList[i]->name); in iterateTestsWithLevel()
352 strcat(pathToFunction, nodeList[i]->name); /* including 'root' */ in iterateTestsWithLevel()
434 log_testinfo("---%s%c\n",pathToFunction, nodeList[i]->test?' ':TEST_SEPARATOR ); in iterateTestsWithLevel()
448 iterateTestsWithLevel ( root->child, depth, nodeList, mode ); in iterateTestsWithLevel()
480 iterateTestsWithLevel ( root->sibling, depth, nodeList, mode ); in iterateTestsWithLevel()
490 const TestNode *nodeList[MAXTESTS]; in showTests() local
495 iterateTestsWithLevel ( root, 0, nodeList, SHOWTESTS ); in showTests()
[all …]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
DUnpackUpdateJars.java180 NodeList nodeList=aDocument.getElementsByTagName("plugin"); in getUnpackedPluginList() local
181 if (nodeList==null) in getUnpackedPluginList()
184 for (int i = 0; i < nodeList.getLength(); i++) { in getUnpackedPluginList()
185 Node pluginNode = nodeList.item(i); in getUnpackedPluginList()
/external/chromium_org/third_party/WebKit/Source/core/events/
DEventContext.h78 void setEventPath(PassRefPtr<NodeList> nodeList) { m_eventPath = nodeList; } in setEventPath() argument
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DDTMNodeProxy.java752 NodeList nodeList = retNode.getChildNodes(); in getElementsByTagName() local
753 for (int i = 0; i < nodeList.getLength(); i++) in getElementsByTagName()
755 traverseChildren(listVector, nodeList.item(i), tagname, in getElementsByTagName()
800 NodeList nodeList = tempNode.getChildNodes(); in traverseChildren() local
801 for (int i = 0; i < nodeList.getLength(); i++) in traverseChildren()
803 traverseChildren(listVector, nodeList.item(i), tagname, in traverseChildren()
877 NodeList nodeList = retNode.getChildNodes(); in getElementsByTagNameNS() local
878 for(int i = 0; i < nodeList.getLength(); i++) in getElementsByTagNameNS()
880 …traverseChildren(listVector, nodeList.item(i), namespaceURI, localName, isNamespaceURIWildCard, is… in getElementsByTagNameNS()
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
Dnv50_ir_graph.cpp402 std::list<Node *> nodeList; in findLightestPathWeight() local
412 nodeList.push_front(t); in findLightestPathWeight()
419 for (std::list<Node *>::iterator n = nodeList.begin(); in findLightestPathWeight()
420 n != nodeList.end(); ++n) { in findLightestPathWeight()
425 n = nodeList.erase(n); in findLightestPathWeight()
/external/mesa3d/src/gallium/drivers/nv50/codegen/
Dnv50_ir_graph.cpp402 std::list<Node *> nodeList; in findLightestPathWeight() local
412 nodeList.push_front(t); in findLightestPathWeight()
419 for (std::list<Node *>::iterator n = nodeList.begin(); in findLightestPathWeight()
420 n != nodeList.end(); ++n) { in findLightestPathWeight()
425 n = nodeList.erase(n); in findLightestPathWeight()
/external/apache-xml/src/main/java/org/apache/xpath/
DNodeSetDTM.java160 public NodeSetDTM(NodeList nodeList, XPathContext xctxt) in NodeSetDTM() argument
167 int n = nodeList.getLength(); in NodeSetDTM()
170 Node node = nodeList.item(i); in NodeSetDTM()
/external/chromium_org/third_party/WebKit/Source/core/xml/
DXSLTUnicodeSort.cpp68 list = ctxt->nodeList; in xsltUnicodeSortFunction()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorDOMAgent.cpp1022 … RefPtr<NodeList> nodeList = document->querySelectorAll(whitespaceTrimmedQuery, exceptionState); in performSearch() local
1023 if (exceptionState.hadException() || !nodeList) in performSearch()
1026 unsigned size = nodeList->length(); in performSearch()
1028 resultCollector.add(nodeList->item(i)); in performSearch()
/external/libxslt/libxslt/
Dtransform.c4717 oldList = ctxt->nodeList; in xsltApplyTemplates()
4918 ctxt->nodeList = list; in xsltApplyTemplates()
5053 ctxt->nodeList = oldList; in xsltApplyTemplates()
5499 oldList = ctxt->nodeList; in xsltForEach()
5571 ctxt->nodeList = list; in xsltForEach()
5639 ctxt->nodeList = oldList; in xsltForEach()
6174 xmlXPathFreeNodeSet(ctxt->nodeList); in xsltApplyStylesheetInternal()
DxsltInternals.h1694 xmlNodeSetPtr nodeList; /* the current node list */ member
Dxsltutils.c982 list = ctxt->nodeList; in xsltComputeSortResult()
1110 list = ctxt->nodeList; in xsltDefaultSortFunction()
/external/chromium_org/third_party/libxslt/libxslt/
Dtransform.c4717 oldList = ctxt->nodeList; in xsltApplyTemplates()
4918 ctxt->nodeList = list; in xsltApplyTemplates()
5053 ctxt->nodeList = oldList; in xsltApplyTemplates()
5499 oldList = ctxt->nodeList; in xsltForEach()
5571 ctxt->nodeList = list; in xsltForEach()
5639 ctxt->nodeList = oldList; in xsltForEach()
6174 xmlXPathFreeNodeSet(ctxt->nodeList); in xsltApplyStylesheetInternal()
DxsltInternals.h1694 xmlNodeSetPtr nodeList; /* the current node list */ member

12