Searched refs:DOMException (Results 1 - 25 of 38) sorted by relevance

12

/external/python/cpython2/Lib/xml/dom/
H A D__init__.py61 class DOMException(Exception): class in inherits: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/
H A D__init__.py62 class DOMException(Exception): class in inherits: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...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTMDOMException.java24 * Simple implementation of DOMException.
30 public class DTMDOMException extends org.w3c.dom.DOMException
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMNodeIterator.java27 import org.w3c.dom.DOMException;
125 * @throws DOMException -- NOT_SUPPORTED_ERROR because I can't think
130 throw new DTMDOMException(DOMException.NOT_SUPPORTED_ERR);
155 * @throws DOMException - INVALID_STATE_ERR Raised if this method is
158 public Node nextNode() throws DOMException
161 throw new DTMDOMException(DOMException.INVALID_STATE_ERR);
173 * @throws DOMException - INVALID_STATE_ERR Raised if this method is
179 throw new DTMDOMException(DOMException.INVALID_STATE_ERR);
H A DDTMNodeProxy.java32 import org.w3c.dom.DOMException;
229 * @throws DOMException
232 public final void setPrefix(String prefix) throws DOMException
234 throw new DTMDOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR);
266 //throw new DTMDOMException(DOMException.NOT_SUPPORTED_ERR);
282 // throw new DTMDOMException(DOMException.NOT_SUPPORTED_ERR);
289 * @throws DOMException
292 public final String getNodeValue() throws DOMException
300 * @throws DOMException
302 public final String getStringValue() throws DOMException
[all...]
H A DDTMNamedNodeMap.java25 import org.w3c.dom.DOMException;
152 * @exception DOMException
176 * @exception DOMException
230 * @exception DOMException
240 public Node setNamedItemNS(Node arg) throws DOMException
259 * @exception DOMException
266 throws DOMException
272 * Simple implementation of DOMException.
275 public class DTMException extends org.w3c.dom.DOMException
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DUnImplNode.java29 import org.w3c.dom.DOMException;
92 * @throws DOMException
94 public Node appendChild(Node newChild) throws DOMException
288 * @throws DOMException
290 public Attr removeAttributeNode(Attr oldAttr) throws DOMException
305 * @throws DOMException
307 public Attr setAttributeNode(Attr newAttr) throws DOMException
369 * @throws DOMException
371 public void removeAttribute(String name) throws DOMException
382 * @throws DOMException
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemLiteralResult.java36 import org.w3c.dom.DOMException;
669 * @throws DOMException
671 public Node removeNamedItem(String name) throws DOMException
673 throwDOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR,
687 * @throws DOMException
690 throws DOMException
692 throwDOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR,
705 * @throws DOMException
707 public Node setNamedItem(Node arg) throws DOMException
709 throwDOMException(DOMException
[all...]
H A DElemSort.java26 import org.w3c.dom.DOMException;
313 * @throws DOMException
315 public Node appendChild(Node newChild) throws DOMException
H A DElemTemplateElement.java40 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...]
H A DRedundentExprEliminator.java600 throws org.w3c.dom.DOMException
679 throws org.w3c.dom.DOMException
819 throws org.w3c.dom.DOMException
846 throws org.w3c.dom.DOMException
877 throws org.w3c.dom.DOMException
899 throws org.w3c.dom.DOMException
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
H A DLSSerializerImpl.java48 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 {
657 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, msg);
674 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, msg);
740 throw new DOMException(DOMExceptio
[all...]
/external/guice/extensions/persist/lib/
H A Ddom4j-1.6.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/dom4j/ org/dom4j/bean/ org/dom4j/datatype/ org/ ...
H A Djaxen-1.1-beta-7.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/jaxen/ org/jaxen/dom/ org/jaxen/dom4j/ org/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Ddom4j-1.6.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/dom4j/ org/dom4j/bean/ org/dom4j/datatype/ org/ ...
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
H A DDOM2DTMdefaultNamespaceDeclarationNode.java34 import org.w3c.dom.DOMException;
577 * @exception DOMException
579 * @exception DOMException
586 throws DOMException {
627 * @exception DOMException
629 * @exception DOMException
635 public String getTextContent() throws DOMException {
647 public short compareDocumentPosition(Node other) throws DOMException {
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/guice/lib/build/jdiff/
H A Dxerces.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/xml/ javax/xml/parsers/ META-INF/services/ ...
/external/guice/extensions/struts2/lib/
H A Dstruts2-core-2.2.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/struts2/ org/apache/struts2/dispatcher/ ...
/external/droiddriver/src/io/appium/droiddriver/finders/
H A DByXPath.java20 import org.w3c.dom.DOMException;
106 } catch (DOMException e) {
/external/apache-xml/src/main/java/org/apache/xpath/
H A DNodeSet.java28 import org.w3c.dom.DOMException;
237 * @throws DOMException
241 public Node nextNode() throws DOMException
261 * @throws DOMException
267 public Node previousNode() throws DOMException
/external/autotest/client/site_tests/video_YouTubeMseEme/files/
H A 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/
H A DXDom.java18 import org.w3c.dom.DOMException;
183 } catch (IllegalArgumentException | InvocationTargetException | IllegalAccessException | DOMException e) {
/external/annotation-tools/asmx/test/lib/
H A Djd.xslt-1.5.5.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sarvega/ javax/ javax/xml/ javax/xml/parsers/ javax/ ...
H A Dsaxon7.jarMETA-INF/ META-INF/MANIFEST.MF net/sf/saxon/Compile.class Compile.java package ...

Completed in 850 milliseconds

12