/third_party/node/deps/npm/node_modules/jackspeak/dist/commonjs/ |
H A D | index.js | 5 Object.defineProperty(exports, "__esModule", { value: true }); 6 exports.jack = exports.Jack = exports.isConfigOption = exports.isConfigType = void 0; 55 exports.isConfigType = isConfigType; 82 (0, exports.isConfigType)(o.type) && 90 exports.isConfigOption = isConfigOption; 202 if ((0, exports.isConfigOption)(config, 'number', true)) { 209 else if ((0, exports [all...] |
/commonlibrary/ets_utils/js_api_module/convertxml/ |
H A D | native_module_convertxml.cpp | 74 napi_value ConvertXmlInit(napi_env env, napi_value exports)
in ConvertXmlInit() argument 87 NAPI_CALL(env, napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc));
in ConvertXmlInit() 88 return exports;
in ConvertXmlInit()
|
/foundation/ability/ability_runtime/frameworks/js/napi/application_context_constant/ |
H A D | application_context_constant_module.cpp | 79 static napi_value ApplicationContextConstantInit(napi_env env, napi_value exports) in ApplicationContextConstantInit() argument 94 napi_status status = napi_define_properties(env, exports, sizeof(exportObjs) / sizeof(exportObjs[0]), exportObjs); in ApplicationContextConstantInit() 95 NAPI_ASSERT(env, status == napi_ok, "failed to define properties for exports"); in ApplicationContextConstantInit() 97 return exports; in ApplicationContextConstantInit()
|
/foundation/arkui/ace_engine/advanced_ui_component/atomicserviceweb/interfaces/ |
H A D | atomicserviceweb.cpp | 73 static napi_value Init(napi_env env, napi_value exports) in Init() argument 78 NAPI_CALL(env, napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc)); in Init() 79 return exports; in Init()
|
/foundation/arkui/ace_engine/interfaces/napi/kits/focus_controller/ |
H A D | js_focus_controller.cpp | 116 static napi_value registerFunc(napi_env env, napi_value exports) in registerFunc() argument 123 NAPI_CALL(env, napi_define_properties(env, exports, sizeof(animatorDesc) / sizeof(animatorDesc[0]), animatorDesc)); in registerFunc() 124 return exports; in registerFunc()
|
/foundation/arkui/napi/interfaces/inner_api/cjffi/ark_interop/ |
H A D | ark_interop_loader.cpp | 117 static napi_value ExportLoadCJModule(napi_env env, napi_value exports) in ExportLoadCJModule() argument 122 napi_define_properties(env, exports, sizeof(desc) / sizeof(napi_property_descriptor), desc); in ExportLoadCJModule() 123 return exports; in ExportLoadCJModule()
|
/foundation/arkui/napi/sample/native_module_systemtest/ |
H A D | js_test_string_napi.cpp | 99 napi_value JsStringInit(napi_env env, napi_value exports) in JsStringInit() argument 108 NAPI_CALL(env, napi_define_properties(env, exports, sizeof(descriptors) / sizeof(*descriptors), descriptors)); in JsStringInit() 109 return exports; in JsStringInit()
|
H A D | js_napi_instance.cpp | 87 napi_value InstanceDataInit(napi_env env, napi_value exports) in InstanceDataInit() argument 94 NAPI_CALL(env, napi_define_properties(env, exports, sizeof(descriptors) / sizeof(*descriptors), descriptors)); in InstanceDataInit() 96 return exports; in InstanceDataInit()
|
/foundation/arkui/napi/sample/native_module_callback/ |
H A D | js_callback.cpp | 94 static napi_value CallbackExport(napi_env env, napi_value exports) in CallbackExport() argument 99 NAPI_CALL(env, napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc)); in CallbackExport() 100 return exports; in CallbackExport()
|
/foundation/arkui/advanced_ui_component/atomicserviceweb/interfaces/ |
H A D | atomicserviceweb.cpp | 73 static napi_value Init(napi_env env, napi_value exports) in Init() argument 78 NAPI_CALL(env, napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc)); in Init() 79 return exports; in Init()
|
/foundation/communication/bluetooth/frameworks/js/napi/include/ |
H A D | napi_bluetooth_a2dp_src.h | 68 static napi_value DefineA2dpSourceJSClass(napi_env env, napi_value exports); 70 static napi_value A2dpPropertyValueInit(napi_env env, napi_value exports); 80 static napi_value DefineCreateProfile(napi_env env, napi_value exports);
|
/foundation/multimedia/audio_framework/frameworks/js/napi/audiomanager/ |
H A D | napi_audio_interrupt_manager.cpp | 100 napi_value NapiAudioInterruptManager::Init(napi_env env, napi_value exports) in Init() argument 117 status = napi_set_named_property(env, exports, AUDIO_INTERRUPT_MANAGER_NAPI_CLASS_NAME.c_str(), constructor); in Init() 119 return exports; in Init()
|
/foundation/graphic/graphic_3d/kits/js/src/ |
H A D | SceneResourceImpl.cpp | 30 void SceneResourceImpl::RegisterEnums(NapiApi::Object exports) in RegisterEnums() argument 33 NapiApi::Object SceneResourceType(exports.GetEnv()); in RegisterEnums() 50 exports.Set("SceneResourceType", SceneResourceType); in RegisterEnums()
|
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/webgl/include/webgl/ |
H A D | webgl_framebuffer.h | 76 bool Export(napi_env env, napi_value exports) override; 81 WebGLFramebuffer(napi_env env, napi_value exports) : NExporter(env, exports), framebuffer_(0) {}; in WebGLFramebuffer() argument
|
/foundation/graphic/graphic_2d/rosen/samples/opengl/test_glFramebufferTexture3DOES/entry/src/main/cpp/ |
H A D | test_glFramebufferTexture3DOES.cpp | 102 static napi_value Init(napi_env env, napi_value exports)
in Init() argument 108 napi_define_properties(env, exports, sizeof(desc) / sizeof(desc[0]), desc);
in Init() 109 return exports;
in Init()
|
/foundation/multimedia/camera_framework/frameworks/js/camera_napi/src/mode/ |
H A D | video_session_for_sys_napi.cpp | 41 napi_value VideoSessionForSysNapi::Init(napi_env env, napi_value exports)
in Init() argument 60 status = napi_set_named_property(env, exports, VIDEO_SESSION_FOR_SYS_NAPI_CLASS_NAME, ctorObj);
in Init() 62 return exports;
in Init()
|
H A D | video_session_napi.cpp | 40 napi_value VideoSessionNapi::Init(napi_env env, napi_value exports) in Init() argument 57 status = napi_set_named_property(env, exports, VIDEO_SESSION_NAPI_CLASS_NAME, ctorObj); in Init() 59 return exports; in Init()
|
H A D | aperture_video_session_napi.cpp | 45 napi_value ApertureVideoSessionNapi::Init(napi_env env, napi_value exports) in Init() argument 59 status = napi_set_named_property(env, exports, APERTURE_VIDEO_SESSION_NAPI_CLASS_NAME, ctorObj); in Init() 61 return exports; in Init()
|
H A D | fluorescence_photo_session_napi.cpp | 43 napi_value FluorescencePhotoSessionNapi::Init(napi_env env, napi_value exports)
in Init() argument 60 status = napi_set_named_property(env, exports, FLUORESCENCE_PHOTO_SESSION_NAPI_CLASS_NAME, ctorObj);
in Init() 62 return exports;
in Init()
|
H A D | macro_video_session_napi.cpp | 40 napi_value MacroVideoSessionNapi::Init(napi_env env, napi_value exports) in Init() argument 60 status = napi_set_named_property(env, exports, MACRO_VIDEO_SESSION_NAPI_CLASS_NAME, ctorObj); in Init() 62 return exports; in Init()
|
H A D | macro_photo_session_napi.cpp | 40 napi_value MacroPhotoSessionNapi::Init(napi_env env, napi_value exports) in Init() argument 59 status = napi_set_named_property(env, exports, MACRO_PHOTO_SESSION_NAPI_CLASS_NAME, ctorObj); in Init() 61 return exports; in Init()
|
H A D | high_res_photo_session_napi.cpp | 39 napi_value HighResPhotoSessionNapi::Init(napi_env env, napi_value exports)
in Init() argument 56 status = napi_set_named_property(env, exports, HIGH_RES_PHOTO_SESSION_NAPI_CLASS_NAME, ctorObj);
in Init() 58 return exports;
in Init()
|
H A D | photo_session_for_sys_napi.cpp | 41 napi_value PhotoSessionForSysNapi::Init(napi_env env, napi_value exports)
in Init() argument 60 status = napi_set_named_property(env, exports, PHOTO_SESSION_FOR_SYS_NAPI_CLASS_NAME, ctorObj);
in Init() 62 return exports;
in Init()
|
H A D | quick_shot_photo_session_napi.cpp | 44 napi_value QuickShotPhotoSessionNapi::Init(napi_env env, napi_value exports) in Init() argument 62 status = napi_set_named_property(env, exports, QUICK_SHOT_PHOTO_SESSION_NAPI_CLASS_NAME, ctorObj); in Init() 64 return exports; in Init()
|
H A D | panorama_session_napi.cpp | 47 napi_value PanoramaSessionNapi::Init(napi_env env, napi_value exports)
in Init() argument 66 status = napi_set_named_property(env, exports, PANORAMA_SESSION_NAPI_CLASS_NAME, ctorObj);
in Init() 68 return exports;
in Init()
|