HomeSort by relevance Sort by last modified time
    Searched refs:Element (Results 251 - 275 of 1760) sorted by null

<<11121314151617181920>>

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
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/
DocumentGeteEementById.java 4 import org.w3c.dom.Element;
9 * The method getElementById returns the element whose ID is given by elementId.
10 * If not such element exists, returns null.
13 * elementId. This should return a null element.
53 Element element; local
56 element = doc.getElementById(elementId);
57 assertNull("documentgetelementbyid01", element);
ElementRemoveAttributeNS.java 3 import org.w3c.dom.Element;
11 * URI. Create a new element and add a new attribute node to it. Remove the
13 * was remove by invoking the hasAttributeNS method on the element and check if
52 Element element; local
57 element = doc.createElementNS("http://www.w3.org/DOM", "elem");
60 element.setAttributeNodeNS(attribute);
61 element.removeAttributeNS(
63 state = element.hasAttributeNS(
GetElementById.java 25 import org.w3c.dom.Element;
31 * element whose ID matches elementId.
34 * equals "CANADA". Method should return an element whose tag name is
76 // Element element;
79 // element = doc.getElementById("CANADA");
80 // tagname = element.getTagName();
85 Element element; local
87 element = doc.getElementById("Cancun")
    [all...]
NodeSetPrefix.java 30 import org.w3c.dom.Element;
41 * Element and Attr interfaces, when applicable.
43 * Create a new element node with a namespace prefix. Add it to a new
45 * Check if the prefix was set correctly on the element.
84 Element element; local
90 element = doc.createElementNS("http://www.w3.org/DOM/Test",
92 docFragment.appendChild(element);
93 element.setPrefix("dmstc");
94 elementTagName = element.getTagName()
127 Element element; local
168 Element element; local
196 Element element; local
230 Element element; local
251 Element element; local
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/f32/
ImageBuffersForRenderScriptF32.java 21 import android.renderscript.Element;
65 renderScript, Element.F32_4(renderScript),
69 renderScript, Element.F32_4(renderScript),
73 Element.F32_4(renderScript), imageWidthPadded * imageHeightPadded);
  /cts/tests/tests/rsblas/src/android/renderscript/cts/
RSBaseCompute.java 21 import android.renderscript.Element;

Completed in 436 milliseconds

<<11121314151617181920>>