HomeSort by relevance Sort by last modified time
    Searched refs:isId (Results 1 - 25 of 62) sorted by null

1 2 3

  /libcore/luni/src/main/java/org/w3c/dom/
Attr.java 270 * <code>isId</code> will always return true.
273 public boolean isId();
Element.java 370 * 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)
    [all...]
  /external/webkit/Source/WebCore/dom/
Attr.idl 43 readonly attribute boolean isId;
Attr.h 56 bool isId() const;
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
AttrImpl.java 39 boolean isId;
119 public boolean isId() {
120 return isId;
ElementImpl.java 134 if (attr.isId() && name.equals(attr.getValue())) {
393 public void setIdAttribute(String name, boolean isId) throws DOMException {
399 attr.isId = isId;
403 boolean isId) throws DOMException {
409 attr.isId = isId;
412 public void setIdAttributeNode(Attr idAttr, boolean isId) throws DOMException {
413 ((AttrImpl) idAttr).isId = isId;
    [all...]
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
attrisid07.js 79 The method isId returns whether this attribute is known to be of type ID or not.
82 isId returns true. The use of Element.setIdAttributeNS() makes 'isId' a user-determined ID attribute.
84 Since user data assocated to the imported node is not carried over, verify that the method isId
90 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Attr-isId
115 id = attr.isId;
119 id = attrImported.isId;
elementsetidattribute10.js 79 isId values. Verify by calling isId on the attribute.
108 id = attr.isId;
112 id = attr.isId;
116 id = attr.isId;
elementsetidattributens01.js 80 isId on the attribute node and getElementById on document node. Call setIdAttributeNS with isId=false to reset.
81 isId should now return false.
110 id = attr.isId;
118 id = attr.isId;
attrisid06.js 78 Invoke isId on a new Attr node. Check if the value returned is false.
82 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Attr-isId
97 id = attr.isId;
elementsetidattributenode01.js 79 isID on the attribute node and getElementById on document node. Call setIdAttributeNode again with isId=false
80 to reset. Invoke isId on the attribute node should return false.
109 id = attr.isId;
117 id = attr.isId;
elementsetidattributenode02.js 79 isID on the attribute node and getElementById on document node. Call setIdAttributeNode again with isId=false
80 to reset. Invoke isId on the attribute node should return false.
109 id = attr.isId;
117 id = attr.isId;
elementsetidattributenode03.js 79 attribute node. Verify by calling isID on the attribute node and getElementById on document node.
80 Call setIdAttributeNode again with isId=false to reset. Invoke isId on the attribute node should return false.
111 id = attr.isId;
119 id = attr.isId;
elementsetidattributenode04.js 79 attribute node. Verify by calling isID on the attribute node and getElementById on document node.
80 Call setIdAttributeNode again with isId=false to reset. Invoke isId on the attribute node should return false.
111 id = attr.isId;
119 id = attr.isId;
elementsetidattributenode10.js 84 as a parameter . Verify by calling isId on the attribute node and getElementById on document node.
85 Reset by invoking setIdAttributeNode with isId=false.
114 id = attr.isId;
122 id = attr.isId;
elementsetidattributens02.js 80 isID on the attribute node and getElementById on document node. Assume the grammar has not defined any
81 element of typeID. Call setIdAttributeNS with isId=false to reset. Method isId should now return false.
111 id = attr.isId;
120 id = attr.isId;
elementsetidattributens03.js 79 isID on the attribute node and getElementById on document node. Call setIdAttributeNS with isId=false to reset.
80 Method isId should now return false.
110 id = attr.isId;
118 id = attr.isId;
elementsetidattributens04.js 84 isID on the attribute node and getElementById on document node.
85 Call setIdAttributeNS with isId=false to reset. Method isId should now return false.
115 id = attr.isId;
123 id = attr.isId;
elementsetidattributens05.js 84 isID on the attribute node and getElementById on document node.
85 Call setIdAttributeNS with isId=false to reset. Method isId should now return false.
115 id = attr.isId;
123 id = attr.isId;
elementsetidattribute08.js 79 Verify by calling isID on the attributes and getElementById with the unique value "No" on document.
114 id = attr.isId;
120 id = attr.isId;
126 id = attr.isId;
elementsetidattributens10.js 84 isId on the attributes and getElementById with different values on document node.
116 id = attr.isId;
122 id = attr.isId;
elementsetidattributens11.js 84 isId on the attributes node and getElementById with different values on document node.
116 id = attr.isId;
122 id = attr.isId;
  /packages/apps/Mms/src/com/android/mms/dom/
ElementImpl.java 159 public void setIdAttribute(String name, boolean isId) throws DOMException {
164 boolean isId) throws DOMException {
168 public void setIdAttributeNode(Attr idAttr, boolean isId)
AttrImpl.java 105 public boolean isId() {
  /frameworks/base/tools/aapt/
ResourceTable.h 139 bool isId = false);
151 bool isId = false,
257 Item() : isId(false), format(ResTable_map::TYPE_ANY), bagKeyId(0), evaluating(false)
265 isId(o.isId), value(o.value), style(o.style),
273 isId = o.isId;
283 mutable bool isId;
325 bool replace=false, bool isId = false,

Completed in 294 milliseconds

1 2 3