/third_party/typescript/tests/baselines/reference/ |
H A D | typeSatisfaction_propertyValueConformance3.js | 14 exports.__esModule = true;
15 exports.Palette = void 0;
17 exports.Palette = {
|
H A D | visibilityOfCrossModuleTypeUsage.js | 30 exports.__esModule = true;
34 exports.__esModule = true;
37 exports.__esModule = true;
|
H A D | voidReturnIndexUnionInference.js | 29 exports.__esModule = true;
30 exports.safeInvoke = void 0;
40 exports.safeInvoke = safeInvoke;
|
H A D | privacyVarDeclFile.js | 429 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 D | superInStaticMembers1(target=es5).js | 496 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 D | loader.js | 71 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 D | resolve.js | 71 * 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 D | native_module.cpp | 27 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 D | faultlogger_test_napi.cpp | 36 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 D | native_module.cpp | 26 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 D | router_module.cpp | 26 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 D | webgl_query.h | 29 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 D | webgl_sampler.h | 29 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 D | webgl_transform_feedback.h | 30 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 D | webgl_vertex_array_object.h | 30 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 D | webgl_sync.h | 29 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 D | webgl2_rendering_context.h | 33 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 D | add-abort-signal.js | 32 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 D | test_symbol.c | 28 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 D | test_fatal.c | 35 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 D | test_init_order.cc | 31 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 D | test_worker_buffer_callback.c | 26 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 D | test_worker_terminate.c | 26 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 D | binding.cc | 13 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 D | binding.cc | 36 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()
|