HomeSort by relevance Sort by last modified time
    Searched refs:Element (Results 176 - 200 of 833) sorted by null

1 2 3 4 5 6 78 91011>>

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
nodeattributenodevalue.java 66 Element testAddr;
71 testAddr = (Element) elementList.item(0);
nodecdatasectionnodeattribute.java 66 Element cdataName;
72 cdataName = (Element) elementList.item(1);
nodecdatasectionnodename.java 67 Element cdataName;
73 cdataName = (Element) elementList.item(1);
nodeentityreferencenodeattributes.java 61 Element entRefAddr;
67 entRefAddr = (Element) elementList.item(1);
nodeentityreferencenodename.java 66 Element entRefAddr;
72 entRefAddr = (Element) elementList.item(1);
nodeentityreferencenodetype.java 65 Element entRefAddr;
70 entRefAddr = (Element) elementList.item(1);
nodeentityreferencenodevalue.java 66 Element entRefAddr;
72 entRefAddr = (Element) elementList.item(1);
nodetextnodename.java 66 Element testAddr;
71 testAddr = (Element) elementList.item(0);
nodetextnodetype.java 65 Element testAddr;
70 testAddr = (Element) elementList.item(0);
nodetextnodevalue.java 66 Element testAddr;
71 testAddr = (Element) elementList.item(0);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
getAttributeNS03.java 37 * Retrieve the first "emp:address" element.
71 Element testAddr;
75 testAddr = (Element) elementList.item(0);
getAttributeNodeNS01.java 37 * Retrieve the first emp:address element node.
72 Element testAddr;
76 testAddr = (Element) elementList.item(0);
hasAttribute01.java 34 * The "hasAttribute()" method for an Element should
35 * return true if the element has an attribute with the given name.
36 * Retrieve the first "address" element and the "hasAttribute()" method
37 * should return false since the element does not have a default value.
66 Element testNode;
70 testNode = (Element) elementList.item(4);
hasAttribute03.java 34 * The "hasAttribute()" method for an Element should
35 * return false if the element does not have an attribute with the given name.
36 * Retrieve the first "address" element and the "hasAttribute()" method
37 * should return false since the element does not have "nomatch" as an attribute.
66 Element testNode;
70 testNode = (Element) elementList.item(0);
hasAttributeNS01.java 35 * The "hasAttributeNS()" method for an Element should
36 * return false if the element does not have an attribute with the given local name
37 * and/or a namespace URI specified on this element or does not have a default value.
38 * Retrieve the first "address" element and the "hasAttributeNS()" method
39 * should return false since the element has "nomatch" as the local name
71 Element testNode;
75 testNode = (Element) elementList.item(0);
hasAttributeNS02.java 34 * The "hasAttributeNS()" method for an Element should
35 * return false if the element does not have an attribute with the given local name
36 * and/or namespace URI specified on this element or does not have a default value.
37 * Retrieve the first "address" element and the "hasAttributeNS()" method
38 * should return false since the element has "domestic" as the local name
70 Element testNode;
74 testNode = (Element) elementList.item(0);
hasAttributeNS03.java 34 * The "hasAttributeNS()" method for an Element should
35 * return false if the element does not have an attribute with the given local name
36 * and/or namespace URI specified on this element or does not have a default value.
37 * Retrieve the first "emp:address" element.
70 Element testNode;
74 testNode = (Element) elementList.item(0);
hc_namednodemapinvalidtype1.java 31 * Attempt to insert an element into an attribute list,
62 Element docElem;
63 Element newElem;
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.
63 Element element; local
68 element = (Element) elementList.item(0);
69 assertNotNull("empEmployeeNotNull", element);
70 hasAttributes = element.hasAttributes();
nodesetprefix08.java 65 Element element; local
70 element = (Element) elementList.item(0);
71 attribute = element.getAttributeNode("xmlns");
prefix05.java 73 Element addrNode;
77 addrNode = (Element) elementList.item(0);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
AttrGetOwnerElement.java 10 import org.w3c.dom.Element;
45 // Element element;
46 // Element ownerElement;
56 // element = (Element) elementList.item(1);
57 // attributes = element.getAttributes();
72 Element element; local
73 Element ownerElement
110 Element element; local
135 Node element; local
    [all...]
  /sdk/layoutopt/libs/uix/src/com/android/layoutopt/uix/groovy/
LayoutAnalysisCategory.java 31 import org.w3c.dom.Element;
65 public static boolean isContainer(Element element) {
66 return Arrays.binarySearch(sContainers, element.getNodeName()) >= 0;
76 public static List<Node> all(Element element) {
77 NodeList list = DOMCategory.depthFirst(element);
113 public static boolean hasPadding(Element element) {
114 return element.getAttribute(ANDROID_PADDING).length() > 0 |
    [all...]
  /external/webkit/WebCore/dom/
ClassNodeList.cpp 44 bool ClassNodeList::nodeMatches(Element* testNode) const
TagNodeList.h 43 virtual bool nodeMatches(Element*) const;

Completed in 345 milliseconds

1 2 3 4 5 6 78 91011>>