Home
last modified time | relevance | path

Searched refs:exports (Results 976 - 1000 of 3774) sorted by relevance

1...<<31323334353637383940>>...151

/third_party/typescript/tests/baselines/reference/
H A DjsDeclarationsExportSubAssignments.js7 module.exports = Foo;
8 module.exports.Strings = Strings;
20 module.exports = Foo;
21 module.exports.Strings = Strings;
H A DjsDeclarationsImportTypeBundled.js11 module.exports = x;
15 module.exports = items;
25 module.exports = x;
28 module.exports = items;
H A DjsDeclarationsTypeReferences3.js11 module.exports.A = {}
12 module.exports.A.B = {
20 module.exports.A = {};
21 module.exports.A.B = {
H A DlibReferenceNoLibBundle.js24 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 DliteralTypeNameAssertionNotTriggered.js15 exports.__esModule = true;
16 exports.x = void 0;
18 exports.x = x;
21 exports.__esModule = true;
H A DaliasAssignments.js18 exports.__esModule = true;
19 exports.someClass = void 0;
25 exports.someClass = someClass;
28 exports.__esModule = true;
H A DvoidAsNonAmbiguousReturnType.js18 exports.__esModule = true;
19 exports.mkdirSync = void 0;
21 exports.mkdirSync = mkdirSync;
24 exports.__esModule = true;
H A DprivacyClassExtendsClauseDeclFile.js116 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 Dentry-index.js22 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 Drealm.js238 // 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 Drole.js5 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 Dindex.js3 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 Dmodule.cpp25 * 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 Dmodule.cpp25 * 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 Dnative_module.cpp33 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 Dnative_module_base_profile.cpp30 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 Dnative_module_constant.cpp30 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 Dnative_module_connection.cpp26 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 Dnative_module_hfp.cpp31 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 Dnative_module_hid.cpp30 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 Dnative_module_opp.cpp26 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 Dnative_module_pan.cpp30 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 Dnative_module_pbap.cpp26 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 Dnative_module_a2dp.cpp26 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 Dnative_module_audio_manager.cpp26 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()

Completed in 7 milliseconds

1...<<31323334353637383940>>...151