Searched refs:nodeList (Results 1 - 25 of 40) sorted by relevance

12

/external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/
H A DParser.java19 protected ArrayList nodeList; field in class:Parser
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/chromium_org/third_party/WebKit/Source/core/dom/
H A DEmptyNodeList.h64 DEFINE_TYPE_CASTS(EmptyNodeList, NodeList, nodeList, nodeList->isEmptyNodeList(), nodeList.isEmptyNodeList());
H A DStaticNodeList.h75 RefPtrWillBeRawPtr<StaticNodeTypeList<NodeType> > nodeList = adoptRefWillBeNoop(new StaticNodeTypeList<NodeType>); local
76 nodeList->m_nodes.swap(nodes);
77 v8::Isolate::GetCurrent()->AdjustAmountOfExternalAllocatedMemory(nodeList->AllocationSize());
78 return nodeList.release();
H A DChildNodeList.h73 DEFINE_TYPE_CASTS(ChildNodeList, NodeList, nodeList, nodeList->isChildNodeList(), nodeList.isChildNodeList());
H A DMutationRecord.cpp103 static StaticNodeList* lazilyInitializeEmptyNodeList(RefPtrWillBeMember<StaticNodeList>& nodeList) argument
105 if (!nodeList)
106 nodeList = StaticNodeList::createEmpty();
107 return nodeList.get();
/external/srec/tools/grxmlcompile/
H A Dsub_grph.cpp376 int *nodeList= new int [numVertex]; local
382 ProcessBegins (startPoint, endPoint, BEGINRULE_LABEL, nodeList, 0, visitList, numVertex);
385 delete [] nodeList;
397 int *nodeList= new int [numVertex]; local
403 ProcessEnds (endPoint, startPoint, ENDRULE_LABEL, nodeList, 0, visitList, numVertex);
406 delete [] nodeList;
418 int *nodeList= new int [numVertex]; local
424 ProcessBegins (startPoint, endPoint, NONE_LABEL, nodeList, 0, visitList, numVertex);
427 delete [] nodeList;
455 int *nodeList local
470 PullUpBegins(int currId, int baseId, int finalId, int procLabel, int *nodeList, int currNum, int maxNum) argument
491 ProcessBegins(int currId, int finalId, int procLabel, int *nodeList, int currNum, int *visitMark, int maxNum) argument
527 int *nodeList= new int [numVertex]; local
542 PullUpEnds(int currId, int baseId, int initialId, int procLabel, int *nodeList, int currNum, int maxNum) argument
563 ProcessEnds(int currId, int initialId, int procLabel, int *nodeList, int currNum, int *visitMark, int maxNum) argument
763 int *nodeList= new int [numVertex]; local
778 PullUpTags(int currId, int baseId, int initialId, int outTag, int *nodeList, int currNum, int maxNum) argument
802 ProcessTags(int currId, int initialId, int *nodeList, int currNum, int *visitMark, int maxNum) argument
[all...]
H A Dsub_grph.h227 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);
H A Dsub_phon.cpp360 int *nodeList= new int [numVertex]; local
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/
H A DXNodeSetForDOM.java61 public XNodeSetForDOM(NodeList nodeList, XPathContext xctxt) argument
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);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
H A DTestVersionTracker.java239 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) {
308 for (int i = 0; i < nodeList.getLength(); i++) {
309 Node node = nodeList
[all...]
H A DTestResultsGenerator.java312 NodeList nodeList = aDocument.getElementsByTagName("problem");
313 if (nodeList == null ||nodeList.getLength()==0)
316 int length = nodeList.getLength();
318 Node problemNode = nodeList.item(i);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
H A DUnpackUpdateJars.java180 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/
H A Dctest.c78 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, mod
325 iterateTestsWithLevel( const TestNode* root, int depth, const TestNode** nodeList, TestMode mode) argument
494 const TestNode *nodeList[MAXTESTS]; local
507 const TestNode *nodeList[MAXTESTS]; local
[all...]
/external/icu/icu4c/source/tools/ctestfw/
H A Dctest.c78 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, mod
325 iterateTestsWithLevel( const TestNode* root, int depth, const TestNode** nodeList, TestMode mode) argument
494 const TestNode *nodeList[MAXTESTS]; local
507 const TestNode *nodeList[MAXTESTS]; local
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dcommand_store.js105 * nodeList: (undefined|string),
122 * nodeList: The id from the map above if this command is used for
363 nodeList: 'formField',
366 'showHeadingsList': {announce: false, nodeList: 'heading',
370 'showLandmarksList': {announce: false, nodeList: 'landmark',
374 'showLinksList': {announce: false, nodeList: 'link',
378 'showTablesList': {announce: false, nodeList: 'table',
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_graph.cpp402 std::list<Node *> nodeList; local
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/
H A Dnv50_ir_graph.cpp402 std::list<Node *> nodeList; local
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/apache-xml/src/main/java/org/apache/xpath/
H A DNodeSetDTM.java160 public NodeSetDTM(NodeList nodeList, XPathContext xctxt) argument
167 int n = nodeList.getLength();
170 Node node = nodeList.item(i);
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMNodeProxy.java752 NodeList nodeList = retNode.getChildNodes();
753 for (int i = 0; i < nodeList.getLength(); i++)
755 traverseChildren(listVector, nodeList.item(i), tagname,
800 NodeList nodeList = tempNode.getChildNodes();
801 for (int i = 0; i < nodeList.getLength(); i++)
803 traverseChildren(listVector, nodeList.item(i), tagname,
877 NodeList nodeList = retNode.getChildNodes();
878 for(int i = 0; i < nodeList.getLength(); i++)
880 traverseChildren(listVector, nodeList.item(i), namespaceURI, localName, isNamespaceURIWildCard, isLocalNameWildCard);
/external/deqp/modules/glshared/
H A DglsShaderLibrary.cpp1365 vector<tcu::TestNode*> nodeList; local
1372 parseShaderCase(nodeList);
1374 parseShaderGroup(nodeList);
1376 parseImport(nodeList);
1385 return nodeList;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/
H A DbuildTools.jarMETA-INF/MANIFEST.MF org/eclipse/releng/Mailer.class Mailer.java package org.eclipse ...
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXSLTUnicodeSort.cpp68 list = ctxt->nodeList;
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
H A Duser_commands.js684 if (!cmdStruct.nodeList) {
688 cvox.CommandStore.NODE_INFO_MAP[cmdStruct.nodeList];
/external/chromium_org/third_party/readability/js/
H A Dreadability.js709 * Fix for odd IE7 Crash where siblingNode does not exist even though this should be a live nodeList.
1639 hasDoubleBr: function(nodeList) {
1640 for (var i = 0; i < nodeList.length; nodeList++) {
1641 if (readability.isMultipleBr(nodeList[i], true)) {
/external/chromium_org/ui/accessibility/extensions/caretbrowsing/
H A Dcaretbrowsing.js363 * @param {Array.<Node>} nodeList An array of nodes to focus.
366 CaretBrowsing.setFocusToFirstFocusable = function(nodeList) {
367 for (var i = 0; i < nodeList.length; i++) {
368 if (CaretBrowsing.setFocusToNode(nodeList[i])) {

Completed in 2909 milliseconds

12