Home
last modified time | relevance | path

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

/third_party/python/Lib/xml/dom/
D__init__.py62 class DOMException(Exception): class
67 if self.__class__ is DOMException:
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):
97 class NotFoundErr(DOMException):
[all …]
/third_party/node/lib/internal/per_context/
Ddomexception.js40 class DOMException extends Error { class
79 ObjectDefineProperties(DOMException.prototype, {
118 ObjectDefineProperty(DOMException, codeName, desc);
119 ObjectDefineProperty(DOMException.prototype, codeName, desc);
122 exports.DOMException = DOMException;
/third_party/node/lib/internal/fs/
Dread_file_context.js21 let DOMException; variable
23 if (DOMException === undefined)
24 DOMException = internalBinding('messaging').DOMException;
25 return new DOMException(message, name);
Dpromises.js90 let DOMException; variable
92 if (DOMException === undefined)
93 DOMException = internalBinding('messaging').DOMException;
94 return new DOMException(message, name);
202 const DOMException = internalBinding('messaging').DOMException;
203 throw new DOMException('Cannot transfer FileHandle while in use',
/third_party/node/test/parallel/
Dtest-worker-message-port-transfer-closed.js26 const DOMException = err.constructor;
27 assert.ok(err instanceof DOMException);
28 assert.strictEqual(DOMException.name, 'DOMException');
Dtest-worker-message-port-transfer-self.js19 const DOMException = err.constructor; constant
20 assert.ok(err instanceof DOMException);
21 assert.strictEqual(DOMException.name, 'DOMException');
/third_party/node/lib/
Devents.js74 let DOMException; variable
76 if (DOMException === undefined)
77 DOMException = internalBinding('messaging').DOMException;
78 return new DOMException(message, name);
Dbuffer.js1229 let DOMException; variable
1232 if (DOMException === undefined)
1233 DOMException = internalBinding('messaging').DOMException;
1234 throw new DOMException('Invalid character', 'InvalidCharacterError');
Dfs.js138 let DOMException; variable
141 if (DOMException === undefined)
142 DOMException = internalBinding('messaging').DOMException;
143 return new DOMException(message, name);
/third_party/node/test/fixtures/wpt/url/
Durlsearchparams-constructor.any.js23 var params = new URLSearchParams(DOMException);
25 assert_throws(new TypeError(), () => new URLSearchParams(DOMException.prototype),
/third_party/node/test/wpt/
DREADME.md59 const { DOMException } = internalBinding('messaging');
60 global.DOMException = DOMException;
/third_party/typescript/tests/baselines/reference/
DglobalThisBlockscopedProperties.types67 …ptoKeyPair" | "CustomElementRegistry" | "CustomEvent" | "DOMError" | "DOMException" | "DOMImplemen…
DmappedTypeRecursiveInference.types100 …ir: any; CustomElementRegistry: any; CustomEvent: any; DOMError: any; DOMException: any; DOMImplem…
102 …ir: any; CustomElementRegistry: any; CustomEvent: any; DOMError: any; DOMException: any; DOMImplem…
108 …ir: any; CustomElementRegistry: any; CustomEvent: any; DOMError: any; DOMException: any; DOMImplem…
110 …ir: any; CustomElementRegistry: any; CustomEvent: any; DOMError: any; DOMException: any; DOMImplem…
/third_party/python/Doc/library/
Dxml.dom.rst811 The DOM Level 2 recommendation defines a single exception, :exc:`DOMException`,
813 error occurred. :exc:`DOMException` instances carry a :attr:`code` attribute
823 .. exception:: DOMException
Dxml.dom.minidom.rst249 * ``DOMException`` is currently not supported in :mod:`xml.dom.minidom`.
/third_party/typescript/lib/
Dlib.webworker.d.ts1043 interface DOMException { interface
1074 declare var DOMException: { variable
1075 prototype: DOMException;
1076 new(message?: string, name?: string): DOMException;
1618 readonly error: DOMException | null;
2097 readonly error: DOMException | null;
2141 readonly error: DOMException;
Dlib.dom.d.ts2571 readonly lastError: DOMException;
3819 interface DOMException { interface
3850 declare var DOMException: { variable
3851 prototype: DOMException;
3852 new(message?: string, name?: string): DOMException;
5564 readonly error: DOMException | null;
9522 readonly error: DOMException | null;
9566 readonly error: DOMException;
12117 interface RTCError extends DOMException {
19267 (error: DOMException): void;
[all …]
/third_party/typescript/src/lib/
Dwebworker.generated.d.ts1023 interface DOMException { interface
1054 declare var DOMException: { variable
1055 prototype: DOMException;
1056 new(message?: string, name?: string): DOMException;
1598 readonly error: DOMException | null;
2077 readonly error: DOMException | null;
2121 readonly error: DOMException;
Ddom.generated.d.ts2551 readonly lastError: DOMException;
3799 interface DOMException { interface
3830 declare var DOMException: { variable
3831 prototype: DOMException;
3832 new(message?: string, name?: string): DOMException;
5544 readonly error: DOMException | null;
9502 readonly error: DOMException | null;
9546 readonly error: DOMException;
12097 interface RTCError extends DOMException {
19247 (error: DOMException): void;
[all …]
/third_party/typescript/tests/lib/
Dlib.d.ts5412 interface DOMException { interface
5446 declare var DOMException: { variable
5447 prototype: DOMException;
5448 new(): DOMException;
/third_party/node/doc/changelogs/
DCHANGELOG_V10.md869 …github.com/nodejs/node/commit/96036ef798)] - **lib**: do not register DOMException in a module (Jo…
1944 * [[`0140a98e05`](https://github.com/nodejs/node/commit/0140a98e05)] - **lib**: make DOMException a…
1945 …/nodejs/node/commit/5e7b1082d9)] - **lib**: set Symbol.toStringTag of DOMException (Joyee Cheung) …
2838 …ithub.com/nodejs/node/commit/221c8bd58f)] - **messaging**: use actual DOMException for DataCloneEr…
DCHANGELOG_V11.md370 …odejs/node/commit/1e669b2e2e)] - **(SEMVER-MINOR)** **src,lib**: make DOMException available in al…
1871 …github.com/nodejs/node/commit/eab981e76f)] - **lib**: do not register DOMException in a module (Jo…
DCHANGELOG_V12.md2871 * [[`8a032fc50c`](https://github.com/nodejs/node/commit/8a032fc50c)] - **src**: expose DOMException
/third_party/rust/crates/bindgen/bindgen-tests/tests/
Dstylo.hpp83710 class DOMException;
136332 DOMException, enumerator
137134 DOMException, enumerator
138604 struct PrototypeTraits<prototypes::id::DOMException>