Home
last modified time | relevance | path

Searched full:addons (Results 1 – 25 of 171) sorted by relevance

1234567

/third_party/typescript/tests/baselines/reference/docker/
Dxterm.js.log13 addons/xterm-addon-ligatures/src/font.ts(6,29): error TS2307: Cannot find module 'font-finder' or i…
14 addons/xterm-addon-ligatures/src/font.ts(7,32): error TS2307: Cannot find module 'font-ligatures' o…
15 addons/xterm-addon-ligatures/src/index.ts(7,22): error TS2307: Cannot find module 'font-ligatures' …
16 addons/xterm-addon-ligatures/src/index.ts(75,14): error TS2347: Untyped function calls may not acce…
17 addons/xterm-addon-ligatures/src/index.ts(76,9): error TS7006: Parameter 'range' implicitly has an …
18 addons/xterm-addon-ligatures/src/index.test.ts(6,23): error TS2307: Cannot find module 'path' or it…
19 addons/xterm-addon-ligatures/src/index.test.ts(7,24): error TS2307: Cannot find module 'sinon' or i…
20 addons/xterm-addon-ligatures/src/index.test.ts(9,29): error TS2307: Cannot find module 'font-finder…
21 addons/xterm-addon-ligatures/src/index.test.ts(10,32): error TS2307: Cannot find module 'font-ligat…
22 addons/xterm-addon-ligatures/src/index.test.ts(26,25): error TS2304: Cannot find name '__dirname'.
[all …]
/third_party/skia/third_party/externals/brotli/
D.travis.yml13 addons:
22 addons:
35 addons:
48 addons:
61 addons:
70 addons:
83 addons:
106 addons:
117 addons:
150 addons:
[all …]
/third_party/node/tools/doc/
Daddon-verify.mjs1 // doc/api/addons.md has a bunch of code. Extract it for verification
5 // Triggered from the build-addons target in the Makefile and vcbuild.bat.
15 const doc = new URL('./doc/api/addons.md', rootDir);
16 const verifyDir = new URL('./test/addons/', rootDir);
20 const addons = {}; constant
30 addons[currentHeader] = { files: {} }; variable
34 addons[currentHeader].files[match[1]] = node.value;
40 Object.keys(addons).flatMap(
41 (header) => verifyFiles(addons[header].files, header)
/third_party/jerryscript/
D.travis.yml18 addons:
29 addons:
38 addons:
53 addons:
60 addons:
83 addons:
93 addons:
103 addons:
120 addons:
135 addons:
[all …]
/third_party/libexif/
D.travis.yml13 addons:
58 addons:
67 addons:
78 addons:
92 addons:
106 addons:
118 addons:
130 addons:
140 addons:
149 addons:
[all …]
/third_party/benchmark/
D.travis.yml8 addons:
14 addons:
26 addons:
46 addons:
57 addons:
69 addons:
85 addons:
101 addons:
116 addons:
130 addons:
/third_party/node/test/addons/no-addons/
Dtest-worker.js1 // Flags: --no-addons
16 'Cannot load native addon because loading addons is disabled.'
42 // Explicitly pass `--no-addons`
45 execArgv: ['--no-addons'],
52 // If `execArgv` is overwritten it should still fail to load addons
Dtest.js1 // Flags: --no-addons
15 'Cannot load native addon because loading addons is disabled.'
/third_party/node/
DMakefile103 # and recreated which can break the addons build when running test-ci
104 # See comments on the build-addons target for some more info
178 $(MAKE) test-addons-clean
179 $(MAKE) bench-addons-clean
276 jstest: build-addons build-js-native-api-tests build-node-api-tests ## Runs addon tests and JS tests
298 $(MAKE) -s build-addons
306 $(MAKE) build-addons
315 $(MAKE) build-addons
330 DOCBUILDSTAMP_PREREQS = tools/doc/addon-verify.mjs doc/api/addons.md
338 test/addons/.docbuildstamp: $(DOCBUILDSTAMP_PREREQS) tools/doc/node_modules
[all …]
Dvcbuild.bat19 set NATIVE_SUITES=addons js-native-api node-api
98 if /i "%1"=="build-addons" set build_addons=1&goto arg-ok
101 if /i "%1"=="test-addons" set test_args=%test_args% addons&set build_addons=1&goto arg-ok
545 REM only install if building doc OR testing doctool OR building addons
584 echo Building addons
586 for /d %%F in (test\addons\??_*) do (
592 :: building addons
595 "%node_exe%" "%~dp0tools\build-addons.js" "%~dp0deps\npm\node_modules\node-gyp\bin\node-gyp.js" "%~…
613 "%node_exe%" "%~dp0tools\build-addons.js" "%~dp0deps\npm\node_modules\node-gyp\bin\node-gyp.js" "%~…
632 "%node_exe%" "%~dp0tools\build-addons.js" "%~dp0deps\npm\node_modules\node-gyp\bin\node-gyp.js" "%~…
[all …]
/third_party/node/test/es-module/
Dtest-esm-no-addons.mjs8 const tests = [[], ['--no-addons']];
15 loadFixture('pkgexports/no-addons').then(
20 assert.strictEqual(message, 'using native addons');
22 assert.strictEqual(message, 'not using native addons');
/third_party/node/test/parallel/
Dtest-no-addons-resolution-condition.js12 const tests = [[], ['--no-addons']];
21 assert.strictEqual(message, 'using native addons');
23 assert.strictEqual(message, 'not using native addons');
29 const message = loadFixture('pkgexports/no-addons');
/third_party/node/doc/api/
Daddons.md1 # C++ addons
7 [`require()`][require] function can load addons as ordinary Node.js modules.
8 Addons provide an interface between JavaScript and C/C++ libraries.
10 There are three options for implementing addons: Node-API, nan, or direct
13 Refer to [C/C++ addons with Node-API](n-api.md) for more information on
16 When not using Node-API, implementing addons is complicated,
31 more sophisticated asynchronous addons that need to move beyond the
37 * Internal Node.js libraries. Node.js itself exports C++ APIs that addons can
43 re-exported by Node.js and may be used to various extents by addons. See
88 All Node.js addons must export an initialization function following
[all …]
Daddons.json3 "source": "doc/api/addons.md",
7 "textRaw": "C++ addons",
8 "name": "C++ addons",
11Addons</em> are dynamically-linked shared objects written in C++. The\n<a href=\"modules.html#modu…
16addons must export an initialization function following\nthe pattern:</p>\n<pre><code class=\"lang…
19 "textRaw": "Context-aware addons",
21 …"desc": "<p>There are environments in which Node.js addons may need to be loaded multiple\ntimes i…
35 …eads.html#worker_threads_class_worker\"><code>Worker</code></a> threads, addons need to clean up a…
41 "displayName": "Context-aware addons"
46addons.</p>\n<pre><code class=\"language-json\">{\n \"targets\": [\n {\n \"target_name\":…
[all …]
Daddons.html7 <title>C++ addons | Node.js v14.21.2 Documentation</title>
11 <link rel="canonical" href="https://nodejs.org/api/addons.html">
13 <body class="alt apidoc" id="api-section-addons">
30 <li><a href="addons.html" class="nav-addons active">C++ addons</a></li>
31 <li><a href="n-api.html" class="nav-n-api">C/C++ addons with Node-API</a></li>
89 <div id="column1" data-id="addons" class="interior">
114 <a href="addons.json">View as JSON</a>
119 …<ol class="version-picker"><li><a href="https://nodejs.org/docs/latest-v19.x/api/addons.html">19.x…
120 <li><a href="https://nodejs.org/docs/latest-v18.x/api/addons.html">18.x <b>LTS</b></a></li>
121 <li><a href="https://nodejs.org/docs/latest-v17.x/api/addons.html">17.x</a></li>
[all …]
Dindex.md16 * [C++ addons](addons.md)
17 * [C/C++ addons with Node-API](n-api.md)
/third_party/node/test/fixtures/node_modules/pkgexports/
Dpackage.json23 "./no-addons": {
24 "node-addons": "./addons-entry.js",
25 "default": "./no-addons-entry.js"
/third_party/node/test/abort/
Dtest-addon-register-signal-handler.js4 // This is a sibling test to test/addons/register-signal-handler/
7 require('../addons/register-signal-handler/test');
/third_party/node/deps/npm/node_modules/has-symbols/
D.npmignore26 # Compiled binary addons (http://nodejs.org/api/addons.html)
/third_party/node/deps/npm/node_modules/is-date-object/
D.npmignore19 # Compiled binary addons (http://nodejs.org/api/addons.html)
/third_party/node/deps/npm/node_modules/object.getownpropertydescriptors/
D.npmignore19 # Compiled binary addons (http://nodejs.org/api/addons.html)
/third_party/node/deps/npm/node_modules/umask/
D.npmignore19 # Compiled binary addons (http://nodejs.org/api/addons.html)
/third_party/python/
D.travis.yml41 addons:
65 addons:
80 addons:
109 addons:
/third_party/mbedtls/
D.travis.yml11 addons:
62 addons:
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/
D.travis.yml26 addons:
38 addons:
46 addons:

1234567