/third_party/typescript/tests/baselines/reference/ |
H A D | jsDeclarationsExportSubAssignments.js | 7 module.exports = Foo; 8 module.exports.Strings = Strings;
20 module.exports = Foo;
21 module.exports.Strings = Strings;
|
H A D | jsDeclarationsImportTypeBundled.js | 11 module.exports = x;
15 module.exports = items;
25 module.exports = x;
28 module.exports = items;
|
H A D | jsDeclarationsTypeReferences3.js | 11 module.exports.A = {} 12 module.exports.A.B = { 20 module.exports.A = {};
21 module.exports.A.B = {
|
H A D | libReferenceNoLibBundle.js | 24 define("file1", ["require", "exports"], function (require, exports) {
26 Object.defineProperty(exports, "__esModule", { value: true });
27 exports.elem = void 0;
28 exports.elem = { field: 'a' };
|
H A D | literalTypeNameAssertionNotTriggered.js | 15 exports.__esModule = true;
16 exports.x = void 0;
18 exports.x = x;
21 exports.__esModule = true;
|
H A D | aliasAssignments.js | 18 exports.__esModule = true;
19 exports.someClass = void 0;
25 exports.someClass = someClass;
28 exports.__esModule = true;
|
H A D | voidAsNonAmbiguousReturnType.js | 18 exports.__esModule = true;
19 exports.mkdirSync = void 0;
21 exports.mkdirSync = mkdirSync;
24 exports.__esModule = true;
|
H A D | privacyClassExtendsClauseDeclFile.js | 116 exports.__esModule = true;
117 exports.publicClassExtendingFromPrivateModuleClass = exports.publicClassExtendingPrivateClass = exports.publicClassExtendingPublicClass = exports.publicClass = exports.publicModule = void 0;
178 })(publicModule = exports.publicModule || (exports.publicModule = {}));
247 exports.publicClass = publicClass;
274 exports [all...] |
/third_party/node/deps/npm/node_modules/cacache/lib/ |
H A D | entry-index.js | 22 module.exports.NotFoundError = class NotFoundError extends Error { 31 module.exports.compact = compact 109 module.exports.insert = insert 143 module.exports.find = find 165 module.exports.delete = del 176 module.exports.lsStream = lsStream 226 module.exports.ls = ls 236 module.exports.bucketEntries = bucketEntries 271 module.exports.bucketDir = bucketDir 277 module.exports [all...] |
/third_party/node/lib/internal/bootstrap/ |
H A D | realm.js | 238 // The CJS exports object of the module. 239 this.exports = {}; 329 // exports from core modules as this can trigger unnecessary getters. 331 this.exportKeys = internal ? [] : ObjectKeys(this.exports); 335 return this.exports; 351 this.setExport('default', builtin.exports); 353 // Ensure immediate sync execution to capture exports now 359 // Provide named exports for all builtin libraries so that the libraries 361 // as the entire namespace (module.exports) and updates when this function is 370 getOwn(this.exports, exportNam [all...] |
/third_party/node/deps/npm/node_modules/@tufjs/models/dist/ |
H A D | role.js | 5 Object.defineProperty(exports, "__esModule", { value: true }); 6 exports.SuccinctRoles = exports.DelegatedRole = exports.Role = exports.TOP_LEVEL_ROLE_NAMES = void 0; 12 exports.TOP_LEVEL_ROLE_NAMES = [ 67 exports.Role = Role; 161 exports.DelegatedRole = DelegatedRole; 299 exports.SuccinctRoles = SuccinctRoles;
|
/third_party/node/deps/npm/node_modules/signal-exit/dist/cjs/ |
H A D | index.js | 3 Object.defineProperty(exports, "__esModule", { value: true }); 4 exports.unload = exports.load = exports.onExit = exports.signals = void 0; 10 Object.defineProperty(exports, "signals", { enumerable: true, get: function () { return signals_js_1.signals; } }); 262 exports.onExit = _a.onExit, 270 exports.load = _a.load, 278 exports.unload = _a.unload;
|
/applications/standard/app_samples/code/BasicFeature/Native/NdkOpenGL/entry/src/main/cpp/ |
H A D | module.cpp | 25 * function for module exports 28 static napi_value Init(napi_env env, napi_value exports) in Init() argument 36 NAPI_CALL(env, napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc)); in Init() 38 bool ret = NapiManager::GetInstance()->Export(env, exports); in Init() 43 return exports; in Init()
|
/applications/standard/app_samples/code/BasicFeature/Native/XComponent3D/entry/src/main/cpp/ |
H A D | module.cpp | 25 * function for module exports 28 static napi_value Init(napi_env env, napi_value exports) in Init() argument 35 NAPI_CALL(env, napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc)); in Init() 37 bool ret = NapiManager::GetInstance()->Export(env, exports); in Init() 42 return exports; in Init()
|
/foundation/CastEngine/castengine_cast_framework/interfaces/kits/js/src/ |
H A D | native_module.cpp | 33 static napi_value Init(napi_env env, napi_value exports) in Init() argument 35 InitEnums(env, exports); in Init() 36 NapiCastSessionManager::Init(env, exports); in Init() 40 return exports; in Init()
|
/foundation/communication/bluetooth/frameworks/js/napi/src/base_profile/ |
H A D | native_module_base_profile.cpp | 30 static napi_value Init(napi_env env, napi_value exports) in Init() argument 35 napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc); in Init() 36 NapiBaseProfile::DefineBaseProfileJSFunction(env, exports); in Init() 38 return exports; in Init()
|
/foundation/communication/bluetooth/frameworks/js/napi/src/constant/ |
H A D | native_module_constant.cpp | 30 static napi_value Init(napi_env env, napi_value exports) in Init() argument 35 napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc); in Init() 36 NapiConstant::DefineJSConstant(env, exports); in Init() 38 return exports; in Init()
|
/foundation/communication/bluetooth/frameworks/js/napi/src/connection/ |
H A D | native_module_connection.cpp | 26 static napi_value Init(napi_env env, napi_value exports) in Init() argument 32 napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc); in Init() 34 DefineConnectionFunctions(env, exports); in Init() 37 return exports; in Init()
|
/foundation/communication/bluetooth/frameworks/js/napi/src/hfp/ |
H A D | native_module_hfp.cpp | 31 static napi_value Init(napi_env env, napi_value exports) in Init() argument 37 napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc); in Init() 39 NapiHandsFreeAudioGateway::DefineHandsFreeAudioGatewayJSClass(env, exports); in Init() 43 return exports; in Init()
|
/foundation/communication/bluetooth/frameworks/js/napi/src/hid/ |
H A D | native_module_hid.cpp | 30 static napi_value Init(napi_env env, napi_value exports) in Init() argument 36 napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc); in Init() 38 NapiBluetoothHidHost::DefineHidHostJSClass(env, exports); in Init() 41 return exports; in Init()
|
/foundation/communication/bluetooth/frameworks/js/napi/src/opp/ |
H A D | native_module_opp.cpp | 26 static napi_value Init(napi_env env, napi_value exports)
in Init() argument 32 napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc);
in Init() 34 NapiBluetoothOpp::DefineOppJSClass(env, exports);
in Init() 37 return exports;
in Init()
|
/foundation/communication/bluetooth/frameworks/js/napi/src/pan/ |
H A D | native_module_pan.cpp | 30 static napi_value Init(napi_env env, napi_value exports) in Init() argument 36 napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc); in Init() 37 NapiBluetoothPan::DefinePanJSClass(env, exports); in Init() 40 return exports; in Init()
|
/foundation/communication/bluetooth/frameworks/js/napi/src/pbap/ |
H A D | native_module_pbap.cpp | 26 static napi_value Init(napi_env env, napi_value exports)
in Init() argument 32 napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc);
in Init() 34 NapiPbapServer::DefinePbapServerJSClass(env, exports);
in Init() 37 return exports;
in Init()
|
/foundation/communication/bluetooth/frameworks/js/napi/src/a2dp/ |
H A D | native_module_a2dp.cpp | 26 static napi_value Init(napi_env env, napi_value exports) in Init() argument 32 napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc); in Init() 34 NapiA2dpSource::DefineA2dpSourceJSClass(env, exports); in Init() 37 return exports; in Init()
|
/foundation/communication/bluetooth/frameworks/js/napi/src/audio_manager/ |
H A D | native_module_audio_manager.cpp | 26 static napi_value Init(napi_env env, napi_value exports)
in Init() argument 31 napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc);
in Init() 32 NapiBluetoothAudioManager::DefineSystemWearDetectionInterface(env, exports);
in Init() 34 return exports;
in Init()
|