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

1 2 3 4

  /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...]
  /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 326 bool hasAttributes(unsigned Index) const;
478 bool hasAttributes() const;
482 bool hasAttributes(AttributeSet A, uint64_t Index) const;
  /external/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp 254 if (PAL.hasAttributes(AttributeSet::FunctionIndex))
766 if (PAL.hasAttributes(i + 1)) {
    [all...]
ArgumentPromotion.cpp 613 if (PAL.hasAttributes(AttributeSet::ReturnIndex))
631 if (attrs.hasAttributes(ArgIndex)) {
692 if (PAL.hasAttributes(AttributeSet::FunctionIndex))
749 if (CallPAL.hasAttributes(AttributeSet::ReturnIndex))
762 if (CallPAL.hasAttributes(ArgIndex)) {
    [all...]
  /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/llvm/lib/IR/
Attributes.cpp 659 if (!B.hasAttributes())
879 return pImpl && hasAttributes(Index) ?
887 return pImpl && hasAttributes(ReturnIndex) ?
896 return pImpl && hasAttributes(FunctionIndex) ?
914 bool AttributeSet::hasAttributes(unsigned Index) const {
916 return ASN ? ASN->hasAttributes() : false;
    [all...]
AttributeImpl.h 161 bool hasAttributes() const { return NumAttrs != 0; }
AsmWriter.cpp 754 if (FnAttrs.hasAttributes(AttributeSet::FunctionIndex))
790 if (Attrs.hasAttributes(AttributeSet::FunctionIndex))
795 if (Attrs.hasAttributes(AttributeSet::FunctionIndex))
926 assert(AS.hasAttributes(AttributeSet::FunctionIndex) &&
    [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()) {
ElementImpl.java 212 public boolean hasAttributes() {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/mock/
MockXmlNode.java 190 public boolean hasAttributes() {
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp     [all...]
  /external/apache-xml/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/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNodeProxy.java 1173 public boolean hasAttributes()
    [all...]
  /external/clang/include/clang/Sema/
DeclSpec.h 730 bool hasAttributes() const { return !Attrs.empty(); }
    [all...]

Completed in 1043 milliseconds

1 2 3 4