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

1 2

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
transformer.py 179 def file_input(self, nodelist):
180 doc = self.get_docstring(nodelist, symbol.file_input)
186 for node in nodelist[i:]:
191 def eval_input(self, nodelist):
194 return Expression(self.com_node(nodelist[0]))
196 def decorator_name(self, nodelist):
197 listlen = len(nodelist)
200 item = self.atom_name(nodelist)
203 assert nodelist[i][0] == token.DOT
204 assert nodelist[i + 1][0] == token.NAM
    [all...]
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...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
transformer.py 179 def file_input(self, nodelist):
180 doc = self.get_docstring(nodelist, symbol.file_input)
186 for node in nodelist[i:]:
191 def eval_input(self, nodelist):
194 return Expression(self.com_node(nodelist[0]))
196 def decorator_name(self, nodelist):
197 listlen = len(nodelist)
200 item = self.atom_name(nodelist)
203 assert nodelist[i][0] == token.DOT
204 assert nodelist[i + 1][0] == token.NAM
    [all...]
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/chromium_org/third_party/libxslt/libexslt/
saxon.c 209 xmlNodeSetPtr nodelist; local
220 nodelist = obj->nodesetval;
221 if ((nodelist == NULL) || (nodelist->nodeNr <= 0)) {
226 cur = nodelist->nodeTab[0];
227 for (i = 1;i < nodelist->nodeNr;i++) {
228 int ret = xmlXPathCmpNodes(cur, nodelist->nodeTab[i]);
230 cur = nodelist->nodeTab[i];
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/
RSSFeedUpdateEntryTask.java 38 import org.w3c.dom.NodeList;
215 NodeList nodelist = getNodeList(document, xpath); local
216 // Process the elements in the nodelist
217 if (nodelist != null && nodelist.getLength()>0) {
218 for (int i=0; i<nodelist.getLength(); i++) {
219 Node node = (Node)nodelist.item(i);
223 aNode = (Attr)nodelist.item(i);
228 aNode = (Element)nodelist.item(i)
278 NodeList nodelist = getNodeList(document, xpath.substring(0, xpath.lastIndexOf("\/"))); local
297 NodeList nodelist = null; local
    [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...]
XNodeSet.java 30 import org.w3c.dom.NodeList;
326 * Cast result object to a nodelist.
338 * Cast result object to a nodelist.
340 * @return a NodeList.
344 public NodeList nodelist() throws javax.xml.transform.TransformerException method in class:XNodeSet
346 org.apache.xml.dtm.ref.DTMNodeList nodelist = new org.apache.xml.dtm.ref.DTMNodeList(this); local
351 XNodeSet clone = (XNodeSet)nodelist.getDTMIterator();
353 return nodelist;
381 * Cast result object to a nodelist
    [all...]
XObject.java 38 import org.w3c.dom.NodeList;
403 * Cast result object to a nodelist. Always issues an error.
413 new Object[]{ getTypeString() }); //"Can not convert "+getTypeString()+" to a NodeList!");
430 * Cast result object to a nodelist. Always issues an error.
440 new Object[]{ getTypeString() }); //"Can not convert "+getTypeString()+" to a NodeList!");
446 * Cast result object to a nodelist. Always issues an error.
452 public NodeList nodelist() throws javax.xml.transform.TransformerException method in class:XObject
456 new Object[]{ getTypeString() }); //"Can not convert "+getTypeString()+" to a NodeList!");
463 * Cast result object to a nodelist. Always issues an error
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
NodeSet.java 30 import org.w3c.dom.NodeList;
37 * NodeList, or NodeIterator. However, in order for it to
38 * act as a NodeVector or NodeList, it's required that
52 * <p>Thought: Should NodeSet really implement NodeList and NodeIterator,
60 implements NodeList, NodeIterator, Cloneable, ContextNodeList
64 * Create an empty nodelist.
85 * given nodelist into it.
87 * @param nodelist List of Nodes to be made members of the new set.
89 public NodeSet(NodeList nodelist)
    [all...]
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...]
CachedXPathAPI.java 31 import org.w3c.dom.NodeList;
151 * Use an XPath string to select a nodelist.
167 * Use an XPath string to select a nodelist.
190 * Use an XPath string to select a nodelist.
199 public NodeList selectNodeList(Node contextNode, String str)
206 * Use an XPath string to select a nodelist.
216 public NodeList selectNodeList(
224 // Return a NodeList.
225 return list.nodelist();
233 * @return An XObject, which can be used to obtain a string, number, nodelist, etc, should never be null
    [all...]
XPathAPI.java 31 import org.w3c.dom.NodeList;
96 * Use an XPath string to select a nodelist.
112 * Use an XPath string to select a nodelist.
135 * Use an XPath string to select a nodelist.
144 public static NodeList selectNodeList(Node contextNode, String str)
151 * Use an XPath string to select a nodelist.
161 public static NodeList selectNodeList(
169 // Return a NodeList.
170 return list.nodelist();
178 * @return An XObject, which can be used to obtain a string, number, nodelist, etc, should never be null
    [all...]
  /external/chromium_org/ppapi/generators/
idl_c_header.py 44 nodelist = self.struct_map.get(typeref.GetName(), [])
45 nodelist.append(node)
46 self.struct_map[typeref.GetName()] = nodelist
51 nodelist = self.struct_map.get(typeref.GetName(), [])
52 nodelist.append(node)
53 self.interface_map[typeref.GetName()] = nodelist
idl_parser.py     [all...]
  /external/chromium_org/third_party/libxslt/libxslt/
functions.c 402 xmlNodeSetPtr nodelist = NULL; local
524 nodelist = xsltGetKey(tctxt, key, keyURI, value);
529 xmlXPathNodeSetMerge(NULL, nodelist)));
665 xmlNodeSetPtr nodelist; local
675 nodelist = obj->nodesetval;
676 if ((nodelist == NULL) || (nodelist->nodeNr <= 0)) {
681 cur = nodelist->nodeTab[0];
682 for (i = 1;i < nodelist->nodeNr;i++) {
683 ret = xmlXPathCmpNodes(cur, nodelist->nodeTab[i])
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
JAXPExtensionsProvider.java 134 // XNodeSet object() returns NodeVector and not NodeList
135 // Explicitly getting NodeList by using nodelist()
137 argList.add ( i, ((XNodeSet)argument).nodelist() );
185 // XNodeSet object() returns NodeVector and not NodeList
186 // Explicitly getting NodeList by using nodelist()
188 argList.add ( i, ((XNodeSet)argument).nodelist() );
XPathExpressionImpl.java 357 return resultObject.nodelist();
XPathImpl.java 329 return resultObject.nodelist();
  /external/chromium_org/chrome/browser/resources/
about_stats.js 41 function filterMatching(text, nodelist, functionToGetNameNode) {
43 for (var i = 0, node; node = nodelist[i]; i++) {
  /external/fio/
options.c 586 char *nodelist; local
592 nodelist = strchr(input, ':');
593 if (nodelist) {
595 *nodelist++ = '\0';
612 * Insist on a nodelist of one node only
614 if (nodelist) {
615 char *rest = nodelist;
629 * Default to online nodes with memory if no nodelist
631 if (!nodelist)
632 nodelist = strdup("all")
    [all...]
  /cts/tools/utils/
DescriptionGenerator.java 39 import org.w3c.dom.NodeList;
352 NodeList nodelist = node.getChildNodes(); local
354 for (int i = 0; i < nodelist.getLength(); i++) {
355 nodes.add(nodelist.item(i));
405 NodeList children = elem.getChildNodes();
  /external/chromium_org/third_party/WebKit/Tools/qunit/qunit/
qunit.js     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_minidom.py 373 nodelist = doc.getElementsByTagNameNS(nsuri, lname)
374 self.confirm(len(nodelist) == 0)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_minidom.py 373 nodelist = doc.getElementsByTagNameNS(nsuri, lname)
374 self.confirm(len(nodelist) == 0)
    [all...]

Completed in 464 milliseconds

1 2