/external/python/cpython2/Lib/compiler/ |
D | transformer.py | 179 def file_input(self, nodelist): argument 180 doc = self.get_docstring(nodelist, symbol.file_input) 186 for node in nodelist[i:]: 191 def eval_input(self, nodelist): argument 194 return Expression(self.com_node(nodelist[0])) 196 def decorator_name(self, nodelist): argument 197 listlen = len(nodelist) 200 item = self.atom_name(nodelist) 203 assert nodelist[i][0] == token.DOT 204 assert nodelist[i + 1][0] == token.NAME [all …]
|
D | ast.py | 77 nodelist = [] 78 nodelist.extend(flatten_nodes(self.nodes)) 79 return tuple(nodelist) 109 nodelist = [] 110 nodelist.extend(flatten_nodes(self.nodes)) 111 return tuple(nodelist) 140 nodelist = [] 141 nodelist.extend(flatten_nodes(self.nodes)) 142 return tuple(nodelist) 160 nodelist = [] [all …]
|
/external/apache-xml/src/main/java/org/apache/xpath/ |
D | NodeSet.java | 89 public NodeSet(NodeList nodelist) in NodeSet() argument 94 addNodes(nodelist); in NodeSet() 103 public NodeSet(NodeSet nodelist) in NodeSet() argument 108 addNodes((NodeIterator) nodelist); in NodeSet() 431 public void addNodes(NodeList nodelist) in addNodes() argument 437 if (null != nodelist) // defensive to fix a bug that Sanjiva reported. in addNodes() 439 int nChildren = nodelist.getLength(); in addNodes() 443 Node obj = nodelist.item(i); in addNodes() 516 public void addNodesInDocOrder(NodeList nodelist, XPathContext support) in addNodesInDocOrder() argument 522 int nChildren = nodelist.getLength(); in addNodesInDocOrder() [all …]
|
D | NodeSetDTM.java | 108 public NodeSetDTM(NodeSetDTM nodelist) in NodeSetDTM() argument 112 m_manager = nodelist.getDTMManager(); in NodeSetDTM() 113 m_root = nodelist.getRoot(); in NodeSetDTM() 115 addNodes((DTMIterator) nodelist); in NodeSetDTM()
|
D | XPathAPI.java | 170 return list.nodelist(); in selectNodeList()
|
D | CachedXPathAPI.java | 225 return list.nodelist(); in selectNodeList()
|
/external/swiftshader/third_party/LLVM/test/Transforms/ADCE/ |
D | 2002-05-23-ZeroArgPHITest.ll | 11 define void @localize_local(%node_t* %nodelist) { 13 %nodelist.upgrd.1 = alloca %node_t* ; <%node_t**> [#uses=2] 14 store %node_t* %nodelist, %node_t** %nodelist.upgrd.1 18 %reg107 = load %node_t** %nodelist.upgrd.1 ; <%node_t*> [#uses=2]
|
/external/llvm/test/Transforms/ADCE/ |
D | 2002-05-23-ZeroArgPHITest.ll | 11 define void @localize_local(%node_t* %nodelist) { 13 %nodelist.upgrd.1 = alloca %node_t* ; <%node_t**> [#uses=2] 14 store %node_t* %nodelist, %node_t** %nodelist.upgrd.1 18 %reg107 = load %node_t*, %node_t** %nodelist.upgrd.1 ; <%node_t*> [#uses=2]
|
/external/ltp/testcases/kernel/controllers/cpuset/cpuset_memory_spread_test/ |
D | cpuset_memory_spread_testset.sh | 163 local nodelist="`echo $1 | sed -e 's/,/ /g'`" 166 for i in $nodelist 175 nodelist=" "$nodelist" " 178 for i in $nodelist
|
/external/python/cpython2/Doc/includes/ |
D | minidom-example.py | 21 def getText(nodelist): argument 23 for node in nodelist:
|
/external/apache-xml/src/main/java/org/apache/xpath/objects/ |
D | XNodeSetForDOM.java | 120 public NodeList nodelist() throws javax.xml.transform.TransformerException in nodelist() method in XNodeSetForDOM 123 ? (NodeList)m_origObj : super.nodelist(); in nodelist()
|
D | XNodeSet.java | 344 public NodeList nodelist() throws javax.xml.transform.TransformerException in nodelist() method in XNodeSet 346 org.apache.xml.dtm.ref.DTMNodeList nodelist = new org.apache.xml.dtm.ref.DTMNodeList(this); in nodelist() local 351 XNodeSet clone = (XNodeSet)nodelist.getDTMIterator(); in nodelist() 353 return nodelist; in nodelist()
|
D | XObject.java | 452 public NodeList nodelist() throws javax.xml.transform.TransformerException in nodelist() method in XObject
|
/external/apache-xml/src/main/java/org/apache/xpath/jaxp/ |
D | JAXPExtensionsProvider.java | 137 argList.add ( i, ((XNodeSet)argument).nodelist() ); in extFunction() 188 argList.add ( i, ((XNodeSet)argument).nodelist() ); in extFunction()
|
D | XPathExpressionImpl.java | 357 return resultObject.nodelist(); in getResultAsType()
|
D | XPathImpl.java | 329 return resultObject.nodelist(); in getResultAsType()
|
/external/dtc/ |
D | dtc-parser.y | 53 struct node *nodelist; member 89 %type <nodelist> subnodes
|
/external/fio/ |
D | options.c | 623 char *nodelist; in str_numa_mpol_cb() local 629 nodelist = strchr(input, ':'); in str_numa_mpol_cb() 630 if (nodelist) { in str_numa_mpol_cb() 632 *nodelist++ = '\0'; in str_numa_mpol_cb() 651 if (nodelist) { in str_numa_mpol_cb() 652 char *rest = nodelist; in str_numa_mpol_cb() 668 if (!nodelist) in str_numa_mpol_cb() 669 nodelist = strdup("all"); in str_numa_mpol_cb() 676 if (nodelist) { in str_numa_mpol_cb() 685 if (!nodelist) { in str_numa_mpol_cb() [all …]
|
D | HOWTO | 2221 <mode>[:<nodelist>]
|
/external/python/cpython2/Tools/scripts/ |
D | texi2html.py | 1717 self.nodelist = [] 1733 self.nodeindex[name] = len(self.nodelist) 1734 self.nodelist.append(node) 1770 (topname,topnext,topprev,topup,topfile) = self.nodelist[0] 1859 if self.nodelist: 1860 nodename, dummy, dummy, dummy, dummy = self.nodelist[0] 1864 for node in self.nodelist: 1909 return self.nodelist[index]
|
/external/python/cpython2/Lib/test/ |
D | test_minidom.py | 367 nodelist = doc.getElementsByTagNameNS(nsuri, lname) 368 self.confirm(len(nodelist) == 0)
|
/external/python/cpython2/Doc/library/ |
D | xml.dom.rst | 183 | :class:`NodeList` | :ref:`dom-nodelist-objects` | Interface for a sequence of … 416 .. _dom-nodelist-objects:
|
/external/libxml2/ |
D | ChangeLog | 17599 need to compare nodelist still ...
|