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

1 2 3

  /external/webkit/WebCore/dom/
Attribute.h 69 void setPrefix(const AtomicString& prefix) { m_name.setPrefix(prefix); }
Attr.h 75 virtual void setPrefix(const AtomicString&, ExceptionCode&);
Attr.cpp 99 void Attr::setPrefix(const AtomicString& prefix, ExceptionCode& ec)
112 m_attribute->setPrefix(prefix.isEmpty() ? AtomicString() : prefix);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NodeSetPrefix.java 43 * The method setPrefix sets the namespace prefix of this node. Note that
49 * DocumentFragment Node without a prefix. Call setPrefix on the elemen node.
90 method = "setPrefix",
105 element.setPrefix("dmstc");
129 // newAttribute.setPrefix("dom");
140 method = "setPrefix",
152 element.setPrefix("test");
177 // attribute.setPrefix("test");
187 method = "setPrefix",
210 element.setPrefix(prefixValue)
    [all...]
Prefix.java 172 addrAttr.setPrefix("xmlns");
196 employeeNode.setPrefix("pre^fix xmlns='http//www.nist.gov'");
220 employeeNode.setPrefix("emp::");
254 // entElement.setPrefix("newPrefix");
280 addrAttr.setPrefix("xxx");
304 employeeNode.setPrefix("xml");
330 employeeNode.setPrefix("employee1");
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
nodesetprefix06.java 34 * 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");
nodesetprefix07.java 34 * The method setPrefix raises a NAMESPACE_ERR if this node is an attribute and the specified
74 attribute.setPrefix("xmlns");
nodesetprefix08.java 34 * The method setPrefix raises a NAMESPACE_ERR if this node is an attribute and the qualifiedName
76 attribute.setPrefix("xml");
nodesetprefix09.java 34 * 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);
prefix05.java 34 * The "setPrefix(prefix)" method raises a
84 addrAttr.setPrefix("xmlns");
prefix07.java 34 * The "setPrefix(prefix)" method raises a
78 employeeNode.setPrefix("emp::");
prefix10.java 34 * The "setPrefix(prefix)" method raises a
80 employeeNode.setPrefix("xml");
prefix11.java 34 * The "setPrefix(prefix)" method raises a
81 employeeNode.setPrefix("employee1");
nodesetprefix01.java 34 * 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");
nodesetprefix02.java 34 * 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");
nodesetprefix03.java 34 * 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");
nodesetprefix04.java 34 * 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");
nodesetprefix05.java 34 * 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);
prefix06.java 34 * The "setPrefix(prefix)" method raises a
85 employeeNode.setPrefix("pre^fix xmlns='http//www.nist.gov'");
prefix08.java 34 * The "setPrefix(prefix)" method causes the
40 * from the entity reference and execute the "setPrefix(prefix)" method.
100 entElement.setPrefix("newPrefix");
prefix09.java 34 * The "setPrefix(prefix)" method raises a
88 addrAttr.setPrefix("xxx");
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Schema.java 166 public void setPrefix(String prefix) {
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
AttrImpl.java 125 public void setPrefix(String prefix) {
  /libcore/luni/src/main/java/org/w3c/dom/
Node.java 550 public void setPrefix(String prefix)
    [all...]
  /libcore/xml/src/main/java/org/xmlpull/v1/
XmlSerializer.java 130 * and if anything but startTag() or setPrefix() is called next there will be exception.
139 void setPrefix (String prefix, String namespace)
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.

Completed in 132 milliseconds

1 2 3