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

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/org/w3c/dom/
CharacterData.java 38 * @exception DOMException
44 throws DOMException;
53 * @exception DOMException
57 throws DOMException;
73 * @exception DOMException
83 throws DOMException;
90 * @exception DOMException
94 throws DOMException;
100 * @exception DOMException
108 throws DOMException;
    [all...]
NamedNodeMap.java 51 * @exception DOMException
66 throws DOMException;
77 * @exception DOMException
83 throws DOMException;
111 * @exception DOMException
119 throws DOMException;
135 * @exception DOMException
154 throws DOMException;
170 * @exception DOMException
181 throws DOMException;
    [all...]
Element.java 71 * @exception DOMException
79 throws DOMException;
93 * @exception DOMException
97 throws DOMException;
122 * @exception DOMException
132 throws DOMException;
146 * @exception DOMException
152 throws DOMException;
173 * @exception DOMException
181 throws DOMException;
    [all...]
Text.java 53 * @exception DOMException
59 throws DOMException;
110 * raising a <code>DOMException</code> with the code
118 * @exception DOMException
124 throws DOMException;
Document.java 80 * @exception DOMException
86 throws DOMException;
113 * @exception DOMException
117 throws DOMException;
131 * @exception DOMException
139 throws DOMException;
152 * @exception DOMException
158 throws DOMException;
179 * @exception DOMException
186 throws DOMException;
    [all...]
ProcessingInstruction.java 45 * @exception DOMException
49 throws DOMException;
DOMConfiguration.java 369 * @exception DOMException
378 throws DOMException;
386 * @exception DOMException
390 throws DOMException;
DOMException.java 33 public class DOMException extends RuntimeException {
34 public DOMException(short code, String message) {
Node.java 22 * such nodes results in a <code>DOMException</code> being raised.
196 * @exception DOMException
202 throws DOMException;
207 * @exception DOMException
212 throws DOMException;
290 * @exception DOMException
311 throws DOMException;
326 * @exception DOMException
348 throws DOMException;
355 * @exception DOMException
    [all...]
Attr.java 204 * @exception DOMException
208 throws DOMException;
DOMImplementation.java 43 * @exception DOMException
56 throws DOMException;
83 * @exception DOMException
108 throws DOMException;
  /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...]
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...]
  /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...]
  /libcore/luni/src/main/java/org/w3c/dom/traversal/
NodeIterator.java 15 import org.w3c.dom.DOMException;
82 * @exception DOMException
87 throws DOMException;
94 * @exception DOMException
99 throws DOMException;
  /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/w3c/dom/ls/
DOMImplementationLS.java 15 import org.w3c.dom.DOMException;
80 * @exception DOMException
86 throws DOMException;
LSParser.java 16 import org.w3c.dom.DOMException;
306 * @exception DOMException
316 throws DOMException, LSException;
330 * @exception DOMException
340 throws DOMException, LSException;
432 * @exception DOMException
457 throws DOMException, LSException;
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTMDOMException.java 24 * Simple implementation of DOMException.
30 public class DTMDOMException extends org.w3c.dom.DOMException
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
elementsetattributens08.java 78 } catch (DOMException ex) {
79 success = (ex.code == DOMException.NAMESPACE_ERR);
88 } catch (DOMException ex) {
89 success = (ex.code == DOMException.NAMESPACE_ERR);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NodeSetPrefix.java 31 import org.w3c.dom.DOMException;
135 } catch (DOMException ex) {
136 success = (ex.code == DOMException.NAMESPACE_ERR);
160 // } catch (DOMException ex) {
161 // success = (ex.code == DOMException.NAMESPACE_ERR);
187 } catch (DOMException ex) {
188 success = (ex.code == DOMException.NAMESPACE_ERR);
205 } catch (DOMException ex) {
206 success = (ex.code == DOMException.NAMESPACE_ERR);
222 } catch (DOMException ex)
    [all...]

Completed in 512 milliseconds

1 2 3 4 5 6 7 8 91011>>