Searched defs:nodeList (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/lib/
H A DNodeInfo.java68 * @param nodeList a <code>NodeList</code> value
71 public static String systemId(NodeList nodeList) argument
73 if (nodeList == null || nodeList.getLength() == 0)
76 Node node = nodeList.item(0);
116 * @param nodeList a <code>NodeList</code> value
119 public static String publicId(NodeList nodeList) argument
121 if (nodeList == null || nodeList.getLength() == 0)
124 Node node = nodeList
177 lineNumber(NodeList nodeList) argument
235 columnNumber(NodeList nodeList) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/
H A DXNodeSetForDOM.java63 public XNodeSetForDOM(NodeList nodeList, XPathContext xctxt) argument
66 m_origObj = nodeList;
71 // m_obj=new com.sun.org.apache.xpath.internal.NodeSetDTM(nodeList, xctxt);
72 com.sun.org.apache.xpath.internal.NodeSetDTM nsdtm=new com.sun.org.apache.xpath.internal.NodeSetDTM(nodeList, xctxt);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/
H A DGraph.java42 private List<Node<N, E>> nodeList; field in class:Graph
47 nodeList = new ArrayList<Node<N, E>>();
56 nodeList.add(n);
83 return Collections.unmodifiableList(nodeList);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DNodeSetDTM.java162 public NodeSetDTM(NodeList nodeList, XPathContext xctxt) argument
169 int n = nodeList.getLength();
172 Node node = nodeList.item(i);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/
H A DBasisLibrary.java1161 org.w3c.dom.NodeList nodeList,
1164 final int n = nodeList.getLength();
1170 org.w3c.dom.Node node = nodeList.item(i);
1195 org.w3c.dom.NodeList nodeList,
1206 int[] proxyNodes = new int[nodeList.getLength()];
1209 for (int i = 0; i < nodeList.getLength(); ++i) {
1210 org.w3c.dom.Node node = nodeList.item(i);
1309 for (int i = 0; i < nodeList.getLength(); ++i) {
1314 org.w3c.dom.Node node = nodeList.item(i);
1160 nodeList2IteratorUsingHandleFromNode( org.w3c.dom.NodeList nodeList, Translet translet, DOM dom) argument
1194 nodeList2Iterator( org.w3c.dom.NodeList nodeList, Translet translet, DOM dom) argument

Completed in 39 milliseconds