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

123

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDOMException.cpp30 #include "core/dom/DOMException.h"
89 DOMException::DOMException(unsigned short code, const String& name, const String& sanitizedMessage, const String& unsanitizedMessage) function in class:WebCore::DOMException
99 PassRefPtr<DOMException> DOMException::create(ExceptionCode ec, const String& sanitizedMessage, const String& unsanitizedMessage)
103 return adoptRef(new DOMException(entry->code,
109 String DOMException::toString() const
114 String DOMException::toStringForConsole() const
119 String DOMException::getErrorName(ExceptionCode ec)
129 String DOMException
[all...]
H A DDOMException.h41 class DOMException : public RefCounted<DOMException>, public ScriptWrappable { class in namespace:WebCore
43 static PassRefPtr<DOMException> create(ExceptionCode, const String& sanitizedMessage = String(), const String& unsanitizedMessage = String());
61 DOMException(unsigned short m_code, const String& name, const String& sanitizedMessage, const String& unsanitizedMessage);
H A DDOMError.h30 #include "core/dom/DOMException.h"
51 return adoptRef(new DOMError(DOMException::getErrorName(ec), DOMException::getErrorMessage(ec)));
56 return adoptRef(new DOMError(DOMException::getErrorName(ec), message));
H A DDOMException.idl31 ] exception DOMException {
/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/chromium_org/chrome/test/chromedriver/js/
H A Dfocus.js25 // throws a DOMException with code InvalidStateError.
36 if (!(error instanceof TypeError) && !(error instanceof DOMException &&
37 error.code == DOMException.INVALID_STATE_ERR))
/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/chromium_org/third_party/WebKit/Source/bindings/tests/idls/
H A DTestTypedefs.idl74 typedef DOMException E;
/external/jmonkeyengine/engine/src/xml/com/jme3/export/xml/
H A DDOMInputCapsule.java134 } catch (DOMException de) {
173 } catch (DOMException de) {
219 } catch (DOMException de) {
235 } catch (DOMException de) {
273 } catch (DOMException de) {
322 } catch (DOMException de) {
338 } catch (DOMException de) {
372 } catch (DOMException de) {
408 } catch (DOMException de) {
424 } catch (DOMException d
[all...]
/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/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DV8ThrowException.cpp30 #include "core/dom/DOMException.h"
58 RefPtr<DOMException> domException = DOMException::create(ec, sanitizedMessage, unsanitizedMessage);
64 // Attach an Error object to the DOMException. This is then lazily used to get the stack value.
/external/chromium_org/third_party/WebKit/Source/core/fileapi/
H A DFileError.cpp141 : DOMError(DOMException::getErrorName(errorCodeToExceptionCode(code)), errorCodeToMessage(code))
/external/jdiff/
H A Dxerces.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/apache/ org/apache/html/ ...
/external/droiddriver/src/com/google/android/droiddriver/finders/
H A DByXPath.java29 import org.w3c.dom.DOMException;
93 } catch (DOMException e) {
/external/chromium_org/chrome/browser/resources/standalone/
H A Dstandalone_hack.js248 this.code = DOMException[type];
284 // Most DOMException implementations don't allow calling DOMException's
/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

Completed in 589 milliseconds

123