Searched refs:nodeList (Results 1 - 9 of 9) 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/Bytecodes/src/com/sun/hotspot/igv/bytecodes/
H A DBytecodeNode.java59 List<InputNode> nodeList = selector.selectMultiple(matcher);
60 if (nodeList.size() > 0) {
62 for (InputNode n : nodeList) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/
H A DDOMPrinter.java115 NodeList nodeList = node.getChildNodes();
116 if (nodeList != null) {
117 for (int i = 0; i < nodeList.getLength(); i++) {
118 print(nodeList.item(i));
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/transforms/implementations/
H A DTransformXPath2Filter.java266 * @param nodeList
270 static boolean rooted(Node currentNode, Set nodeList ) {
271 if (nodeList.isEmpty()) {
274 if (nodeList.contains(currentNode)) {
277 Iterator it=nodeList.iterator();
290 * @param nodeList
294 static boolean inList(Node currentNode, Set nodeList ) {
295 return nodeList.contains(currentNode);
/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/xml/internal/dtm/ref/
H A DDTMNodeProxy.java790 NodeList nodeList = retNode.getChildNodes();
791 for (int i = 0; i < nodeList.getLength(); i++)
793 traverseChildren(listVector, nodeList.item(i), tagname,
839 NodeList nodeList = tempNode.getChildNodes();
840 for (int i = 0; i < nodeList.getLength(); i++)
842 traverseChildren(listVector, nodeList.item(i), tagname,
922 NodeList nodeList = retNode.getChildNodes();
923 for(int i = 0; i < nodeList.getLength(); i++)
925 traverseChildren(listVector, nodeList.item(i), namespaceURI, localName, isNamespaceURIWildCard, isLocalNameWildCard);
/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 2138 milliseconds