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

1 2

  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
nodehasattributes01.java 34 * The method hasAttributes returns whether this node (if it is an element) has any attributes.
35 * Retreive an element node without attributes. Verify if hasAttributes returns false.
36 * Retreive another element node with attributes. Verify if hasAttributes returns true.
66 boolean hasAttributes;
70 hasAttributes = element.hasAttributes();
71 assertFalse("nodehasattributes01_1", hasAttributes);
74 hasAttributes = element.hasAttributes();
75 assertTrue("nodehasattributes01_2", hasAttributes);
    [all...]
nodehasattributes02.java 47 * The method hasAttributes returns whether this node (if it is an element) has any attributes.
48 * Retrieve the docType node. Since this is not an element node check if hasAttributes returns
78 boolean hasAttributes;
81 hasAttributes = docType.hasAttributes();
82 assertFalse("nodehasattributes02", hasAttributes);
nodehasattributes03.java 34 * The method hasAttributes returns whether this node (if it is an element) has any attributes.
35 * Retreive an element node with a default attributes. Verify if hasAttributes returns true.
65 boolean hasAttributes;
70 hasAttributes = element.hasAttributes();
71 assertTrue("hasAttributes", hasAttributes);
nodehasattributes04.java 34 * The method hasAttributes returns whether this node (if it is an element) has any attributes.
37 * if it has attributes using hasAttributes.
82 boolean hasAttributes;
93 hasAttributes = elementTest.hasAttributes();
94 assertTrue("nodehasattributes04", hasAttributes);
hasAttributes01.java 34 * The "hasAttributes()" method for a node should
36 * Retrieve the first "name" node and invoke the "hasAttributes()" method.
71 state = addrNode.hasAttributes();
hasAttributes02.java 34 * The "hasAttributes()" method for a node should
36 * Retrieve the first address node and the "hasAttributes()" method
71 state = addrNode.hasAttributes();
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NodeHasAttributes.java 40 * The method hasAttributes returns whether this node (if it is an element) has
42 * hasAttributes returns false. Retreive another element node with attributes.
43 * Verify if hasAttributes returns true.
83 method = "hasAttributes",
90 boolean hasAttributes;
94 hasAttributes = element.hasAttributes();
95 assertFalse("nodehasattributes01_1", hasAttributes);
98 hasAttributes = element.hasAttributes();
    [all...]
HasAttributes.java 36 * The "hasAttributes()" method for a node should return false if the node does
38 * "hasAttributes()" method. The method should return false since the node does
47 public final class HasAttributes extends DOMTestCase {
78 notes = "Verifies that hasAttributes method returns false value.",
79 method = "hasAttributes",
90 state = addrNode.hasAttributes();
95 notes = "Verifies that hasAttributes method returns true value.",
96 method = "hasAttributes",
107 state = addrNode.hasAttributes();
  /external/webkit/WebCore/bindings/v8/custom/
V8NamedNodesCollection.cpp 49 if (node->hasAttributes() && node->attributes()->id() == id)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/resources/uimodel/
UiItemElementNode.java 45 if (xmlNode != null && xmlNode instanceof Element && xmlNode.hasAttributes()) {
  /libcore/luni/src/main/java/org/w3c/dom/
Node.java 569 public boolean hasAttributes();
    [all...]
  /packages/apps/Mms/src/com/android/mms/dom/smil/parser/
SmilXmlSerializer.java 52 if (element.hasAttributes()) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiManifestElementNode.java 74 getXmlNode().hasAttributes()) {
  /external/webkit/WebCore/dom/
Element.h 107 bool hasAttributes() const;
332 inline bool Node::hasAttributes() const
334 return isElementNode() && static_cast<const Element*>(this)->hasAttributes();
Node.idl 91 boolean hasAttributes();
  /packages/apps/Mms/src/com/android/mms/dom/
ElementImpl.java 151 public boolean hasAttributes() {
NodeImpl.java 147 public boolean hasAttributes() {
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DOM2DTMdefaultNamespaceDeclarationNode.java 79 public boolean hasAttributes() {return false;}
326 if (this.hasAttributes()) {
416 if (this.hasAttributes()) {
  /external/webkit/WebKit/win/
DOMCoreClasses.h 208 virtual HRESULT STDMETHODCALLTYPE hasAttributes(
434 virtual HRESULT STDMETHODCALLTYPE hasAttributes(
435 /* [retval][out] */ BOOL *result) { return DOMNode::hasAttributes(result); }
666 virtual HRESULT STDMETHODCALLTYPE hasAttributes(
667 /* [retval][out] */ BOOL *result) { return DOMNode::hasAttributes(result); }
    [all...]
DOMHTMLClasses.h 289 virtual HRESULT STDMETHODCALLTYPE hasAttributes(
290 /* [retval][out] */ BOOL *result) { return DOMDocument::hasAttributes(result); }
563 virtual HRESULT STDMETHODCALLTYPE hasAttributes(
564 /* [retval][out] */ BOOL *result) { return DOMElement::hasAttributes(result); }
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
NodeImpl.java 133 public boolean hasAttributes() {
514 if (!node.hasAttributes()) {
579 if (!node.hasAttributes()) {
  /external/webkit/WebKit/qt/Api/
qwebelement.h 75 bool hasAttributes() const;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/mock/
MockXmlNode.java 177 public boolean hasAttributes() {
  /libcore/luni/src/main/java/org/apache/xml/utils/
UnImplNode.java 409 public boolean hasAttributes()
412 error(XMLErrorResources.ER_FUNCTION_NOT_SUPPORTED); //"hasAttributes not supported!");
    [all...]
  /external/webkit/WebCore/bindings/v8/
V8GCController.cpp 277 if (root == node && !node->hasChildNodes() && !node->hasAttributes())

Completed in 869 milliseconds

1 2