Home
last modified time | relevance | path

Searched refs:exports (Results 1301 - 1325 of 5337) sorted by relevance

1...<<51525354555657585960>>...214

/test/xts/acts/powermgr/ndk/entry/src/main/cpp/
H A Dnapi_init.cpp139 static napi_value CreateEnumPluggedType(napi_env env, napi_value exports) in CreateEnumPluggedType() argument
162 napi_set_named_property(env, exports, "BatteryInfo_BatteryPluggedType", result); in CreateEnumPluggedType()
164 return exports; in CreateEnumPluggedType()
168 static napi_value Init(napi_env env, napi_value exports) in Init() argument
179 napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc); in Init()
181 CreateEnumPluggedType(env, exports); in Init()
182 return exports; in Init()
/third_party/typescript/tests/baselines/reference/tscWatch/projectsWithReferences/
H A Dwhen-referenced-project-uses-different-module-resolution.js55 exports.__esModule = true;
56 exports.A = void 0;
62 exports.A = A;
108 exports.__esModule = true;
109 exports.b = void 0;
111 exports.b = new a_1.A();
176 exports.__esModule = true;
/third_party/typescript/tests/baselines/reference/
H A DimportHelpers.js51 Object.defineProperty(exports, "__esModule", { value: true });
52 exports.result = exports.B = exports.A = void 0;
59 exports.A = A;
67 exports.B = B;
87 exports.result = id(templateObject_1 || (templateObject_1 = tslib_1.__makeTemplateObject(["hello world"], ["hello world"])));
H A DcontrolFlowPropertyDeclarations.js154 exports.__esModule = true;
155 exports.StyleParser = exports.HTMLtoJSX = void 0;
275 exports.HTMLtoJSX = HTMLtoJSX;
293 exports.StyleParser = StyleParser;
H A DimportHelpersInIsolatedModules.js38 Object.defineProperty(exports, "__esModule", { value: true });
39 exports.B = exports.A = void 0;
46 exports.A = A;
54 exports.B = B;
H A DimportHelpersNoModule.js30 Object.defineProperty(exports, "__esModule", { value: true });
31 exports.B = exports.A = void 0;
38 exports.A = A;
46 exports.B = B;
H A DindexedAccessTypeConstraints.js56 exports.__esModule = true;
57 exports.Bar = exports.Foo = void 0;
77 exports.Foo = Foo;
88 exports.Bar = Bar;
/foundation/arkui/napi/interfaces/inner_api/cjffi/ark_interop/
H A Dark_interop_module.cpp24 ARKTS_Value (*exportModule)(ARKTS_Env env, const char* dllName, ARKTS_Value exports) = nullptr;
103 auto exports = ARKTS_CreateObject(env); in ARKTS_LoadModule() local
105 exports = g_cjModuleCallbacks->exportModule(env, dllName, exports); in ARKTS_LoadModule()
107 return ARKTSInner_Escape(env, scope, exports); in ARKTS_LoadModule()
/foundation/graphic/graphic_3d/kits/js/include/
H A DLightJS.h41 static void Init(const char* name, napi_env env, napi_value exports,
45 static void RegisterEnums(NapiApi::Object exports);
74 static void Init(napi_env env, napi_value exports);
86 static void Init(napi_env env, napi_value exports);
99 static void Init(napi_env env, napi_value exports);
/foundation/multimodalinput/input/frameworks/napi/input_device/include/
H A Djs_input_device_context.h28 static napi_value Export(napi_env env, napi_value exports);
84 static napi_value CreateEnumKeyboardType(napi_env env, napi_value exports);
85 static napi_value CreateEnumVKeyResult(napi_env env, napi_value exports);
86 static napi_value CreateEnumMotionSpaceType(napi_env env, napi_value exports);
87 static napi_value CreateEnumPageType(napi_env env, napi_value exports);
/foundation/multimodalinput/input/frameworks/napi/touch_event/src/
H A Djs_touch_event.cpp46 napi_value JsTouchEvent::Export(napi_env env, napi_value exports) in Export() argument
61 CHKRP(napi_set_named_property(env, exports, "Action", action), SET_NAMED_PROPERTY); in Export()
76 CHKRP(napi_set_named_property(env, exports, "ToolType", toolType), SET_NAMED_PROPERTY); in Export()
86 CHKRP(napi_set_named_property(env, exports, "SourceType", sourceType), SET_NAMED_PROPERTY); in Export()
87 return exports; in Export()
/foundation/communication/netstack/frameworks/js/napi/tls/include/
H A Dtlssocketserver_module.h79 static napi_value InitTLSSocketServerModule(napi_env env, napi_value exports);
83 static void DefineTLSSocketServerClass(napi_env env, napi_value exports);
84 static void InitTLSSocketServerProperties(napi_env env, napi_value exports);
85 static void InitProtocol(napi_env env, napi_value exports);
86 static void DefineTLSSocketConnectionClass(napi_env env, napi_value exports);
/third_party/node/lib/
H A Dwasi.js38 validateObject(instance.exports, 'instance.exports');
41 self[kSetMemory](instance.exports.memory);
108 const { _start, _initialize } = this[kInstance].exports;
110 validateFunction(_start, 'instance.exports._start');
111 validateUndefined(_initialize, 'instance.exports._initialize');
133 const { _start, _initialize } = this[kInstance].exports;
135 validateUndefined(_start, 'instance.exports._start');
137 validateFunction(_initialize, 'instance.exports._initialize');
144 module.exports
[all...]
/third_party/node/deps/v8/third_party/wasm-api/example/
H A Dtrap.c89 printf("Extracting exports...\n"); in main()
90 own wasm_extern_vec_t exports; in main() local
91 wasm_instance_exports(instance, &exports); in main()
92 if (exports.size < 2) { in main()
93 printf("> Error accessing exports!\n"); in main()
102 const wasm_func_t* func = wasm_extern_as_func(exports.data[i]); in main()
145 wasm_extern_vec_delete(&exports); in main()
H A Dcallback.c126 own wasm_extern_vec_t exports; in main() local
127 wasm_instance_exports(instance, &exports); in main()
128 if (exports.size == 0) { in main()
129 printf("> Error accessing exports!\n"); in main()
132 const wasm_func_t* run_func = wasm_extern_as_func(exports.data[0]); in main()
154 wasm_extern_vec_delete(&exports); in main()
/third_party/node/test/fixtures/wpt/wasm/jsapi/exception/
H A Dbasic.tentative.any.js42 assert_throws_wasm(() => instance.exports.throw_param(v), String(v));
57 assert_throws_wasm(() => instance.exports.throw_null());
71 assert_throws_wasm(() => instance.exports.throw_int());
96 assert_throws_exactly(error, () => instance.exports.catch_exception());
120 assert_throws_exactly(error, () => instance.exports.catch_and_rethrow());
/third_party/node/test/fixtures/
H A Dtls-connect.js16 exports.assert = require('assert');
17 exports.debug = util.debuglog('test');
18 exports.tls = tls;
21 exports.keys = {
45 exports.connect = function connect(options, callback) {
/third_party/node/benchmark/napi/type-tag/
H A Dbinding.c11 #define EXPORT_FUNC(env, exports, name, func) \
21 (exports), \
81 EXPORT_FUNC(env, exports, "tagObject", TagObject); in NAPI_MODULE_INIT()
82 EXPORT_FUNC(env, exports, "checkObjectTag", CheckObjectTag); in NAPI_MODULE_INIT()
83 return exports; in NAPI_MODULE_INIT()
/third_party/node/deps/npm/node_modules/@sigstore/sign/dist/bundler/
H A Dbundle.js25 Object.defineProperty(exports, "__esModule", { value: true });
26 exports.toDSSEBundle = exports.toMessageSignatureBundle = void 0;
57 exports.toMessageSignatureBundle = toMessageSignatureBundle;
70 exports.toDSSEBundle = toDSSEBundle;
/third_party/node/deps/npm/node_modules/diff/lib/diff/
H A Djson.js4 Object.defineProperty(exports, "__esModule", {
7 exports.diffJson = diffJson;
8 exports.canonicalize = canonicalize;
9 exports.jsonDiff = void 0;
42 exports.jsonDiff = jsonDiff;
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/selectors/
H A Dnamespace.js3 exports.__esModule = true;
4 exports["default"] = void 0;
78 exports["default"] = Namespace;
80 module.exports = exports.default
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/
H A Dprocessor.js3 exports.__esModule = true;
4 exports["default"] = void 0;
169 exports["default"] = Processor;
170 module.exports = exports.default
/third_party/typescript/tests/baselines/reference/tsbuild/declarationEmit/
H A Dwhen-declaration-file-is-referenced-through-triple-slash.js90 exports.__esModule = true;
155 exports.__esModule = true;
242 exports.__esModule = true;
243 exports.getVar = void 0;
250 exports.getVar = getVar;
/third_party/typescript/tests/baselines/reference/tsbuild/moduleSpecifiers/
H A Dsynthesized-module-specifiers-resolve-correctly.js149 exports.__esModule = true;
198 exports.__esModule = true;
270 exports.__esModule = true;
271 exports.getVar = void 0;
278 exports.getVar = getVar;
/third_party/node/lib/internal/modules/cjs/
H A Dloader.js71 module.exports = {
254 setOwnProperty(this, 'exports', {});
295 '(function (exports, require, module, __filename, __dirname) { ',
542 if (!pkg || pkg.exports == null || pkg.name === undefined) {
576 * Resolves the exports for a given module path and request.
587 if (pkg.exists && pkg.exports != null) {
879 * Emits a warning when a non-existent property of module exports is accessed inside a circular dependency.
884 `Accessing non-existent property '${String(prop)}' of module exports ` +
889 // A Proxy that can be used as the prototype of a module.exports object and
897 // ES module, and is not used as a regular key of `module.exports`
[all...]

Completed in 9 milliseconds

1...<<51525354555657585960>>...214