HomeSort by relevance Sort by last modified time
    Searched defs:DOMException (Results 1 - 22 of 22) sorted by null

  /libcore/dom/src/test/java/org/w3c/domts/
JTidyDOMImplementation.java 15 import org.w3c.dom.DOMException;
63 * @exception DOMException
78 String systemId) throws DOMException {
79 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Not Implemented");
94 * @exception DOMException
119 DocumentType doctype) throws DOMException {
120 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Not Implemented");
  /packages/apps/Mms/src/com/android/mms/dom/
NamedNodeMapImpl.java 22 import org.w3c.dom.DOMException;
57 public Node removeNamedItem(String name) throws DOMException {
60 throw new DOMException(DOMException.NOT_FOUND_ERR, "Not found");
68 throws DOMException {
73 public Node setNamedItem(Node arg) throws DOMException {
82 public Node setNamedItemNS(Node arg) throws DOMException {
DocumentImpl.java 24 import org.w3c.dom.DOMException;
50 public Attr createAttribute(String name) throws DOMException {
55 throws DOMException {
60 public CDATASection createCDATASection(String data) throws DOMException {
75 public abstract Element createElement(String tagName) throws DOMException;
78 throws DOMException {
83 public EntityReference createEntityReference(String name) throws DOMException {
89 throws DOMException {
126 public Node importNode(Node importedNode, boolean deep) throws DOMException {
158 public void setXmlStandalone(boolean xmlStandalone) throws DOMException {}
    [all...]
ElementImpl.java 21 import org.w3c.dom.DOMException;
89 public void removeAttribute(String name) throws DOMException {
95 throws DOMException {
100 public Attr removeAttributeNode(Attr oldAttr) throws DOMException {
105 public void setAttribute(String name, String value) throws DOMException {
115 String value) throws DOMException {
120 public Attr setAttributeNode(Attr newAttr) throws DOMException {
125 public Attr setAttributeNodeNS(Attr newAttr) throws DOMException {
159 public void setIdAttribute(String name, boolean isId) throws DOMException {
160 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, null)
    [all...]
NodeImpl.java 23 import org.w3c.dom.DOMException;
54 public Node appendChild(Node newChild) throws DOMException {
120 public String getNodeValue() throws DOMException {
156 public Node insertBefore(Node newChild, Node refChild) throws DOMException {
170 public Node removeChild(Node oldChild) throws DOMException {
175 throw new DOMException(DOMException.NOT_FOUND_ERR, "Child does not exist");
180 public Node replaceChild(Node newChild, Node oldChild) throws DOMException {
185 } catch (DOMException e) {
192 throw new DOMException(DOMException.NOT_FOUND_ERR, "Old child does not exist")
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
CharacterDataImpl.java 20 import org.w3c.dom.DOMException;
42 public void appendData(String arg) throws DOMException {
46 public void deleteData(int offset, int count) throws DOMException {
50 public String getData() throws DOMException {
70 public void insertData(int offset, String arg) throws DOMException {
74 throw new DOMException(DOMException.INDEX_SIZE_ERR, null);
79 throws DOMException {
83 throw new DOMException(DOMException.INDEX_SIZE_ERR, null)
    [all...]
DocumentTypeImpl.java 19 import org.w3c.dom.DOMException;
47 throw new DOMException(DOMException.NAMESPACE_ERR, qualifiedName);
56 throw new DOMException(DOMException.NAMESPACE_ERR, qualifiedName);
60 throw new DOMException(DOMException.INVALID_CHARACTER_ERR, qualifiedName);
64 throw new DOMException(DOMException.INVALID_CHARACTER_ERR, qualifiedName);
110 @Override public String getTextContent() throws DOMException {
    [all...]
NamedNodeMapImpl.java 21 import org.w3c.dom.DOMException;
94 public Node removeNamedItem(String name) throws DOMException {
98 throw new DOMException(DOMException.NOT_FOUND_ERR, null);
105 throws DOMException {
109 throw new DOMException(DOMException.NOT_FOUND_ERR, null);
115 public Node setNamedItem(Node arg) throws DOMException {
118 throw new DOMException(DOMException.HIERARCHY_REQUEST_ERR, null)
    [all...]
AttrImpl.java 20 import org.w3c.dom.DOMException;
66 throw new DOMException(DOMException.INVALID_CHARACTER_ERR, name);
70 throw new DOMException(DOMException.INVALID_CHARACTER_ERR, name);
129 public void setValue(String value) throws DOMException {
DOMConfigurationImpl.java 25 import org.w3c.dom.DOMException;
316 throw new DOMException(DOMException.NOT_SUPPORTED_ERR,
336 public void setParameter(String name, Object value) throws DOMException {
339 throw new DOMException(DOMException.NOT_FOUND_ERR, "No such parameter: " + name);
344 throw new DOMException(DOMException.TYPE_MISMATCH_ERR,
347 throw new DOMException(DOMException.TYPE_MISMATCH_ERR
    [all...]
InnerNodeImpl.java 21 import org.w3c.dom.DOMException;
49 public Node appendChild(Node newChild) throws DOMException {
83 public Node insertBefore(Node newChild, Node refChild) throws DOMException {
87 throw new DOMException(DOMException.WRONG_DOCUMENT_ERR, null);
91 throw new DOMException(DOMException.HIERARCHY_REQUEST_ERR, null);
108 * @throws DOMException If the attempted operation violates the XML/DOM
111 public Node insertChildAt(Node newChild, int index) throws DOMException {
115 throw new DOMException(DOMException.WRONG_DOCUMENT_ERR, null)
    [all...]
ElementImpl.java 22 import org.w3c.dom.DOMException;
64 throw new DOMException(DOMException.INVALID_CHARACTER_ERR, name);
68 throw new DOMException(DOMException.INVALID_CHARACTER_ERR, name);
257 public void removeAttribute(String name) throws DOMException {
266 throws DOMException {
274 public Attr removeAttributeNode(Attr oldAttr) throws DOMException {
278 throw new DOMException(DOMException.NOT_FOUND_ERR, null)
    [all...]
DocumentImpl.java 27 import org.w3c.dom.DOMException;
151 throw new DOMException(DOMException.NOT_SUPPORTED_ERR,
192 throw new DOMException(DOMException.NOT_SUPPORTED_ERR,
256 throw new DOMException(DOMException.NOT_SUPPORTED_ERR,
260 throw new DOMException(DOMException.NOT_SUPPORTED_ERR,
303 throw new DOMException(DOMException.WRONG_DOCUMENT_ERR, null)
    [all...]
NodeImpl.java 27 import org.w3c.dom.DOMException;
71 public Node appendChild(Node newChild) throws DOMException {
72 throw new DOMException(DOMException.HIERARCHY_REQUEST_ERR, null);
113 public String getNodeValue() throws DOMException {
141 public Node insertBefore(Node newChild, Node refChild) throws DOMException {
142 throw new DOMException(DOMException.HIERARCHY_REQUEST_ERR, null);
152 public Node removeChild(Node oldChild) throws DOMException {
153 throw new DOMException(DOMException.HIERARCHY_REQUEST_ERR, null)
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/
DOMException.java 33 public class DOMException extends RuntimeException {
34 public DOMException(short code, String message) {
  /packages/apps/Mms/src/com/android/mms/dom/smil/
ElementParallelTimeContainerImpl.java 22 import org.w3c.dom.DOMException;
66 public void setEndSync(String endSync) throws DOMException {
71 throw new DOMException(DOMException.NOT_SUPPORTED_ERR,
SmilDocumentImpl.java 20 import org.w3c.dom.DOMException;
118 public void setBegin(TimeList begin) throws DOMException {
122 public void setDur(float dur) throws DOMException {
126 public void setEnd(TimeList end) throws DOMException {
130 public void setFill(short fill) throws DOMException {
134 public void setFillDefault(short fillDefault) throws DOMException {
138 public void setRepeatCount(float repeatCount) throws DOMException {
142 public void setRepeatDur(float repeatDur) throws DOMException {
146 public void setRestart(short restart) throws DOMException {
155 public Element createElement(String tagName) throws DOMException {
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/serializer/dom3/
LSSerializerImpl.java 48 import org.w3c.dom.DOMException;
437 public Object getParameter(String name) throws DOMException {
493 throw new DOMException(DOMException.NOT_FOUND_ERR, msg);
518 public void setParameter(String name, Object value) throws DOMException {
    [all...]
  /libcore/luni/src/main/java/org/apache/xalan/templates/
ElemTemplateElement.java 40 import org.w3c.dom.DOMException;
252 * @throws DOMException
254 public Node appendChild(Node newChild) throws DOMException
392 * @throws DOMException
394 public Node replaceChild(Node newChild, Node oldChild) throws DOMException
432 * @throws DOMException
434 public Node insertBefore(Node newChild, Node refChild) throws DOMException
487 throw new DOMException(DOMException.NOT_FOUND_ERR,
502 * @throws DOMException
    [all...]
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 992 milliseconds