HomeSort by relevance Sort by last modified time
    Searched refs:element (Results 201 - 225 of 2274) sorted by null

1 2 3 4 5 6 7 891011>>

  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
elementhasattribute02.java 35 * on this element or has a default value, false otherwise
36 * Invoke the hasAttribute method to on an element with default attributes and verify if it
72 Element element; local
77 element = (Element) elementList.item(0);
78 assertNotNull("empEmployeeNotNull", element);
79 state = element.hasAttribute("defaultAttr");
elementhasattributens02.java 35 * name and namespace URI is specified on this element or has a default value,
37 * Create a new element and attribute node that belong to the same namespace.
38 * Add the attribute node to the element node. Check if the newly created element
75 Element element; local
80 element = doc.createElementNS("http://www.w3.org/DOM", "address");
82 newAttribute = element.setAttributeNode(attribute);
83 state = element.hasAttributeNS("http://www.w3.org/DOM", "domestic");
elementsetattributens01.java 35 * Create a new element and add a new attribute node to it using the setAttributeNS method.
72 Element element; local
77 element = doc.createElementNS("http://www.w3.org/DOM", "dom:elem");
78 element.setAttributeNS("http://www.w3.org/DOM/Test/setAttributeNS", "attr", "value");
79 attribute = element.getAttributeNodeNS("http://www.w3.org/DOM/Test/setAttributeNS", "attr");
elementsetattributens02.java 36 * Retrieve an existing element node with attributes and add a new attribute node to it using
73 Element element; local
80 element = (Element) elementList.item(0);
81 element.setAttributeNS("http://www.w3.org/DOM/Test/setAttributeNS", "this:street", "Silver Street");
82 attribute = element.getAttributeNodeNS("http://www.w3.org/DOM/Test/setAttributeNS", "street");
importNode05.java 36 * The importedNode is of type Element.
38 * Retrieve element "emp:address" from staffNS.xml document.
40 * with importedNode being the element from above and deep is false.
41 * Method should return an element node whose name matches "emp:address"
73 Element element; local
84 element = (Element) addresses.item(0);
85 assertNotNull("empAddressNotNull", element);
86 aNode = doc.importNode(element, false)
    [all...]
importNode06.java 36 * The importedNode is of type Element.
38 * Retrieve element "emp:address" from staffNS.xml document.
40 * with importedNode being the element from above and deep is true.
41 * Method should return an element node whose name matches "emp:address" and
72 Element element; local
82 element = (Element) addresses.item(0);
83 assertNotNull("empAddressNotNull", element);
84 aNode = doc.importNode(element, true)
    [all...]
namednodemapgetnameditemns04.java 36 * Retreive the second address element node having localName=adrress.
38 * and add it to this element. Using the getNamedItemNS retreive the newly created attribute
39 * node from a nodemap of attributes of the retreive element node.
75 Element element; local
83 element = (Element) elementList.item(1);
85 newAttribute = element.setAttributeNodeNS(newAttr1);
86 attributes = element.getAttributes();
namednodemapremovenameditemns08.java 76 Element element; local
81 element = (Element) elementList.item(1);
82 attributes = element.getAttributes();
83 element.removeAttributeNS("http://www.nist.gov", "domestic");
namednodemapremovenameditemns09.java 39 * Check the element object to ensure that the attribute node has been removed from it.
75 Element element; local
80 element = (Element) elementList.item(1);
81 attributes = element.getAttributes();
83 newAttributes = element.getAttributes();
namednodemapsetnameditemns01.java 38 * Retreive the first element whose localName is address and namespaceURI http://www.nist.gov",
75 Node element; local
83 element = elementList.item(0);
84 attributes = element.getAttributes();
86 newAttribute = ((Element) /*Node */element).setAttributeNodeNS(newAttr1);
nodehasattributes04.java 34 * The method hasAttributes returns whether this node (if it is an element) has any attributes.
35 * Create a new Document, Element and Attr node. Add the Attr to the Element and append the
36 * Element to the Document. Retreive the newly created element node from the document and check
75 Element element; local
76 Element elementTest;
77 Element elementDoc;
86 element = newDoc.createElementNS("http://www.w3.org/DOM/Test", "dom:elem")
    [all...]
nodesetprefix02.java 36 * tagName and name attributes of the Element and Attr interfaces, when applicable.
37 * Create a new attribute node and add it to an element node with an existing attribute having
74 Element element; local
83 element = (Element) elementList.item(1);
85 setNode = element.setAttributeNodeNS(newAttribute);
87 attribute = element.getAttributeNodeNS("http://www.usa.com", "domestic");
nodesetprefix04.java 72 Element element; local
79 element = (Element) elementList.item(0);
80 assertNotNull("empEmployeeNotNull", element);
81 attribute = element.getAttributeNodeNS(nullNS, "defaultAttr");
  /libcore/luni/src/main/java/java/text/
DateFormatSymbols.java 357 for (String element : ampms) {
358 hashCode += element.hashCode();
360 for (String element : eras) {
361 hashCode += element.hashCode();
363 for (String element : months) {
364 hashCode += element.hashCode();
366 for (String element : shortMonths) {
367 hashCode += element.hashCode();
369 for (String element : shortWeekdays) {
370 hashCode += element.hashCode()
    [all...]
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
mempool.h 20 typedef void (mempool_free_t)(void *element, void *pool_data);
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
mempool.h 20 typedef void (mempool_free_t)(void *element, void *pool_data);
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
mempool.h 20 typedef void (mempool_free_t)(void *element, void *pool_data);
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
mempool.h 20 typedef void (mempool_free_t)(void *element, void *pool_data);
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/
mempool.h 20 typedef void (mempool_free_t)(void *element, void *pool_data);
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/
mempool.h 20 typedef void (mempool_free_t)(void *element, void *pool_data);
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/linux/
mempool.h 20 typedef void (mempool_free_t)(void *element, void *pool_data);
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/linux/
mempool.h 20 typedef void (mempool_free_t)(void *element, void *pool_data);
  /prebuilts/ndk/6/platforms/android-3/arch-x86/usr/include/linux/
mempool.h 20 typedef void (mempool_free_t)(void *element, void *pool_data);
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/linux/
mempool.h 20 typedef void (mempool_free_t)(void *element, void *pool_data);
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/linux/
mempool.h 20 typedef void (mempool_free_t)(void *element, void *pool_data);

Completed in 486 milliseconds

1 2 3 4 5 6 7 891011>>