/third_party/node/lib/internal/ |
D | vm.js | 74 cachedData, produceCachedData, parsingContext, contextExtensions, argument 81 cachedData, 93 if (result.cachedData) { 94 result.function.cachedData = result.cachedData; 112 cachedData, argument 126 cachedData,
|
/third_party/node/test/parallel/ |
D | test-vm-createcacheddata.js | 11 let cachedData = script.createCachedData(); variable 12 assert(cachedData instanceof Buffer); 14 assert(!new Script(source, { cachedData }).cachedDataRejected); field 19 cachedData = script.createCachedData(); 21 assert(!new Script(source, { cachedData }).cachedDataRejected); field
|
D | test-vm-cached-data.js | 44 for (const cachedData of common.getArrayBufferViews(data)) { 47 cachedData field 69 cachedData: data property 82 cachedData: data property 91 cachedData: 'ohai' property
|
D | test-vm-module-cached-data.js | 12 const cachedData = m.createCachedData(); constant 14 new SourceTextModule('const a = 1', { cachedData }); field 17 new SourceTextModule('differentSource', { cachedData }); field
|
D | test-vm-basic.js | 334 assert.ok(result.cachedData.length > 0); 338 cachedData: result.cachedData property 343 cachedData: result.cachedData property
|
D | test-vm-options-validation.js | 59 new vm.Script('void 0', { cachedData: value }); property
|
D | test-vm-module-errors.js | 232 () => new SourceTextModule('import "foo";', { cachedData: invalidArg }), property
|
/third_party/node/lib/ |
D | vm.js | 79 cachedData, 88 if (cachedData !== undefined) { 89 validateBuffer(cachedData, 'options.cachedData'); 103 cachedData, 309 cachedData = undefined, 319 if (cachedData !== undefined) 320 validateBuffer(cachedData, 'options.cachedData'); 346 cachedData, produceCachedData, parsingContext, contextExtensions,
|
/third_party/node/lib/internal/vm/ |
D | module.js | 126 options.cachedData); 276 cachedData, 290 if (cachedData !== undefined) { 291 validateBuffer(cachedData, 'options.cachedData'); 300 cachedData, property
|
/third_party/skia/src/image/ |
D | SkImage_Lazy.cpp | 307 auto cachedData = static_cast<SkCachedData*>(data); in textureProxyViewFromPlanes() local 308 SkASSERT(cachedData); in textureProxyViewFromPlanes() 309 cachedData->unref(); in textureProxyViewFromPlanes()
|
/third_party/skia/src/gpu/gl/builders/ |
D | GrGLProgramBuilder.cpp | 552 const SkData& cachedData) { in PrecompileProgram() argument 553 SkReadBuffer reader(cachedData.data(), cachedData.size()); in PrecompileProgram()
|
/third_party/node/doc/api/ |
D | vm.md | 73 description: The `cachedData` and `produceCachedData` options are 85 * `cachedData` {Buffer|TypedArray|DataView} Provides an optional `Buffer` or 89 * `produceCachedData` {boolean} When `true` and no `cachedData` is present, V8 92 `cachedData` property of the returned `vm.Script` instance. 127 When `cachedData` is supplied to create the `vm.Script`, this value will be set 140 `cachedData` option. Returns a `Buffer`. This method may be called at any 751 * `cachedData` {Buffer|TypedArray|DataView} Provides an optional `Buffer` or 754 `cachedData` was created. 854 `cachedData` option. Returns a `Buffer`. This method may be called any number 872 const cachedData = module.createCachedData(); [all …]
|
D | v8.md | 24 whether a [`vm.Script`][] `cachedData` buffer is compatible with this instance
|
D | errors.md | 3015 The `cachedData` option passed to a module constructor is invalid.
|
/third_party/skia/src/gpu/mtl/ |
D | GrMtlPipelineStateBuilder.mm | 738 bool GrMtlPipelineStateBuilder::PrecompileShaders(GrMtlGpu* gpu, const SkData& cachedData, 742 SkReadBuffer reader(cachedData.data(), cachedData.size());
|
/third_party/node/src/ |
D | jsvm.h | 237 const uint8_t* cachedData, 260 const uint8_t* cachedData,
|
D | js_native_api_v8.cc | 1496 const uint8_t *cachedData, in OH_JSVM_CompileScript() argument 1513 v8::ScriptCompiler::CachedData* cache = cachedData in OH_JSVM_CompileScript() 1514 ? new v8::ScriptCompiler::CachedData(cachedData, cachedDataLength) : nullptr; in OH_JSVM_CompileScript() 1582 const uint8_t* cachedData, in OH_JSVM_CompileScriptWithOrigin() argument 1608 v8::ScriptCompiler::CachedData* cache = cachedData in OH_JSVM_CompileScriptWithOrigin() 1609 ? new v8::ScriptCompiler::CachedData(cachedData, cachedDataLength) : nullptr; in OH_JSVM_CompileScriptWithOrigin()
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V5.md | 651 …cachedData'` options to `new vm.Script()` to interact with V8's code cache. When a new `vm.Script`… 770 …odejs/node/commit/d1cacb814f)] - **(SEMVER-MINOR)** **vm**: introduce `cachedData`/`produceCachedD…
|
D | CHANGELOG_V11.md | 2406 * \[[`2331181410`](https://github.com/nodejs/node/commit/2331181410)] - **vm**: allow `cachedData` …
|
D | CHANGELOG_V18.md | 1267 …hub.com/nodejs/node/commit/563f9fe06a)] - **doc,vm**: clarify usage of cachedData in vm.compileFun…
|
D | CHANGELOG_V14.md | 3942 …js/node/commit/92c7e0620f)] - **test**: check args on SourceTextModule cachedData (Juan José Arbol…
|
D | CHANGELOG_V10.md | 1035 …om/nodejs/node/commit/d9d31e8d51)] - **(SEMVER-MINOR)** **vm**: allow `cachedData` to also be Type…
|
D | CHANGELOG_V12.md | 2210 …js/node/commit/3015887019)] - **test**: check args on SourceTextModule cachedData (Juan José Arbol…
|
/third_party/node/deps/corepack/dist/lib/ |
D | corepack.cjs | 19397 cachedData: buffer, 19401 this._cacheStore.set(filename, invalidationKey, script.cachedData);
|