Searched refs:getLocalName (Results 1 - 25 of 40) sorted by relevance

12

/libcore/dom/src/test/java/org/w3c/domts/level2/core/
H A Dnodegetlocalname03.java34 * The method getLocalName returns the local part of the qualified name of this node.
37 * Retreive the local part of their qualified names using getLocalName and verrify
85 localElemName = element.getLocalName();
86 localQElemName = qelement.getLocalName();
87 localAttrName = attr.getLocalName();
88 localQAttrName = qattr.getLocalName();
H A DlocalName02.java34 * The "getLocalName()" method for a Node
40 * Invoke the "getLocalName()" method on the newly created element
73 localName = createdNode.getLocalName();
H A DlocalName03.java34 * The "getLocalName()" method for a Node
40 * Since the first child is Text node invoking the "getLocalName()"
77 localName = textNode.getLocalName();
H A DdocumentcreateelementNS01.java91 localName = element.getLocalName();
H A DgetElementsByTagNameNS02.java86 lname = newElement.getLocalName();
H A DgetElementsByTagNameNS09.java90 lname = newElement.getLocalName();
H A DimportNode07.java98 lname = attr.getLocalName();
H A DlocalName01.java34 * The "getLocalName()" method for a Node
40 * Then apply the getLocalName() method to the emp:domestic attribute.
84 localName = addrAttr.getLocalName();
H A DlocalName04.java34 * The "getLocalName()" method for a Node
39 * Retrieve the first employee node and invoke the "getLocalName()"
80 employeeLocalName = testEmployee.getLocalName();
H A DremoveAttributeNS02.java96 localName = addrAttr.getLocalName();
H A DsetAttributeNS04.java96 resultLocalName = addrAttr.getLocalName();
H A DsetAttributeNS09.java91 resultLocalName = addrAttr.getLocalName();
H A Delementgetattributenodens01.java92 attrLocalName = attribute.getLocalName();
/libcore/luni/src/test/java/tests/org/w3c/dom/
H A DNodeGetLocalName.java33 * The method getLocalName returns the local part of the qualified name of this node.
36 * Retreive the local part of their qualified names using getLocalName and verrify
84 localElemName = element.getLocalName();
85 localQElemName = qelement.getLocalName();
86 localAttrName = attr.getLocalName();
87 localQAttrName = qattr.getLocalName();
H A DLocalName.java12 * The "getLocalName()" method for a Node returns the local part of the
18 * Then apply the getLocalName() method to the emp:domestic attribute. The
66 localName = addrAttr.getLocalName();
75 localName = createdNode.getLocalName();
88 localName = textNode.getLocalName();
99 employeeLocalName = testEmployee.getLocalName();
H A DElementGetAttributeNodeNS.java76 attrLocalName = attribute.getLocalName();
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/ext/
H A DAttributes2ImplTest.java75 assertEquals(multi.getLocalName(i), attrs.getLocalName(i));
92 assertEquals(multi.getLocalName(i), attrs.getLocalName(i));
125 assertEquals("doe", attrs.getLocalName(0));
140 assertEquals("doe", attrs.getLocalName(1));
158 assertEquals(multi.getLocalName(0), attrs.getLocalName(0));
166 assertEquals(multi.getLocalName(2), attrs.getLocalName(
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/helpers/
H A DAttributesImplTest.java95 assertEquals("foo", multi.getLocalName(0));
96 assertEquals("bar", multi.getLocalName(1));
97 assertEquals("answer", multi.getLocalName(2));
98 assertEquals("gabbaHey", multi.getLocalName(3));
99 assertEquals("", multi.getLocalName(4));
102 assertEquals(null, multi.getLocalName(-1));
103 assertEquals(null, multi.getLocalName(5));
249 assertEquals(multi.getLocalName(i), attrs.getLocalName(i));
271 assertEquals("doe", multi.getLocalName(
[all...]
/libcore/luni/src/main/java/org/xml/sax/
H A DAttributes.java87 * @see #getLocalName(int)
116 public abstract String getLocalName (int index);
115 public abstract String getLocalName (int index); method in interface:Attributes
/libcore/luni/src/test/java/libcore/xml/
H A DSaxTest.java47 assertOneOf("bar", "", attributes.getLocalName(0));
60 assertOneOf("a:bar", "", attributes.getLocalName(0));
75 assertEquals("bar", attributes.getLocalName(0));
88 assertEquals("bar", attributes.getLocalName(0));
107 assertEquals("bar", attributes.getLocalName(0));
120 assertEquals("bar", attributes.getLocalName(0));
123 assertEquals("", attributes.getLocalName(1));
138 assertOneOf("bar", "", attributes.getLocalName(0));
151 assertOneOf("a:bar", "", attributes.getLocalName(0));
/libcore/luni/src/main/java/org/apache/harmony/xml/
H A DExpatAttributes.java55 public String getLocalName(int index) { method in class:ExpatAttributes
58 : getLocalName(getParserPointer(), getPointer(), index);
142 private static native String getLocalName(long pointer, long attributePointer, int index); method in class:ExpatAttributes
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DAttrImpl.java59 public String getLocalName() { method in class:AttrImpl
H A DNodeImpl.java98 public String getLocalName() { method in class:NodeImpl
519 if (target.isPrefixMappedToUri(attr.getLocalName(), namespaceURI)) {
520 return attr.getLocalName();
584 : "xmlns".equals(attr.getPrefix()) && prefix.equals(attr.getLocalName())) {
604 values.add(node.getLocalName());
684 Node bNode = aNode.getLocalName() == null
686 : b.getNamedItemNS(aNode.getNamespaceURI(), aNode.getLocalName());
H A DElementImpl.java74 && Objects.equal(localName, attr.getLocalName())) {
174 public String getLocalName() { method in class:ElementImpl
307 int i = indexOfAttributeNS(newAttr.getNamespaceURI(), newAttr.getLocalName());
/libcore/luni/src/main/java/org/w3c/dom/
H A DNode.java561 public String getLocalName(); method in interface:Node

Completed in 261 milliseconds

12