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

1 2 3

  /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 35 * The method hasAttributes returns whether this node (if it is an element) has
37 * hasAttributes returns false. Retreive another element node with attributes.
38 * Verify if hasAttributes returns true.
78 boolean hasAttributes;
82 hasAttributes = element.hasAttributes();
83 assertFalse("nodehasattributes01_1", hasAttributes);
86 hasAttributes = element.hasAttributes();
87 assertTrue("nodehasattributes01_2", hasAttributes);
    [all...]
HasAttributes.java 31 * The "hasAttributes()" method for a node should return false if the node does
33 * "hasAttributes()" method. The method should return false since the node does
41 public final class HasAttributes extends DOMTestCase {
78 state = addrNode.hasAttributes();
89 state = addrNode.hasAttributes();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/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 75 getXmlNode().hasAttributes()) {
  /external/llvm/include/llvm/IR/
Attributes.h 290 bool hasAttributes(unsigned Index) const;
436 bool hasAttributes() const;
440 bool hasAttributes(AttributeSet A, uint64_t Index) const;
  /external/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp 279 if (PAL.hasAttributes(AttributeSet::FunctionIndex))
772 hasAttributes(AttributeFuncs::
777 if (RAttrs.hasAttributes(AttributeSet::ReturnIndex))
795 if (PAL.hasAttributes(i + 1)) {
807 if (PAL.hasAttributes(AttributeSet::FunctionIndex))
852 if (RAttrs.hasAttributes(AttributeSet::ReturnIndex))
    [all...]
ArgumentPromotion.cpp 521 if (PAL.hasAttributes(AttributeSet::ReturnIndex))
540 if (attrs.hasAttributes(ArgIndex)) {
596 if (PAL.hasAttributes(AttributeSet::FunctionIndex))
643 if (CallPAL.hasAttributes(AttributeSet::ReturnIndex))
656 if (CallPAL.hasAttributes(ArgIndex)) {
719 if (CallPAL.hasAttributes(ArgIndex)) {
727 if (CallPAL.hasAttributes(AttributeSet::FunctionIndex))
    [all...]
  /packages/apps/Mms/src/com/android/mms/dom/
ElementImpl.java 151 public boolean hasAttributes() {
  /external/apache-xml/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/Source/WebCore/dom/
Element.h 127 bool hasAttributes() const;
446 inline bool Node::hasAttributes() const
448 return isElementNode() && toElement(this)->hasAttributes();
Node.idl 92 boolean hasAttributes();
  /external/llvm/lib/IR/
Attributes.cpp 596 if (!B.hasAttributes())
768 return pImpl && hasAttributes(Idx) ?
776 return pImpl && hasAttributes(ReturnIndex) ?
785 return pImpl && hasAttributes(FunctionIndex) ?
803 bool AttributeSet::hasAttributes(unsigned Index) const {
805 return ASN ? ASN->hasAttributes() : false;
    [all...]
AsmWriter.cpp 514 if (FnAttrs.hasAttributes(AttributeSet::FunctionIndex))
559 if (Attrs.hasAttributes(AttributeSet::FunctionIndex))
564 if (Attrs.hasAttributes(AttributeSet::FunctionIndex))
684 assert(AS.hasAttributes(AttributeSet::FunctionIndex) &&
    [all...]
AttributeImpl.h 174 bool hasAttributes() const { return !AttrList.empty(); }
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp     [all...]
  /external/webkit/Source/WebKit/win/
DOMCoreClasses.h 207 virtual HRESULT STDMETHODCALLTYPE hasAttributes(
431 virtual HRESULT STDMETHODCALLTYPE hasAttributes(
432 /* [retval][out] */ BOOL* result) { return DOMNode::hasAttributes(result); }
662 virtual HRESULT STDMETHODCALLTYPE hasAttributes(
663 /* [retval][out] */ BOOL* result) { return DOMNode::hasAttributes(result); }
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
NodeImpl.java 136 public boolean hasAttributes() {
508 if (!node.hasAttributes()) {
573 if (!node.hasAttributes()) {

Completed in 514 milliseconds

1 2 3