/third_party/node/test/fixtures/wpt/wasm/jsapi/table/ |
D | constructor.any.js | 19 const argument = { "element": "anyfunc", "initial": 0 }; property 48 …assert_throws_js(TypeError, () => new WebAssembly.Table({ "element": "anyfunc", "initial": undefin… property 52 assert_throws_js(TypeError, () => new WebAssembly.Table({ "element": undefined, "initial": 0 })); property 66 …assert_throws_js(TypeError, () => new WebAssembly.Table({ "element": "anyfunc", "initial": value }… property 70 …assert_throws_js(TypeError, () => new WebAssembly.Table({ "element": "anyfunc", "initial": 0, "max… property 75 …assert_throws_js(RangeError, () => new WebAssembly.Table({ "element": "anyfunc", "initial": 10, "m… property 79 const argument = { "element": "anyfunc", "initial": 0 }; property 85 const argument = { "element": "anyfunc", "initial": 5 }; property 91 const argument = { "element": "anyfunc", "initial": 0 }; property 122 "initial": 1, property [all …]
|
D | get-set.any.js | 25 const argument = { "element": "anyfunc", "initial": 5 }; property 56 const argument = { "element": "anyfunc", "initial": 5 }; property 87 const argument = { "element": "anyfunc", "initial": 5 }; property 104 const argument = { "element": "anyfunc", "initial": 5 }; property 122 const argument = { "element": "anyfunc", "initial": 5 }; property 136 const argument = { "element": "anyfunc", "initial": 1 }; property 158 const argument = { "element": "anyfunc", "initial": 1 }; property 168 const argument = { "element": "anyfunc", "initial": 1 }; property 191 const argument = { "element": "anyfunc", "initial": 1 }; property 197 const argument = { "element": "anyfunc", "initial": 1 }; property [all …]
|
D | grow.any.js | 10 const argument = { "element": "anyfunc", "initial": 5 }; property 41 const argument = { "element": "anyfunc", "initial": 5 }; property 51 const argument = { "element": "anyfunc", "initial": 3, "maximum": 5 }; property 61 const argument = { "element": "anyfunc", "initial": 2, "maximum": 5 }; property 83 const argument = { "element": "anyfunc", "initial": 1 }; property 90 const argument = { "element": "anyfunc", "initial": 5 }; property 106 const argument = { "element": "anyfunc", "initial": 1 }; property 117 const argument = { "element": "anyfunc", "initial": 1 }; property 123 const argument = { "element": "anyfunc", "initial": 1 }; property
|
D | length.any.js | 30 const argument = { "element": "anyfunc", "initial": 2 }; property 44 const argument = { "element": "anyfunc", "initial": 2 }; property 52 const argument = { "element": "anyfunc", "initial": 2 }; property
|
D | toString.any.js | 4 const argument = { "element": "anyfunc", "initial": 0 }; property
|
/third_party/node/test/fixtures/wpt/wasm/jsapi/memory/ |
D | constructor.any.js | 18 const argument = { "initial": 0 }; property 43 assert_throws_js(TypeError, () => new WebAssembly.Memory({ "initial": undefined })); property 57 assert_throws_js(TypeError, () => new WebAssembly.Memory({ "initial": value })); property 61 assert_throws_js(TypeError, () => new WebAssembly.Memory({ "initial": 0, "maximum": value })); property 66 assert_throws_js(RangeError, () => new WebAssembly.Memory({ "initial": 10, "maximum": 9 })); property 104 get initial() { getter 124 const argument = { "initial": 0 }; property 130 const argument = { "initial": 4 }; property 136 const argument = { "initial": 0 }; property
|
D | grow.any.js | 5 const argument = { "initial": 0 }; property 36 const argument = { "initial": 0 }; property 51 const argument = { "initial": { valueOf() { return 0 } } }; property 66 const argument = { "initial": 3 }; property 81 const argument = { "initial": 0, "maximum": 2 }; property 96 const argument = { "initial": 0, "maximum": 2 }; property 120 const argument = { "initial": 1, "maximum": 2 }; property 144 const argument = { "initial": 0 }; property 151 const argument = { "initial": 0 }; property 166 const argument = { "initial": 1, "maximum": 2, "shared": true }; property
|
D | constructor-shared.tentative.any.js | 6 assert_throws_js(TypeError, () => new WebAssembly.Memory({ "initial": 10, "shared": true })); property 23 get initial() { getter 51 const argument = { "initial": 4, "maximum": 10, shared: true }; property
|
D | buffer.any.js | 30 const argument = { "initial": 0 }; property 44 const argument = { "initial": 0 }; property 54 const argument = { "initial": 0 }; property
|
D | toString.any.js | 4 const argument = { "initial": 0 }; property
|
/third_party/skia/src/core/ |
D | SkTLazy.h | 144 explicit SkTCopyOnFirstWrite(const T& initial) : fObj(&initial) {} in SkTCopyOnFirstWrite() 146 explicit SkTCopyOnFirstWrite(const T* initial) : fObj(initial) {} in SkTCopyOnFirstWrite() 167 void init(const T& initial) { in init()
|
/third_party/node/test/fixtures/wpt/wasm/webapi/esm-integration/resources/ |
D | wasm-js-cycle.js | 4 let jsMem = new WebAssembly.Memory({ initial: 10 }); property 5 let jsTab = new WebAssembly.Table({ initial: 10, element: "anyfunc" }); property
|
D | js-wasm-cycle-memory.js | 1 export const mem = new WebAssembly.Memory({ initial: 10 }); property
|
/third_party/node/test/fixtures/wpt/streams/readable-byte-streams/ |
D | non-transferable-buffers.any.js | 11 const memory = new WebAssembly.Memory({ initial: 1 }); property 26 const memory = new WebAssembly.Memory({ initial: 1 }); property 45 const memory = new WebAssembly.Memory({ initial: 1 }); property
|
/third_party/node/test/fixtures/wpt/wasm/jsapi/ |
D | prototypes.any.js | 26 let memory = new _Memory({initial: 0, maximum: 1}); property 33 let table = new _Table({initial: 0, element: "anyfunc"}); property
|
D | bad-imports.js | 141 [new WebAssembly.Memory({"initial": 256}), "WebAssembly.Memory object (too large)"], property 170 …[new WebAssembly.Table({"element": "anyfunc", "initial": 256}), "WebAssembly.Table object (too lar… property
|
D | idlharness.any.js | 17 Memory: [new WebAssembly.Memory({initial: 1024})], property
|
D | instanceTestFactory.js | 63 return new WebAssembly.Memory({ "initial": 64, maximum: 128 }); property 112 "memory": new WebAssembly.Memory({ "initial": 64, maximum: 128 }), property 113 "table": new WebAssembly.Table({ "element": "anyfunc", "initial": 64, maximum: 128 }), property 144 "memory": new WebAssembly.Memory({ "initial": 64, maximum: 128 }), property 145 "table": new WebAssembly.Table({ "element": "anyfunc", "initial": 64, maximum: 128 }), property 172 "c": { "": new WebAssembly.Memory({ "initial": 64, maximum: 128 }) }, property 173 "d": { "": new WebAssembly.Table({ "element": "anyfunc", "initial": 64, maximum: 128 }) }, property
|
/third_party/node/test/wasi/ |
D | test-wasi-initialize-validation.js | 51 memory: new WebAssembly.Memory({ initial: 1 }), property 75 memory: new WebAssembly.Memory({ initial: 1 }), property 141 memory: new WebAssembly.Memory({ initial: 1 }), property
|
D | test-wasi-start-validation.js | 49 return { memory: new WebAssembly.Memory({ initial: 1 }) }; property 72 memory: new WebAssembly.Memory({ initial: 1 }), property 138 memory: new WebAssembly.Memory({ initial: 1 }), property
|
/third_party/rust/crates/nix/test/sys/ |
D | test_stat.rs | 15 let initial = FileFlag::from_bits_truncate( in test_chflags() localVariable
|
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/classes/class_declarations/class_heritage_specification/ |
D | class_heritage_specification_4.ts | 30 static initial = new Compute(0, 0); property in Compute
|
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/classes/class_declarations/ |
D | class_declarations_2.ts | 28 static initial = new MyClass(0, 0); property in MyClass
|
/third_party/typescript/tests/baselines/reference/ |
D | namedTupleMembers.js | 98 function useState(initial) { argument
|
/third_party/node/deps/v8/src/base/ |
D | atomic-utils.h | 26 explicit AtomicValue(T initial) in AtomicValue()
|