Home
last modified time | relevance | path

Searched refs:exports (Results 1451 - 1475 of 4097) sorted by relevance

1...<<51525354555657585960>>...164

/third_party/typescript/tests/baselines/reference/
H A DtypeSatisfaction_propertyValueConformance3.js14 exports.__esModule = true;
15 exports.Palette = void 0;
17 exports.Palette = {
H A DvisibilityOfCrossModuleTypeUsage.js30 exports.__esModule = true;
34 exports.__esModule = true;
37 exports.__esModule = true;
H A DvoidReturnIndexUnionInference.js29 exports.__esModule = true;
30 exports.safeInvoke = void 0;
40 exports.safeInvoke = safeInvoke;
H A DprivacyVarDeclFile.js429 exports.__esModule = true;
430 exports.publicModule = exports.publicVarWithPrivateModulePropertyTypes = exports.publicClassWithPrivateModulePropertyTypes = exports.publicVarWithPublicPropertyTypes = exports.publicVarWithPrivatePropertyTypes = exports.publicClassWithWithPublicPropertyTypes = exports.publicClassWithWithPrivatePropertyTypes = exports.publicClass = void 0;
441 exports
[all...]
H A DsuperInStaticMembers1(target=es5).js496 Object.defineProperty(exports, "__esModule", { value: true });
497 exports.Reflect = void 0;
503 exports.Reflect = Reflect;
509 exports.default = default_1;
529 Object.defineProperty(exports, "__esModule", { value: true });
661 Object.defineProperty(exports, "__esModule", { value: true });
690 Object.defineProperty(exports, "__esModule", { value: true });
719 Object.defineProperty(exports, "__esModule", { value: true });
750 Object.defineProperty(exports, "__esModule", { value: true });
782 Object.defineProperty(exports, "__esModul
[all...]
/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...]
/third_party/node/lib/internal/modules/esm/
H A Dresolve.js71 * Emits a deprecation warning for the use of a deprecated trailing slash pattern mapping in the "exports" field
83 `"exports" field module resolution of the package at ${pjsonPath}${
99 * @param {boolean} internal - Whether the module is in the "imports" or "exports" field.
111 }in the "${internal ? 'imports' : 'exports'}" field module resolution of the package at ${
120 * the package.json file does not define a "main" or "exports" field.
134 `No "main" or "exports" field defined in the package.json for ${pkgPath
376 * @param {boolean} internal - Whether the resolution is for an "imports" or "exports" field in package.json.
382 internal ? 'imports' : 'exports'}" resolution of ${
579 '"exports" cannot contain numeric property keys.');
602 * Is the given exports objec
[all...]
/applications/standard/contacts_data/contacts/src/
H A Dnative_module.cpp27 static napi_value ModuleInit(napi_env env, napi_value exports) in ModuleInit() argument
29 OHOS::ContactsApi::Init(env, exports); in ModuleInit()
30 return exports; in ModuleInit()
/base/hiviewdfx/hiview/plugins/faultlogger/interfaces/js/test/unittest/cpp/
H A Dfaultlogger_test_napi.cpp36 static napi_value Init(napi_env env, napi_value exports) in Init() argument
42 napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc); in Init()
43 return exports; in Init()
/foundation/bundlemanager/bundle_framework/interfaces/kits/js/free_install/
H A Dnative_module.cpp26 static napi_value FreeInstallExport(napi_env env, napi_value exports) in FreeInstallExport() argument
45 NAPI_CALL(env, napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc)); in FreeInstallExport()
47 return exports; in FreeInstallExport()
/foundation/arkui/ace_engine_lite/frameworks/src/core/modules/
H A Drouter_module.cpp26 void InitRouterModule(JSIValue exports) in InitRouterModule() argument
28 JSI::SetModuleAPI(exports, "replace", RouterModule::Replace); in InitRouterModule()
29 JSI::SetModuleAPI(exports, "replaceUrl", RouterModule::Replace); in InitRouterModule()
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/webgl/include/webgl/
H A Dwebgl_query.h29 bool Export(napi_env env, napi_value exports) override;
33 WebGLQuery(napi_env env, napi_value exports) : NExporter(env, exports), query_(0) {}; in WebGLQuery() argument
H A Dwebgl_sampler.h29 bool Export(napi_env env, napi_value exports) override;
48 WebGLSampler(napi_env env, napi_value exports) : NExporter(env, exports), samplerId_(0) {}; in WebGLSampler() argument
H A Dwebgl_transform_feedback.h30 bool Export(napi_env env, napi_value exports) override;
59 WebGLTransformFeedback(napi_env env, napi_value exports) : NExporter(env, exports), transformFeedback_(0) {}; in WebGLTransformFeedback() argument
H A Dwebgl_vertex_array_object.h30 bool Export(napi_env env, napi_value exports) override;
49 WebGLVertexArrayObject(napi_env env, napi_value exports) : NExporter(env, exports), vertexArrays_(0) {}; in WebGLVertexArrayObject() argument
H A Dwebgl_sync.h29 bool Export(napi_env env, napi_value exports) override;
50 WebGLSync(napi_env env, napi_value exports) : NExporter(env, exports), sync_(0) {}; in WebGLSync() argument
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/webgl/include/context/
H A Dwebgl2_rendering_context.h33 bool Export(napi_env env, napi_value exports) override;
35 WebGL2RenderingContext(napi_env env, napi_value exports) in WebGL2RenderingContext() argument
37 NExporter(env, exports), contextImpl_(WEBGL_2_0, this) {}; // 2 is WebGL2 in WebGL2RenderingContext()
/third_party/node/lib/internal/streams/
H A Dadd-abort-signal.js32 module.exports.addAbortSignal = function addAbortSignal(signal, stream) {
37 return module.exports.addAbortSignalNoValidate(signal, stream);
40 module.exports.addAbortSignalNoValidate = function(signal, stream) {
/third_party/node/test/js-native-api/test_symbol/
H A Dtest_symbol.c28 napi_value Init(napi_env env, napi_value exports) { in Init() argument
34 env, exports, sizeof(properties) / sizeof(*properties), properties)); in Init()
36 return exports; in Init()
/third_party/node/test/node-api/test_fatal/
H A Dtest_fatal.c35 static napi_value Init(napi_env env, napi_value exports) { in Init() argument
43 env, exports, sizeof(properties) / sizeof(*properties), properties)); in Init()
45 return exports; in Init()
/third_party/node/test/node-api/test_init_order/
H A Dtest_init_order.cc31 napi_value Init(napi_env env, napi_value exports) { in Init() argument
46 env, exports, std::size(descriptors), descriptors)); in Init()
48 return exports; in Init()
/third_party/node/test/node-api/test_worker_buffer_callback/
H A Dtest_worker_buffer_callback.c26 env, exports, sizeof(properties) / sizeof(*properties), properties)); in NAPI_MODULE_INIT()
43 NODE_API_CALL(env, napi_set_named_property(env, exports, "buffer", buffer)); in NAPI_MODULE_INIT()
45 return exports; in NAPI_MODULE_INIT()
/third_party/node/test/node-api/test_worker_terminate/
H A Dtest_worker_terminate.c26 napi_value Init(napi_env env, napi_value exports) { in Init() argument
32 env, exports, sizeof(properties) / sizeof(*properties), properties)); in Init()
34 return exports; in Init()
/third_party/node/test/addons/hello-world/
H A Dbinding.cc13 NODE_MODULE_INITIALIZER(v8::Local<v8::Object> exports, in NODE_MODULE_INITIALIZER() argument
16 NODE_SET_METHOD(exports, "hello", Method); in NODE_MODULE_INITIALIZER()
19 static void FakeInit(v8::Local<v8::Object> exports, in FakeInit() argument
/third_party/node/test/addons/null-buffer-neuter/
H A Dbinding.cc36 void init(v8::Local<v8::Object> exports) { in init() argument
37 NODE_SET_METHOD(exports, "run", Run); in init()
38 NODE_SET_METHOD(exports, "isAlive", IsAlive); in init()

Completed in 17 milliseconds

1...<<51525354555657585960>>...164