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

1 2 3

  /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");
  /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;
153 throw new DOMException(DOMException.NOT_SUPPORTED_ERR,
203 throw new DOMException(DOMException.NOT_SUPPORTED_ERR,
267 throw new DOMException(DOMException.NOT_SUPPORTED_ERR,
271 throw new DOMException(DOMException.NOT_SUPPORTED_ERR,
314 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) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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/python/cpython2/Lib/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/python/cpython3/Lib/xml/dom/
__init__.py 62 class DOMException(Exception):
67 if self.__class__ is DOMException:
69 "DOMException should not be instantiated directly")
76 class IndexSizeErr(DOMException):
79 class DomstringSizeErr(DOMException):
82 class HierarchyRequestErr(DOMException):
85 class WrongDocumentErr(DOMException):
88 class InvalidCharacterErr(DOMException):
91 class NoDataAllowedErr(DOMException):
94 class NoModificationAllowedErr(DOMException)
    [all...]
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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 
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mshtml.h     [all...]
  /prebuilts/tools/common/m2/repository/xml-apis/xml-apis/1.3.04/
xml-apis-1.3.04.jar 
  /prebuilts/tools/common/m2/repository/xml-apis/xml-apis/1.4.01/
xml-apis-1.4.01.jar 
  /external/guice/lib/build/jdiff/
xerces.jar 

Completed in 571 milliseconds

1 2 3