Searched defs:isId (Results 1 - 4 of 4) sorted by relevance

/libcore/luni/src/main/java/org/w3c/dom/
H A DAttr.java270 * <code>isId</code> will always return true.
273 public boolean isId(); method in interface:Attr
H A DElement.java370 * If the parameter <code>isId</code> is <code>true</code>, this method
372 * . This affects the value of <code>Attr.isId</code> and the behavior
377 * <code>isId</code> to undeclare an attribute for being a
382 * @param isId Whether the attribute is a of type ID.
390 boolean isId)
394 * If the parameter <code>isId</code> is <code>true</code>, this method
396 * . This affects the value of <code>Attr.isId</code> and the behavior
401 * <code>isId</code> to undeclare an attribute for being a
405 * @param isId Whether the attribute is a of type ID.
414 boolean isId)
389 setIdAttribute(String name, boolean isId) argument
412 setIdAttributeNS(String namespaceURI, String localName, boolean isId) argument
435 setIdAttributeNode(Attr idAttr, boolean isId) argument
[all...]
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DAttrImpl.java39 boolean isId; field in class:AttrImpl
119 public boolean isId() { method in class:AttrImpl
120 return isId;
H A DElementImpl.java134 if (attr.isId() && name.equals(attr.getValue())) {
393 public void setIdAttribute(String name, boolean isId) throws DOMException { argument
399 attr.isId = isId;
403 boolean isId) throws DOMException {
409 attr.isId = isId;
412 public void setIdAttributeNode(Attr idAttr, boolean isId) throws DOMException { argument
413 ((AttrImpl) idAttr).isId = isId;
402 setIdAttributeNS(String namespaceURI, String localName, boolean isId) argument
[all...]

Completed in 99 milliseconds