Home
last modified time | relevance | path

Searched refs:DOMException (Results 1 – 18 of 18) sorted by relevance

/external/python/cpython2/Lib/xml/dom/
D__init__.py61 class DOMException(Exception): class
66 if self.__class__ is DOMException:
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):
96 class NotFoundErr(DOMException):
[all …]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DDTMNodeProxy.java32 import org.w3c.dom.DOMException;
232 public final void setPrefix(String prefix) throws DOMException in setPrefix()
234 throw new DTMDOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR); in setPrefix()
292 public final String getNodeValue() throws DOMException in getNodeValue()
302 public final String getStringValue() throws DOMException in getStringValue()
314 public final void setNodeValue(String nodeValue) throws DOMException in setNodeValue()
316 throw new DTMDOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR); in setNodeValue()
492 throws DOMException in insertBefore()
494 throw new DTMDOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR); in insertBefore()
508 throws DOMException in replaceChild()
[all …]
DDTMNodeIterator.java27 import org.w3c.dom.DOMException;
130 throw new DTMDOMException(DOMException.NOT_SUPPORTED_ERR); in getFilter()
158 public Node nextNode() throws DOMException in nextNode()
161 throw new DTMDOMException(DOMException.INVALID_STATE_ERR); in nextNode()
179 throw new DTMDOMException(DOMException.INVALID_STATE_ERR); in previousNode()
DDTMNamedNodeMap.java25 import org.w3c.dom.DOMException;
240 public Node setNamedItemNS(Node arg) throws DOMException in setNamedItemNS()
266 throws DOMException in removeNamedItemNS()
275 public class DTMException extends org.w3c.dom.DOMException
/external/apache-xml/src/main/java/org/apache/xml/utils/
DUnImplNode.java29 import org.w3c.dom.DOMException;
94 public Node appendChild(Node newChild) throws DOMException in appendChild()
290 public Attr removeAttributeNode(Attr oldAttr) throws DOMException in removeAttributeNode()
307 public Attr setAttributeNode(Attr newAttr) throws DOMException in setAttributeNode()
371 public void removeAttribute(String name) throws DOMException in removeAttribute()
384 public void setAttribute(String name, String value) throws DOMException in setAttribute()
443 public Attr setAttributeNodeNS(Attr newAttr) throws DOMException in setAttributeNodeNS()
476 throws DOMException in removeAttributeNS()
492 throws DOMException in setAttributeNS()
548 public String getNodeValue() throws DOMException in getNodeValue()
[all …]
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DElemLiteralResult.java36 import org.w3c.dom.DOMException;
671 public Node removeNamedItem(String name) throws DOMException in removeNamedItem()
673 throwDOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, in removeNamedItem()
690 throws DOMException in removeNamedItemNS()
692 throwDOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, in removeNamedItemNS()
707 public Node setNamedItem(Node arg) throws DOMException in setNamedItem()
709 throwDOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, in setNamedItem()
724 public Node setNamedItemNS(Node arg) throws DOMException in setNamedItemNS()
726 throwDOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, in setNamedItemNS()
753 public Node appendChild(Node newChild) throws DOMException in appendChild()
[all …]
DElemSort.java26 import org.w3c.dom.DOMException;
315 public Node appendChild(Node newChild) throws DOMException in appendChild()
DElemTemplateElement.java40 import org.w3c.dom.DOMException;
254 public Node appendChild(Node newChild) throws DOMException in appendChild()
394 public Node replaceChild(Node newChild, Node oldChild) throws DOMException in replaceChild()
434 public Node insertBefore(Node newChild, Node refChild) throws DOMException in insertBefore()
487 throw new DOMException(DOMException.NOT_FOUND_ERR, in insertBefore()
DRedundentExprEliminator.java600 throws org.w3c.dom.DOMException in findAndEliminateRedundant()
679 throws org.w3c.dom.DOMException in oldFindAndEliminateRedundant()
819 throws org.w3c.dom.DOMException in createPseudoVarDecl()
846 throws org.w3c.dom.DOMException in createGlobalPseudoVarDecl()
877 throws org.w3c.dom.DOMException in createLocalPseudoVarDecl()
899 throws org.w3c.dom.DOMException in addVarDeclToElem()
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DLSSerializerImpl.java48 import org.w3c.dom.DOMException;
437 public Object getParameter(String name) throws DOMException { in getParameter()
493 throw new DOMException(DOMException.NOT_FOUND_ERR, msg); in getParameter()
518 public void setParameter(String name, Object value) throws DOMException { in setParameter()
657 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, msg); in setParameter()
674 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, msg); in setParameter()
740 throw new DOMException(DOMException.TYPE_MISMATCH_ERR, msg); in setParameter()
747 throw new DOMException(DOMException.NOT_FOUND_ERR, msg); in setParameter()
757 throw new DOMException(DOMException.TYPE_MISMATCH_ERR, msg); in setParameter()
767 throw new DOMException(DOMException.TYPE_MISMATCH_ERR, msg); in setParameter()
[all …]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DDOM2DTMdefaultNamespaceDeclarationNode.java34 import org.w3c.dom.DOMException;
586 throws DOMException { in setTextContent()
635 public String getTextContent() throws DOMException { in getTextContent()
647 public short compareDocumentPosition(Node other) throws DOMException { in compareDocumentPosition()
/external/apache-xml/src/main/java/org/apache/xml/dtm/
DDTMDOMException.java30 public class DTMDOMException extends org.w3c.dom.DOMException
/external/droiddriver/src/io/appium/droiddriver/finders/
DByXPath.java20 import org.w3c.dom.DOMException;
106 } catch (DOMException e) { in find()
/external/apache-xml/src/main/java/org/apache/xpath/
DNodeSet.java28 import org.w3c.dom.DOMException;
241 public Node nextNode() throws DOMException in nextNode()
267 public Node previousNode() throws DOMException in previousNode()
/external/autotest/client/site_tests/video_YouTubeMseEme/files/
Dvideo_YouTubeMseEme.js196 if (e.code !== DOMException.NOT_SUPPORTED_ERR) {
209 if (e.code !== DOMException.INVALID_STATE_ERR) {
/external/testng/src/main/java/org/testng/xml/dom/
DXDom.java18 import org.w3c.dom.DOMException;
183 … (IllegalArgumentException | InvocationTargetException | IllegalAccessException | DOMException e) { in setText()
/external/python/cpython2/Doc/library/
Dxml.dom.rst828 The DOM Level 2 recommendation defines a single exception, :exc:`DOMException`,
830 error occurred. :exc:`DOMException` instances carry a :attr:`code` attribute
840 .. exception:: DOMException
Dxml.dom.minidom.rst241 * ``DOMException`` is currently not supported in :mod:`xml.dom.minidom`.