Home | History | Annotate | Download | only in dom

Lines Matching refs:namespaceURI

43     String namespaceURI;
49 ElementImpl(DocumentImpl document, String namespaceURI, String qualifiedName) {
51 setNameNS(this, namespaceURI, qualifiedName);
70 private int indexOfAttributeNS(String namespaceURI, String localName) {
73 if (Objects.equal(namespaceURI, attr.getNamespaceURI())
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);
180 return namespaceURI;
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);
257 public void setAttributeNS(String namespaceURI, String qualifiedName,
259 Attr attr = getAttributeNodeNS(namespaceURI, qualifiedName);
262 attr = document.createAttributeNS(namespaceURI, qualifiedName);
321 this.prefix = validatePrefix(prefix, namespaceAware, namespaceURI);
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);