Home | History | Annotate | Download | only in refactoring

Lines Matching refs:attributeNode

423             for (Node attributeNode : attributeNodes) {
424 String prefix = attributeNode.getPrefix();
426 String name = attributeNode.getNodeName();
427 String value = attributeNode.getNodeValue();
449 for (Node attributeNode : attributeNodes) {
450 String prefix = attributeNode.getPrefix();
452 String name = attributeNode.getNodeName();
453 String value = attributeNode.getNodeValue();
489 Node attributeNode = attributes.item(i);
491 String prefix = attributeNode.getPrefix();
493 result.add((Attr) attributeNode);
504 Node attributeNode = attributes.item(i);
506 String name = attributeNode.getLocalName();
508 && ANDROID_URI.equals(attributeNode.getNamespaceURI())) {
509 result.add((Attr) attributeNode);