/third_party/python/Lib/xml/dom/ |
D | __init__.py | 62 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/ |
D | domexception.js | 40 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/ |
D | read_file_context.js | 21 let DOMException; variable 23 if (DOMException === undefined) 24 DOMException = internalBinding('messaging').DOMException; 25 return new DOMException(message, name);
|
D | promises.js | 90 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/ |
D | test-worker-message-port-transfer-closed.js | 26 const DOMException = err.constructor; 27 assert.ok(err instanceof DOMException); 28 assert.strictEqual(DOMException.name, 'DOMException');
|
D | test-worker-message-port-transfer-self.js | 19 const DOMException = err.constructor; constant 20 assert.ok(err instanceof DOMException); 21 assert.strictEqual(DOMException.name, 'DOMException');
|
/third_party/node/lib/ |
D | events.js | 74 let DOMException; variable 76 if (DOMException === undefined) 77 DOMException = internalBinding('messaging').DOMException; 78 return new DOMException(message, name);
|
D | buffer.js | 1229 let DOMException; variable 1232 if (DOMException === undefined) 1233 DOMException = internalBinding('messaging').DOMException; 1234 throw new DOMException('Invalid character', 'InvalidCharacterError');
|
D | fs.js | 138 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/ |
D | urlsearchparams-constructor.any.js | 23 var params = new URLSearchParams(DOMException); 25 assert_throws(new TypeError(), () => new URLSearchParams(DOMException.prototype),
|
/third_party/node/test/wpt/ |
D | README.md | 59 const { DOMException } = internalBinding('messaging'); 60 global.DOMException = DOMException;
|
/third_party/typescript/tests/baselines/reference/ |
D | globalThisBlockscopedProperties.types | 67 …ptoKeyPair" | "CustomElementRegistry" | "CustomEvent" | "DOMError" | "DOMException" | "DOMImplemen…
|
D | mappedTypeRecursiveInference.types | 100 …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/ |
D | xml.dom.rst | 811 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
|
D | xml.dom.minidom.rst | 249 * ``DOMException`` is currently not supported in :mod:`xml.dom.minidom`.
|
/third_party/typescript/lib/ |
D | lib.webworker.d.ts | 1043 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;
|
D | lib.dom.d.ts | 2571 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/ |
D | webworker.generated.d.ts | 1023 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;
|
D | dom.generated.d.ts | 2551 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/ |
D | lib.d.ts | 5412 interface DOMException { interface 5446 declare var DOMException: { variable 5447 prototype: DOMException; 5448 new(): DOMException;
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V10.md | 869 …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…
|
D | CHANGELOG_V11.md | 370 …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…
|
D | CHANGELOG_V12.md | 2871 * [[`8a032fc50c`](https://github.com/nodejs/node/commit/8a032fc50c)] - **src**: expose DOMException…
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
D | stylo.hpp | 83710 class DOMException; 136332 DOMException, enumerator 137134 DOMException, enumerator 138604 struct PrototypeTraits<prototypes::id::DOMException>
|