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

1 2

  /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");
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMException.cpp 30 #include "core/dom/DOMException.h"
92 DOMException::DOMException(unsigned short code, const String& name, const String& sanitizedMessage, const String& unsanitizedMessage)
102 PassRefPtrWillBeRawPtr<DOMException> DOMException::create(ExceptionCode ec, const String& sanitizedMessage, const String& unsanitizedMessage)
106 return adoptRefWillBeNoop(new DOMException(entry->code,
112 String DOMException::toString() const
117 String DOMException::toStringForConsole() const
122 String DOMException::getErrorName(ExceptionCode ec)
132 String DOMException::getErrorMessage(ExceptionCode ec
    [all...]
  /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...]
DOMConfigurationImpl.java 24 import org.w3c.dom.DOMException;
315 throw new DOMException(DOMException.NOT_SUPPORTED_ERR,
335 public void setParameter(String name, Object value) throws DOMException {
338 throw new DOMException(DOMException.NOT_FOUND_ERR, "No such parameter: " + name);
343 throw new DOMException(DOMException.TYPE_MISMATCH_ERR,
346 throw new DOMException(DOMException.TYPE_MISMATCH_ERR
    [all...]
ElementImpl.java 23 import org.w3c.dom.DOMException;
216 public void removeAttribute(String name) throws DOMException {
225 throws DOMException {
233 public Attr removeAttributeNode(Attr oldAttr) throws DOMException {
237 throw new DOMException(DOMException.NOT_FOUND_ERR, null);
246 public void setAttribute(String name, String value) throws DOMException {
258 String value) throws DOMException {
269 public Attr setAttributeNode(Attr newAttr) throws DOMException {
273 throw new DOMException(DOMException.WRONG_DOCUMENT_ERR, null)
    [all...]
InnerNodeImpl.java 22 import org.w3c.dom.DOMException;
51 public Node appendChild(Node newChild) throws DOMException {
85 public Node insertBefore(Node newChild, Node refChild) throws DOMException {
93 throw new DOMException(DOMException.WRONG_DOCUMENT_ERR, null);
97 throw new DOMException(DOMException.HIERARCHY_REQUEST_ERR, null);
107 Node insertChildAt(Node newChild, int index) throws DOMException {
118 throw new DOMException(DOMException.WRONG_DOCUMENT_ERR, null)
    [all...]
DocumentImpl.java 26 import org.w3c.dom.DOMException;
154 throw new DOMException(DOMException.NOT_SUPPORTED_ERR,
204 throw new DOMException(DOMException.NOT_SUPPORTED_ERR,
268 throw new DOMException(DOMException.NOT_SUPPORTED_ERR,
272 throw new DOMException(DOMException.NOT_SUPPORTED_ERR,
315 throw new DOMException(DOMException.WRONG_DOCUMENT_ERR, null)
    [all...]
NodeImpl.java 26 import org.w3c.dom.DOMException;
74 public Node appendChild(Node newChild) throws DOMException {
75 throw new DOMException(DOMException.HIERARCHY_REQUEST_ERR, null);
116 public String getNodeValue() throws DOMException {
144 public Node insertBefore(Node newChild, Node refChild) throws DOMException {
145 throw new DOMException(DOMException.HIERARCHY_REQUEST_ERR, null);
155 public Node removeChild(Node oldChild) throws DOMException {
156 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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
__init__.py 61 class DOMException(Exception):
66 if self.__class__ is DOMException:
68 "DOMException should not be instantiated directly")
75 class IndexSizeErr(DOMException):
78 class DomstringSizeErr(DOMException):
81 class HierarchyRequestErr(DOMException):
84 class WrongDocumentErr(DOMException):
87 class InvalidCharacterErr(DOMException):
90 class NoDataAllowedErr(DOMException):
93 class NoModificationAllowedErr(DOMException)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
__init__.py 61 class DOMException(Exception):
66 if self.__class__ is DOMException:
68 "DOMException should not be instantiated directly")
75 class IndexSizeErr(DOMException):
78 class DomstringSizeErr(DOMException):
81 class HierarchyRequestErr(DOMException):
84 class WrongDocumentErr(DOMException):
87 class InvalidCharacterErr(DOMException):
90 class NoDataAllowedErr(DOMException):
93 class NoModificationAllowedErr(DOMException)
    [all...]
  /external/apache-xml/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...]
  /external/apache-xml/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...]
  /prebuilts/tools/common/m2/repository/xerces/xmlParserAPIs/2.6.2/
xmlParserAPIs-2.6.2.jar 
  /prebuilts/tools/common/m2/repository/xml-apis/xml-apis/1.0.b2/
xml-apis-1.0.b2.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/org.eclipse.jdt.core/3.9.1.v20130905-0837/
org.eclipse.jdt.core-3.9.1.v20130905-0837.jar 
  /prebuilts/sdk/10/
android.jar 

Completed in 792 milliseconds

1 2