Home | History | Annotate | Download | only in dom

Lines Matching refs:localName

45     String localName;
70 private int indexOfAttributeNS(String namespaceURI, String localName) {
74 && Objects.equal(localName, attr.getLocalName())) {
92 public String getAttributeNS(String namespaceURI, String localName) {
93 Attr attr = getAttributeNodeNS(namespaceURI, localName);
112 public AttrImpl getAttributeNodeNS(String namespaceURI, String localName) {
113 int i = indexOfAttributeNS(namespaceURI, localName);
167 public NodeList getElementsByTagNameNS(String namespaceURI, String localName) {
169 getElementsByTagNameNS(result, namespaceURI, localName);
175 return namespaceAware ? localName : null;
199 ? prefix + ":" + localName
200 : localName;
207 public boolean hasAttributeNS(String namespaceURI, String localName) {
208 return indexOfAttributeNS(namespaceURI, localName) != -1;
224 public void removeAttributeNS(String namespaceURI, String localName)
226 int i = indexOfAttributeNS(namespaceURI, localName);
334 private int indexOfItemNS(String namespaceURI, String localName) {
335 return ElementImpl.this.indexOfAttributeNS(namespaceURI, localName);
342 public Node getNamedItemNS(String namespaceURI, String localName) {
343 return ElementImpl.this.getAttributeNodeNS(namespaceURI, localName);
360 public Node removeNamedItemNS(String namespaceURI, String localName)
362 int i = indexOfItemNS(namespaceURI, localName);
402 public void setIdAttributeNS(String namespaceURI, String localName,
404 AttrImpl attr = getAttributeNodeNS(namespaceURI, localName);
407 "No such attribute: " + namespaceURI + " " + localName);