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

  /system/core/sh/
nodes.c.pat 58 STATIC void sizenodelist(struct nodelist *);
60 STATIC struct nodelist *copynodelist(struct nodelist *);
96 struct nodelist *lp;
99 funcblocksize += SHELL_ALIGN(sizeof(struct nodelist));
118 STATIC struct nodelist *
120 struct nodelist *lp;
122 struct nodelist *start;
123 struct nodelist **lpp;
129 SHELL_ALIGN(sizeof(struct nodelist));
    [all...]
nodes.h 52 struct nodelist *cmdlist;
98 struct nodelist *backquote;
152 struct nodelist { struct
153 struct nodelist *next;
mknodes.sh 91 nodelist ) type="struct nodelist *";;
111 echo "struct nodelist {"
112 echo " struct nodelist *next;"
166 nodelist ) fn=sizenodelist;;
200 nodelist ) fn="copynodelist(";;
nodes.c 89 STATIC void sizenodelist(struct nodelist *);
91 STATIC struct nodelist *copynodelist(struct nodelist *);
198 struct nodelist *lp;
201 funcblocksize += SHELL_ALIGN(sizeof(struct nodelist));
299 STATIC struct nodelist *
301 struct nodelist *lp;
303 struct nodelist *start;
304 struct nodelist **lpp;
310 SHELL_ALIGN(sizeof(struct nodelist));
    [all...]
show.c 75 struct nodelist *lp;
169 struct nodelist *bqlist;
parser.c 97 struct nodelist *backquotelist;
250 struct nodelist *lp, *prev;
263 lp = (struct nodelist *)stalloc(sizeof (struct nodelist));
268 lp = (struct nodelist *)stalloc(sizeof (struct nodelist));
914 struct nodelist *bqlist;
1366 struct nodelist **nlpp;
    [all...]
expand.c 89 struct nodelist *argbackq; /* list of back quote expressions */
417 struct nodelist *saveargbackq;
490 struct nodelist *saveargbackq = argbackq;
eval.c 492 struct nodelist *lp;
jobs.c 1247 struct nodelist *lp;
  /dalvik/libcore/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...]
  /dalvik/libcore/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...]
  /dalvik/libcore/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();
  /cts/tools/utils/
DescriptionGenerator.java 38 import org.w3c.dom.NodeList;
329 NodeList nodelist = node.getChildNodes(); local
331 for (int i = 0; i < nodelist.getLength(); i++) {
332 nodes.add(nodelist.item(i));
382 NodeList children = elem.getChildNodes();

Completed in 188 milliseconds