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

1 2 3 4 5

  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
nodegetlocalname03.java 34 * 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();
localName02.java 34 * The "getLocalName()" method for a Node
40 * Invoke the "getLocalName()" method on the newly created element
73 localName = createdNode.getLocalName();
localName03.java 34 * The "getLocalName()" method for a Node
40 * Since the first child is Text node invoking the "getLocalName()"
77 localName = textNode.getLocalName();
documentcreateelementNS01.java 91 localName = element.getLocalName();
getElementsByTagNameNS02.java 86 lname = newElement.getLocalName();
getElementsByTagNameNS09.java 90 lname = newElement.getLocalName();
importNode07.java 98 lname = attr.getLocalName();
localName01.java 34 * The "getLocalName()" method for a Node
40 * Then apply the getLocalName() method to the emp:domestic attribute.
84 localName = addrAttr.getLocalName();
localName04.java 34 * The "getLocalName()" method for a Node
39 * Retrieve the first employee node and invoke the "getLocalName()"
80 employeeLocalName = testEmployee.getLocalName();
removeAttributeNS02.java 96 localName = addrAttr.getLocalName();
setAttributeNS04.java 96 resultLocalName = addrAttr.getLocalName();
setAttributeNS09.java 91 resultLocalName = addrAttr.getLocalName();
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NodeGetLocalName.java 38 * The method getLocalName returns the local part of the qualified name of this node.
41 * Retreive the local part of their qualified names using getLocalName and verrify
77 notes = "Doesn't verify that getLocalName method returns null.",
78 method = "getLocalName",
96 localElemName = element.getLocalName();
97 localQElemName = qelement.getLocalName();
98 localAttrName = attr.getLocalName();
99 localQAttrName = qattr.getLocalName();
LocalName.java 17 * The "getLocalName()" method for a Node returns the local part of the
23 * Then apply the getLocalName() method to the emp:domestic attribute. The
64 method = "getLocalName",
78 localName = addrAttr.getLocalName();
83 notes = "Verifies that getLocalName method returns null.",
84 method = "getLocalName",
93 localName = createdNode.getLocalName();
98 notes = "Verifies that getLocalName method returns null.",
99 method = "getLocalName",
112 localName = textNode.getLocalName();
    [all...]
  /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
AttributesImplTest.java 120 method = "getLocalName",
125 assertEquals("foo", multi.getLocalName(0));
126 assertEquals("bar", multi.getLocalName(1));
127 assertEquals("answer", multi.getLocalName(2));
128 assertEquals("gabbaHey", multi.getLocalName(3));
129 assertEquals("", multi.getLocalName(4));
132 assertEquals(null, multi.getLocalName(-1));
133 assertEquals(null, multi.getLocalName(5));
334 assertEquals(multi.getLocalName(i), attrs.getLocalName(i))
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/serializer/utils/
DOM2Helper.java 72 String name = n.getLocalName();
AttList.java 121 public String getLocalName(int index)
240 a.getLocalName().equals(localPart) )
  /libcore/luni/src/main/java/org/xml/sax/
Attributes.java 87 * @see #getLocalName(int)
116 public abstract String getLocalName (int index);
  /libcore/luni/src/test/java/tests/xml/
SaxTest.java 47 assertOneOf("bar", "", attributes.getLocalName(0));
60 assertOneOf("a:bar", "", attributes.getLocalName(0));
75 assertEquals("bar", attributes.getLocalName(0));
88 assertEquals("bar", attributes.getLocalName(0));
108 assertEquals("bar", attributes.getLocalName(0));
121 assertEquals("bar", attributes.getLocalName(0));
124 assertEquals("", attributes.getLocalName(1));
139 assertOneOf("bar", "", attributes.getLocalName(0));
152 assertOneOf("a:bar", "", attributes.getLocalName(0));
  /libcore/luni/src/test/java/tests/api/org/xml/sax/ext/
Attributes2ImplTest.java 86 assertEquals(multi.getLocalName(i), attrs.getLocalName(i));
103 assertEquals(multi.getLocalName(i), attrs.getLocalName(i));
142 assertEquals("doe", attrs.getLocalName(0));
157 assertEquals("doe", attrs.getLocalName(1));
180 assertEquals(multi.getLocalName(0), attrs.getLocalName(0));
188 assertEquals(multi.getLocalName(2), attrs.getLocalName(1))
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatAttributes.java 55 public String getLocalName(int index) {
58 : getLocalName(getParserPointer(), getPointer(), index);
142 private static native String getLocalName(int pointer, int attributePointer, int index);
  /libcore/luni/src/main/java/org/apache/xpath/functions/
FuncLocalPart.java 51 String s = (context != DTM.NULL) ? dtm.getLocalName(context) : "";
  /packages/apps/Mms/src/com/android/mms/dom/smil/parser/
SmilContentHandler.java 66 " lname = " + attributes.getLocalName(i) +
69 element.setAttribute(attributes.getLocalName(i),
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DOM2DTMdefaultNamespaceDeclarationNode.java 72 public String getLocalName() {return prefix;}
251 if (getLocalName() == null) {
252 if (arg.getLocalName() != null) {
256 else if (!getLocalName().equals(arg.getLocalName())) {
342 attr.getLocalName().equals(specifiedPrefix)) {
  /libcore/luni/src/main/java/org/apache/xml/utils/
AttList.java 112 public String getLocalName(int index)
231 a.getLocalName().equals(localPart) )

Completed in 216 milliseconds

1 2 3 4 5