Searched refs:setPrefix (Results 1 - 25 of 26) sorted by relevance

12

/libcore/luni/src/test/java/tests/org/w3c/dom/
H A DNodeSetPrefix.java38 * The method setPrefix sets the namespace prefix of this node. Note that
44 * DocumentFragment Node without a prefix. Call setPrefix on the elemen node.
93 element.setPrefix("dmstc");
117 // newAttribute.setPrefix("dom");
134 element.setPrefix("test");
159 // attribute.setPrefix("test");
186 element.setPrefix(prefixValue);
204 element.setPrefix("xml");
221 attribute.setPrefix("xmlns");
241 attribute.setPrefix("xm
[all...]
H A DPrefix.java136 addrAttr.setPrefix("xmlns");
154 employeeNode.setPrefix("pre^fix xmlns='http//www.nist.gov'");
172 employeeNode.setPrefix("emp::");
206 // entElement.setPrefix("newPrefix");
226 addrAttr.setPrefix("xxx");
244 employeeNode.setPrefix("xml");
264 employeeNode.setPrefix("employee1");
/libcore/dom/src/test/java/org/w3c/domts/level2/core/
H A Dnodesetprefix06.java34 * The method setPrefix raises a NAMESPACE_ERR if the specified prefix is "xml" and the namespaceURI
36 * Invoke the setPrefix method on this Element object with namespaceURI that is different from
73 element.setPrefix("xml");
H A Dnodesetprefix07.java34 * The method setPrefix raises a NAMESPACE_ERR if this node is an attribute and the specified
74 attribute.setPrefix("xmlns");
H A Dnodesetprefix08.java34 * The method setPrefix raises a NAMESPACE_ERR if this node is an attribute and the qualifiedName
76 attribute.setPrefix("xml");
H A Dnodesetprefix09.java34 * The method setPrefix raises a INVALID_CHARACTER_ERR if the specified prefix contains an illegal character.
35 * Create a new namespace aware element node and call the setPrefix method on it with a prefix having
72 element.setPrefix(value);
H A Dprefix05.java34 * The "setPrefix(prefix)" method raises a
84 addrAttr.setPrefix("xmlns");
H A Dprefix07.java34 * The "setPrefix(prefix)" method raises a
78 employeeNode.setPrefix("emp::");
H A Dprefix10.java34 * The "setPrefix(prefix)" method raises a
80 employeeNode.setPrefix("xml");
H A Dprefix11.java34 * The "setPrefix(prefix)" method raises a
81 employeeNode.setPrefix("employee1");
H A Dnodesetprefix01.java34 * The method setPrefix sets the namespace prefix of this node. Note that setting this attribute,
39 * a prefix. Call setPrefix on the elemen node. Check if the prefix was set correctly on the element.
82 element.setPrefix("dmstc");
H A Dnodesetprefix02.java34 * The method setPrefix sets the namespace prefix of this node. Note that setting this attribute,
39 * newly created attribute using setPrefix. Check if the new attribute nodeName has changed
86 newAttribute.setPrefix("dom");
H A Dnodesetprefix03.java34 * The method setPrefix raises a NAMESPACE_ERR if the namespaceURI of this node is null.
36 * Create a new element node without a namespace prefix. Call setPrefix on the newly created elemenent node.
78 element.setPrefix("test");
H A Dnodesetprefix04.java34 * The method setPrefix raises a NAMESPACE_ERR if the namespaceURI of this node is null.
35 * Retreive the a default Attribute node which does not have a namespace prefix. Call the setPrefix
86 attribute.setPrefix("test");
H A Dnodesetprefix05.java34 * The method setPrefix raises a NAMESPACE_ERR if the specified prefix is malformed.
35 * Create a new namespace aware element node and call the setPrefix method on it with several malformed
87 element.setPrefix(prefixValue);
H A Dprefix06.java34 * The "setPrefix(prefix)" method raises a
85 employeeNode.setPrefix("pre^fix xmlns='http//www.nist.gov'");
H A Dprefix08.java34 * The "setPrefix(prefix)" method causes the
40 * from the entity reference and execute the "setPrefix(prefix)" method.
100 entElement.setPrefix("newPrefix");
H A Dprefix09.java34 * The "setPrefix(prefix)" method raises a
88 addrAttr.setPrefix("xxx");
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DAttrImpl.java106 public void setPrefix(String prefix) { method in class:AttrImpl
H A DDocumentImpl.java136 attrCopy.setPrefix(attr.getPrefix());
162 elementCopy.setPrefix(element.getPrefix());
H A DElementImpl.java320 public void setPrefix(String prefix) { method in class:ElementImpl
/libcore/luni/src/main/java/org/w3c/dom/
H A DNode.java550 public void setPrefix(String prefix) method in interface:Node
/libcore/xml/src/main/java/org/xmlpull/v1/
H A DXmlSerializer.java130 * and if anything but startTag() or setPrefix() is called next there will be exception.
139 void setPrefix (String prefix, String namespace) method in interface:XmlSerializer
201 * The explicit prefixes for namespaces can be established by calling setPrefix()
241 // * element (setPrefix()) and was bound to different namespace.
260 // * element (setPrefix()) and was bound to different namespace.
/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlSerializer.java243 setPrefix(prefix, namespace);
271 public void setPrefix(String prefix, String namespace) method in class:KXmlSerializer
/libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
H A DDocumentBuilderImpl.java272 element.setPrefix(prefix);
288 attr.setPrefix(attrPrefix);

Completed in 147 milliseconds

12