/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_web.h | 31 static void OnAlert(const JSCallbackInfo& args); 32 static void OnBeforeUnload(const JSCallbackInfo& args); 33 static void OnConfirm(const JSCallbackInfo& args); 34 static void OnFullScreenEnter(const JSCallbackInfo& args); 35 static void OnFullScreenExit(const JSCallbackInfo& args); 36 static void OnPrompt(const JSCallbackInfo& args); 37 static void OnConsoleLog(const JSCallbackInfo& args); 38 static void OnPageStart(const JSCallbackInfo& args); 39 static void OnPageFinish(const JSCallbackInfo& args); 40 static void OnProgressChange(const JSCallbackInfo& args); [all...] |
H A D | js_web_controller.h | 32 static void Constructor(const JSCallbackInfo& args); 36 void LoadUrl(const JSCallbackInfo& args); 37 void ExecuteTypeScript(const JSCallbackInfo& args); 38 void LoadDataWithBaseUrl(const JSCallbackInfo& args); 39 void Refresh(const JSCallbackInfo& args); 40 void StopLoading(const JSCallbackInfo& args); 41 void GetHitTestResult(const JSCallbackInfo& args); 42 void GetHitTestValue(const JSCallbackInfo& args); 43 void GetCookieManager(const JSCallbackInfo& args); 44 void GetPageHeight(const JSCallbackInfo& args); [all...] |
H A D | js_indexer.h | 28 static void Create(const JSCallbackInfo& args); 29 static void JsOnSelected(const JSCallbackInfo& args); 30 static void SetColor(const JSCallbackInfo& args); 31 static void SetSelectedColor(const JSCallbackInfo& args); 32 static void SetPopupColor(const JSCallbackInfo& args); 33 static void SetSelectedBackgroundColor(const JSCallbackInfo& args); 34 static void SetPopupBackground(const JSCallbackInfo& args); 36 static void SetSelectedFont(const JSCallbackInfo& args); 37 static void SetFont(const JSCallbackInfo& args); 38 static void SetPopupFont(const JSCallbackInfo& args); [all...] |
H A D | js_scroll.h | 31 static void OnScrollBeginCallback(const JSCallbackInfo& args); 32 static void OnScrollFrameBeginCallback(const JSCallbackInfo& args); 33 static void OnScrollCallback(const JSCallbackInfo& args); 34 static void OnWillScrollCallback(const JSCallbackInfo& args); 35 static void OnDidScrollCallback(const JSCallbackInfo& args); 36 static void OnScrollEdgeCallback(const JSCallbackInfo& args); 37 static void OnScrollEndCallback(const JSCallbackInfo& args); 38 static void OnScrollStartCallback(const JSCallbackInfo& args); 39 static void OnScrollStopCallback(const JSCallbackInfo& args); 40 static void ReachStartCallback(const JSCallbackInfo& args); [all...] |
H A D | js_persistent.cpp | 38 void JSPersistent::ConstructorCallback(const JSCallbackInfo& args) in ConstructorCallback() argument 41 if (args.Length() > 0 && args[0]->IsBoolean()) { in ConstructorCallback() 42 needCrossThread = args[0]->ToBoolean(); in ConstructorCallback() 47 args.SetReturnValue(Referenced::RawPtr(persistent)); in ConstructorCallback() 57 void JSPersistent::Set(const JSCallbackInfo& args) in Set() argument 64 if (args.Length() < DATA_REQUIRED_ARGS || !args[0]->IsString()) { in Set() 65 LOGW("JSPersistent: Fail to set persistent data, args too few or key type is not a string"); in Set() 68 std::string key = args[ in Set() 78 Get(const JSCallbackInfo& args) Get() argument 104 Has(const JSCallbackInfo& args) Has() argument 124 Delete(const JSCallbackInfo& args) Delete() argument 142 Clear(const JSCallbackInfo& args) Clear() argument [all...] |
H A D | js_counter.cpp | 78 void JSCounter::JsEnableDec(const JSCallbackInfo& args) in JsEnableDec() argument 80 if (args.Length() < 1) { in JsEnableDec() 83 if (!args[0]->IsBoolean()) { in JsEnableDec() 86 CounterModel::GetInstance()->SetEnableDec(args[0]->ToBoolean()); in JsEnableDec() 90 void JSCounter::JsEnableInc(const JSCallbackInfo& args) in JsEnableInc() argument 92 if (args.Length() < 1) { in JsEnableInc() 95 if (!args[0]->IsBoolean()) { in JsEnableInc() 98 CounterModel::GetInstance()->SetEnableInc(args[0]->ToBoolean()); in JsEnableInc() 102 void JSCounter::JsOnInc(const JSCallbackInfo& args) in JsOnInc() argument 104 if (args in JsOnInc() 115 JsOnDec(const JSCallbackInfo& args) JsOnDec() argument 128 JSHeight(const JSCallbackInfo& args) JSHeight() argument 146 JSWidth(const JSCallbackInfo& args) JSWidth() argument 164 SetSize(const JSCallbackInfo& args) SetSize() argument 186 JSControlWidth(const JSCallbackInfo& args) JSControlWidth() argument 205 JsBackgroundColor(const JSCallbackInfo& args) JsBackgroundColor() argument [all...] |
/foundation/multimedia/image_framework/frameworks/kits/js/common/ndk/ |
H A D | image_source_mdk.cpp | 35 ImageSourceArgs args;
in OH_ImageSource_InitNative() local 36 args.inEnv = env;
in OH_ImageSource_InitNative() 37 args.inVal = source;
in OH_ImageSource_InitNative() 38 auto ret = ImageSourceNativeCall(ENV_FUNC_IMAGE_SOURCE_UNWRAP, &args);
in OH_ImageSource_InitNative() 39 if (ret != IMAGE_RESULT_SUCCESS || args.napi == nullptr) {
in OH_ImageSource_InitNative() 43 result->napi = args.napi;
in OH_ImageSource_InitNative() 52 ImageSourceArgs args;
in OH_ImageSource_Create() local 53 args.inEnv = env;
in OH_ImageSource_Create() 54 args.source = src;
in OH_ImageSource_Create() 55 args in OH_ImageSource_Create() 68 ImageSourceArgs args; OH_ImageSource_CreateFromUri() local 81 ImageSourceArgs args; OH_ImageSource_CreateFromFd() local 94 ImageSourceArgs args; OH_ImageSource_CreateFromData() local 110 ImageSourceArgs args; OH_ImageSource_CreateFromRawFile() local 123 ImageSourceArgs args; OH_ImageSource_CreateIncremental() local 136 ImageSourceArgs args; OH_ImageSource_CreateIncrementalFromData() local 151 ImageSourceArgs args; OH_ImageSource_GetSupportedFormats() local 164 ImageSourceArgs args; OH_ImageSource_CreatePixelMap() local 180 ImageSourceArgs args; OH_ImageSource_CreatePixelMapList() local 196 ImageSourceArgs args; OH_ImageSource_GetDelayTime() local 209 ImageSourceArgs args; OH_ImageSource_GetFrameCount() local 223 ImageSourceArgs args; OH_ImageSource_GetImageInfo() local 238 ImageSourceArgs args; OH_ImageSource_GetImageProperty() local 253 ImageSourceArgs args; OH_ImageSource_ModifyImageProperty() local 268 ImageSourceArgs args; OH_ImageSource_UpdateData() local [all...] |
H A D | image_receiver_mdk.cpp | 47 ImageReceiverArgs args; in OH_Image_Receiver_CreateImageReceiver() local 48 args.inNum0 = info.width; in OH_Image_Receiver_CreateImageReceiver() 49 args.inNum1 = info.height; in OH_Image_Receiver_CreateImageReceiver() 50 args.inNum2 = info.format; in OH_Image_Receiver_CreateImageReceiver() 51 args.inNum3 = info.capicity; in OH_Image_Receiver_CreateImageReceiver() 52 args.outValue = res; in OH_Image_Receiver_CreateImageReceiver() 53 return ImageReceiverNativeEnvCall(ENV_FUNC_IMAGE_RECEIVER_CREATE, env, &args); in OH_Image_Receiver_CreateImageReceiver() 62 ImageReceiverArgs args; in OH_Image_Receiver_GetReceivingSurfaceId() local 63 args.id = id; in OH_Image_Receiver_GetReceivingSurfaceId() 64 args in OH_Image_Receiver_GetReceivingSurfaceId() 74 ImageReceiverArgs args; OH_Image_Receiver_ReadLatestImage() local 86 ImageReceiverArgs args; OH_Image_Receiver_ReadNextImage() local 98 ImageReceiverArgs args; OH_Image_Receiver_On() local 109 ImageReceiverArgs args; OH_Image_Receiver_GetSize() local 120 ImageReceiverArgs args; OH_Image_Receiver_GetCapacity() local 131 ImageReceiverArgs args; OH_Image_Receiver_GetFormat() local [all...] |
/foundation/multimedia/image_framework/frameworks/kits/js/common/pixelmap_ndk/ |
H A D | image_pixel_map_ndk.cpp | 46 PixelMapNapiArgs args; in OH_PixelMap_CreatePixelMap() local 47 args.createOptions.width = info.width; in OH_PixelMap_CreatePixelMap() 48 args.createOptions.height = info.height; in OH_PixelMap_CreatePixelMap() 49 args.createOptions.pixelFormat = info.pixelFormat; in OH_PixelMap_CreatePixelMap() 50 args.createOptions.editable = info.editable; in OH_PixelMap_CreatePixelMap() 51 args.createOptions.alphaType = info.alphaType; in OH_PixelMap_CreatePixelMap() 52 args.createOptions.scaleMode = info.scaleMode; in OH_PixelMap_CreatePixelMap() 53 args.rowStride = 0; in OH_PixelMap_CreatePixelMap() 54 args.inBuffer = buf; in OH_PixelMap_CreatePixelMap() 55 args in OH_PixelMap_CreatePixelMap() 65 PixelMapNapiArgs args; OH_PixelMap_CreatePixelMapWithStride() local 83 PixelMapNapiArgs args; OH_PixelMap_CreateAlphaPixelMap() local 96 PixelMapNapiArgs args; OH_PixelMap_GetBytesNumberPerRow() local 107 PixelMapNapiArgs args; OH_PixelMap_GetIsEditable() local 118 PixelMapNapiArgs args; OH_PixelMap_IsSupportAlpha() local 129 PixelMapNapiArgs args; OH_PixelMap_SetAlphaAble() local 140 PixelMapNapiArgs args; OH_PixelMap_GetDensity() local 151 PixelMapNapiArgs args; OH_PixelMap_SetDensity() local 162 PixelMapNapiArgs args; OH_PixelMap_SetOpacity() local 173 PixelMapNapiArgs args; OH_PixelMap_Scale() local 187 PixelMapNapiArgs args; OH_PixelMap_ScaleWithAntiAliasing() local 200 PixelMapNapiArgs args; OH_PixelMap_Translate() local 212 PixelMapNapiArgs args; OH_PixelMap_Rotate() local 223 PixelMapNapiArgs args; OH_PixelMap_Flip() local 235 PixelMapNapiArgs args; OH_PixelMap_Crop() local 249 PixelMapNapiArgs args; OH_PixelMap_GetImageInfo() local 260 PixelMapNapiArgs args; OH_PixelMap_AccessPixels() local 271 PixelMapNapiArgs args; OH_PixelMap_UnAccessPixels() local [all...] |
/foundation/multimedia/image_framework/frameworks/kits/js/common/ |
H A D | image_packer_mdk_kits.cpp | 34 using ImagePackerNativeFunc = int32_t (*)(struct ImagePackerArgs* args); 81 static int32_t ImagePackerNapiCreate(struct ImagePackerArgs* args) in ImagePackerNapiCreate() argument 83 if (args == nullptr || args->inEnv == nullptr || args->outVal == nullptr) { in ImagePackerNapiCreate() 87 *(args->outVal) = ImagePackerNapi::CreateImagePacker(args->inEnv, nullptr); in ImagePackerNapiCreate() 88 if (*(args->outVal) == nullptr) { in ImagePackerNapiCreate() 106 static int32_t DoStartPacking(std::shared_ptr<ImagePacker> &packer, struct ImagePackerArgs* args) in DoStartPacking() argument 108 if (args in DoStartPacking() 125 DoAddImage(std::shared_ptr<ImagePacker> &packer, PackingSourceType type, struct ImagePackerArgs* args) DoAddImage() argument 153 DoNativePacking(struct ImagePackerArgs* args) DoNativePacking() argument 185 ImagePackerNapiPackToData(struct ImagePackerArgs* args) ImagePackerNapiPackToData() argument 197 ImagePackerNapiPackToFile(struct ImagePackerArgs* args) ImagePackerNapiPackToFile() argument 215 ImagePackerNativeCall(int32_t mode, struct ImagePackerArgs* args) ImagePackerNativeCall() argument [all...] |
H A D | image_pixel_map_napi_kits.cpp | 29 using PixelMapNapiEnvFunc = int32_t (*)(napi_env env, PixelMapNapiArgs* args); 30 using PixelMapNapiCtxFunc = int32_t (*)(PixelMapNapi* native, PixelMapNapiArgs* args); 51 static std::shared_ptr<PixelMap> GetPixelMap(PixelMapNapi* napi, PixelMapNapiArgs* args, in GetPixelMap() argument 96 static int32_t PixelMapNapiCreate(napi_env env, PixelMapNapiArgs* args) in PixelMapNapiCreate() argument 98 if (args == nullptr || args->outValue == nullptr) { in PixelMapNapiCreate() 102 if ((!makeUndefined(env, &undefinedValue)) || args->inBuffer == nullptr || args->bufferLen <= NUM_0) { in PixelMapNapiCreate() 103 *(args->outValue) = undefinedValue; in PixelMapNapiCreate() 107 *(args in PixelMapNapiCreate() 138 PixelMapNapiCreateAlpha(napi_env env, PixelMapNapiArgs* args) PixelMapNapiCreateAlpha() argument 168 CheckAndGetPixelMap(PixelMapNapi* native, PixelMapNapiArgs* args, int32_t error) CheckAndGetPixelMap() argument 174 PixelMapNapiGetRowBytes(PixelMapNapi* native, PixelMapNapiArgs* args) PixelMapNapiGetRowBytes() argument 185 PixelMapNapiIsEditable(PixelMapNapi* native, PixelMapNapiArgs* args) PixelMapNapiIsEditable() argument 197 PixelMapNapiIsSupportAlpha(PixelMapNapi* native, PixelMapNapiArgs* args) PixelMapNapiIsSupportAlpha() argument 209 PixelMapNapiSetAlphaAble(PixelMapNapi* native, PixelMapNapiArgs* args) PixelMapNapiSetAlphaAble() argument 229 PixelMapNapiGetDensity(PixelMapNapi* native, PixelMapNapiArgs* args) PixelMapNapiGetDensity() argument 241 PixelMapNapiSetDensity(PixelMapNapi* native, PixelMapNapiArgs* args) PixelMapNapiSetDensity() argument 260 PixelMapNapiSetOpacity(PixelMapNapi* native, PixelMapNapiArgs* args) PixelMapNapiSetOpacity() argument 274 PixelMapNapiScale(PixelMapNapi* native, PixelMapNapiArgs* args) PixelMapNapiScale() argument 290 PixelMapNapiTranslate(PixelMapNapi* native, PixelMapNapiArgs* args) PixelMapNapiTranslate() argument 302 PixelMapNapiRotate(PixelMapNapi* native, PixelMapNapiArgs* args) PixelMapNapiRotate() argument 314 PixelMapNapiFlip(PixelMapNapi* native, PixelMapNapiArgs* args) PixelMapNapiFlip() argument 326 PixelMapNapiCrop(PixelMapNapi* native, PixelMapNapiArgs* args) PixelMapNapiCrop() argument 342 PixelMapNapiGetImageInfo(PixelMapNapi* native, PixelMapNapiArgs* args) PixelMapNapiGetImageInfo() argument 359 PixelMapNapiAccessPixels(PixelMapNapi* native, PixelMapNapiArgs* args) PixelMapNapiAccessPixels() argument 371 PixelMapNapiUnAccessPixels(PixelMapNapi* native, PixelMapNapiArgs* args) PixelMapNapiUnAccessPixels() argument 404 PixelMapNapiNativeEnvCall(int32_t mode, napi_env env, PixelMapNapiArgs* args) PixelMapNapiNativeEnvCall() argument 414 PixelMapNapiNativeCtxCall(int32_t mode, PixelMapNapi* native, PixelMapNapiArgs* args) PixelMapNapiNativeCtxCall() argument [all...] |
H A D | image_receiver_mdk_kits.cpp | 24 using ImageReceiverNapiEnvFunc = int32_t (*)(napi_env env, struct ImageReceiverArgs* args); 25 using ImageReceiverNapiCtxFunc = int32_t (*)(ImageReceiverNapi* native, struct ImageReceiverArgs* args); 37 static ImageReceiver* CheckAndGetReceiver(ImageReceiverNapi* native, const struct ImageReceiverArgs* args) in CheckAndGetReceiver() argument 39 if (args == nullptr) { in CheckAndGetReceiver() 45 static int32_t ImageReceiverNapiCreate(napi_env env, struct ImageReceiverArgs* args) in ImageReceiverNapiCreate() argument 47 if (args == nullptr) { in ImageReceiverNapiCreate() 52 createArgs.width = args->inNum0; in ImageReceiverNapiCreate() 53 createArgs.height = args->inNum1; in ImageReceiverNapiCreate() 54 createArgs.format = args->inNum2; in ImageReceiverNapiCreate() 55 createArgs.capicity = args in ImageReceiverNapiCreate() 63 ImageReceiverNapiGetReceiverId(ImageReceiverNapi* native, struct ImageReceiverArgs* args) ImageReceiverNapiGetReceiverId() argument 79 ImageReceiverNapiReadLatestImage(ImageReceiverNapi* native, struct ImageReceiverArgs* args) ImageReceiverNapiReadLatestImage() argument 93 ImageReceiverNapiReadNextImage(ImageReceiverNapi* native, struct ImageReceiverArgs* args) ImageReceiverNapiReadNextImage() argument 107 ImageReceiverNapiOn(ImageReceiverNapi* native, struct ImageReceiverArgs* args) ImageReceiverNapiOn() argument 119 ImageReceiverNapiGetSize(ImageReceiverNapi* native, struct ImageReceiverArgs* args) ImageReceiverNapiGetSize() argument 130 ImageReceiverNapiGetCapacity(ImageReceiverNapi* native, struct ImageReceiverArgs* args) ImageReceiverNapiGetCapacity() argument 140 ImageReceiverNapiGetFormat(ImageReceiverNapi* native, struct ImageReceiverArgs* args) ImageReceiverNapiGetFormat() argument 163 ImageReceiverNativeEnvCall(int32_t mode, napi_env env, struct ImageReceiverArgs* args) ImageReceiverNativeEnvCall() argument 173 ImageReceiverNativeCtxCall(int32_t mode, ImageReceiverNapi* native, struct ImageReceiverArgs* args) ImageReceiverNativeCtxCall() argument [all...] |
H A D | image_mdk_kits.cpp | 27 using ImageNapiEnvFunc = int32_t (*)(napi_env env, struct ImageNapiArgs* args); 28 using ImageNapiCtxFunc = int32_t (*)(ImageNapi* native, struct ImageNapiArgs* args); 41 static NativeImage* CheckAndGetImage(ImageNapi* native, const struct ImageNapiArgs* args) in CheckAndGetImage() argument 43 if (args == nullptr) { in CheckAndGetImage() 49 static int32_t ImageNapiClipRect(ImageNapi* native, struct ImageNapiArgs* args) in ImageNapiClipRect() argument 51 auto nativeImage = CheckAndGetImage(native, args); in ImageNapiClipRect() 56 if (nativeImage->GetSize(args->outRect->width, args->outRect->height) != NUM_0) { in ImageNapiClipRect() 60 args->outRect->x = NUM_0; in ImageNapiClipRect() 61 args in ImageNapiClipRect() 65 ImageNapiSize(ImageNapi* native, struct ImageNapiArgs* args) ImageNapiSize() argument 78 ImageNapiFormat(ImageNapi* native, struct ImageNapiArgs* args) ImageNapiFormat() argument 92 ImageNapiGetComponent(ImageNapi* native, struct ImageNapiArgs* args) ImageNapiGetComponent() argument 128 ImageNapiNativeCtxCall(int32_t mode, ImageNapi* native, struct ImageNapiArgs* args) ImageNapiNativeCtxCall() argument [all...] |
H A D | image_source_mdk_kits.cpp | 39 using ImageSourceNapiFunc = int32_t (*)(struct ImageSourceArgs* args); 44 static ImageSource* GetNativeImageSource(struct ImageSourceArgs* args) in GetNativeImageSource() argument 46 if (args == nullptr || args->napi == nullptr || args->napi->nativeImgSrc == nullptr) { in GetNativeImageSource() 49 return args->napi->nativeImgSrc.get(); in GetNativeImageSource() 186 static int32_t ImageSourceNapiCreate(struct ImageSourceArgs* args) in ImageSourceNapiCreate() argument 188 if (args == nullptr || args->inEnv == nullptr) { in ImageSourceNapiCreate() 193 ImageSourceNativeCreate(args in ImageSourceNapiCreate() 207 ImageSourceNapiCreateFromUri(struct ImageSourceArgs* args) ImageSourceNapiCreateFromUri() argument 241 ImageSourceNapiCreateFromFd(struct ImageSourceArgs* args) ImageSourceNapiCreateFromFd() argument 274 ImageSourceNapiCreateFromData(struct ImageSourceArgs* args) ImageSourceNapiCreateFromData() argument 316 ImageSourceNapiCreateFromRawFile(struct ImageSourceArgs* args) ImageSourceNapiCreateFromRawFile() argument 354 ImageSourceNapiCreateIncremental(struct ImageSourceArgs* args) ImageSourceNapiCreateIncremental() argument 398 ImageSourceNapiGetSupportedFormats(struct ImageSourceArgs* args) ImageSourceNapiGetSupportedFormats() argument 448 ImageSourceNapiUnwrap(struct ImageSourceArgs* args) ImageSourceNapiUnwrap() argument 462 ImageSourceNapiCreatePixelmap(struct ImageSourceArgs* args) ImageSourceNapiCreatePixelmap() argument 499 ImageSourceNapiCreatePixelmapList(struct ImageSourceArgs* args) ImageSourceNapiCreatePixelmapList() argument 529 ImageSourceNapiGetDelayTime(struct ImageSourceArgs* args) ImageSourceNapiGetDelayTime() argument 559 ImageSourceNapiGetFrameCount(struct ImageSourceArgs* args) ImageSourceNapiGetFrameCount() argument 576 ImageSourceNapiGetImageInfo(struct ImageSourceArgs* args) ImageSourceNapiGetImageInfo() argument 599 ImageSourceNapiGetImageProperty( struct ImageSourceArgs* args) ImageSourceNapiGetImageProperty() argument 671 ImageSourceNapiModifyImageProperty(struct ImageSourceArgs* args) ImageSourceNapiModifyImageProperty() argument 695 ProcessIncrementalPixelMap(struct ImageSourceArgs* args, bool completed) ProcessIncrementalPixelMap() argument 722 ImageSourceNapiUpdateData(struct ImageSourceArgs* args) ImageSourceNapiUpdateData() argument 765 ImageSourceNativeCall(int32_t mode, struct ImageSourceArgs* args) ImageSourceNativeCall() argument [all...] |
H A D | image_format_convert_mdk_kits.cpp | 67 static int32_t ImageConvertExec(ImageFormatConvertArgs *args) in ImageConvertExec() argument 69 if (args == nullptr || args->srcPixelMap == nullptr) { in ImageConvertExec() 74 PixelFormat srcPixelFormat = args->srcPixelMap->GetPixelFormat(); in ImageConvertExec() 75 if (!IsMatchType(args->srcFormatType, srcPixelFormat) || in ImageConvertExec() 76 !IsMatchType(args->destFormatType, args->destPixelFormat)) { in ImageConvertExec() 81 uint32_t ret = ImageFormatConvert::ConvertImageFormat(args->srcPixelMap, args->destPixelFormat); in ImageConvertExec() 89 static int32_t ImageConvertJsToCPixelMap(ImageFormatConvertArgs *args) in ImageConvertJsToCPixelMap() argument 103 ImageConvertCToJsPixelMap(ImageFormatConvertArgs *args) ImageConvertCToJsPixelMap() argument 127 ImageConvertNativeCall(int32_t mode, ImageFormatConvertArgs *args) ImageConvertNativeCall() argument [all...] |
/foundation/multimodalinput/input/service/event_dump/test/ |
H A D | event_dump_test.cpp | 68 std::vector<std::string> args; in HWTEST_F() local 70 MMIEventDump->CheckCount(fd_, args, count); in HWTEST_F() 83 std::vector<std::string> args = {"--help"}; in HWTEST_F() local 85 MMIEventDump->CheckCount(fd_, args, count); in HWTEST_F() 86 MMIEventDump->ParseCommand(fd_, args); in HWTEST_F() 99 std::vector<std::string> args = {"-h"}; in HWTEST_F() local 101 MMIEventDump->CheckCount(fd_, args, count); in HWTEST_F() 102 MMIEventDump->ParseCommand(fd_, args); in HWTEST_F() 115 std::vector<std::string> args = {"-abc"}; in HWTEST_F() local 117 MMIEventDump->CheckCount(fd_, args, coun in HWTEST_F() 131 std::vector<std::string> args = {"-a", "--help", "foo", "-bc", "bar"}; HWTEST_F() local 148 std::vector<std::string> args = {"-d"}; HWTEST_F() local 164 std::vector<std::string> args = {"-l"}; HWTEST_F() local 180 std::vector<std::string> args = {"-w"}; HWTEST_F() local 196 std::vector<std::string> args = {"-u"}; HWTEST_F() local 214 std::vector<std::string> args = {"-s"}; HWTEST_F() local 232 std::vector<std::string> args = {"-o"}; HWTEST_F() local 250 std::vector<std::string> args = {"-i"}; HWTEST_F() local 268 std::vector<std::string> args = {"-f"}; HWTEST_F() local 286 std::vector<std::string> args = {"-m"}; HWTEST_F() local [all...] |
/foundation/arkui/ace_engine/frameworks/base/log/ |
H A D | ace_trace.cpp | 27 bool AceTraceBeginWithArgv(const char* format, va_list args) in AceTraceBeginWithArgv() argument 30 if (vsnprintf_s(name, sizeof(name), sizeof(name) - 1, format, args) < 0) { in AceTraceBeginWithArgv() 37 bool AceTraceBeginWithArgvCommercial(const char* format, va_list args) in AceTraceBeginWithArgvCommercial() argument 40 if (vsnprintf_s(name, sizeof(name), sizeof(name) - 1, format, args) < 0) { in AceTraceBeginWithArgvCommercial() 49 va_list args; in AceTraceBeginWithArgs() local 50 va_start(args, format); in AceTraceBeginWithArgs() 51 bool retVal = AceTraceBeginWithArgv(format, args); in AceTraceBeginWithArgs() 52 va_end(args); in AceTraceBeginWithArgs() 59 va_list args; in AceCountTraceWidthArgs() local 60 va_start(args, forma in AceCountTraceWidthArgs() 70 va_list args; AceScopedTrace() local 85 va_list args; AceScopedTraceCommercial() local 101 va_list args; AceScopedTraceFlag() local 115 AceAsyncTraceBeginWithArgv(int32_t taskId, const char* format, va_list args) AceAsyncTraceBeginWithArgv() argument 127 va_list args; AceAsyncTraceBeginWithArgs() local 139 va_list args; AceAsyncScopedTrace() local [all...] |
/foundation/filemanagement/storage_service/services/storage_daemon/ |
H A D | sdc.cpp | 40 static int32_t InitGlobalKey(const std::vector<std::string> &args) in InitGlobalKey() argument 42 (void)args; in InitGlobalKey() 46 static int32_t InitMainUser(const std::vector<std::string> &args) in InitMainUser() argument 48 (void)args; in InitMainUser() 53 static int32_t GenerateUserKeys(const std::vector<std::string> &args) in GenerateUserKeys() argument 55 if (args.size() < ARG_CNT_5) { in GenerateUserKeys() 61 // 3 means take the fourth argument of args, 4 means take the fifth argument of args in GenerateUserKeys() 62 if ((OHOS::StorageDaemon::StringToUint32(args[INDEX_3], userId) == false) || in GenerateUserKeys() 63 (OHOS::StorageDaemon::StringToUint32(args[INDEX_ in GenerateUserKeys() 70 PrepareUserSpace(const std::vector<std::string> &args) PrepareUserSpace() argument 87 DeleteUserKeys(const std::vector<std::string> &args) DeleteUserKeys() argument 102 DestroyUserSpace(const std::vector<std::string> &args) DestroyUserSpace() argument 119 UpdateUserAuth(const std::vector<std::string> &args) UpdateUserAuth() argument 142 ActiveUserKey(const std::vector<std::string> &args) ActiveUserKey() argument 162 InactiveUserKey(const std::vector<std::string> &args) InactiveUserKey() argument 177 LockUserScreen(const std::vector<std::string> &args) LockUserScreen() argument 192 UnlockUserScreen(const std::vector<std::string> &args) UnlockUserScreen() argument 212 GetFileEncryptStatus(const std::vector<std::string> &args) GetFileEncryptStatus() argument 234 EnableFscrypt(const std::vector<std::string> &args) EnableFscrypt() argument 244 UpdateKeyContext(const std::vector<std::string> &args) UpdateKeyContext() argument 259 GenerateAppkey(const std::vector<std::string> &args) GenerateAppkey() argument 276 DeleteAppkey(const std::vector<std::string> &args) DeleteAppkey() argument 292 CreateRecoverKey(const std::vector<std::string> &args) CreateRecoverKey() argument 312 SetRecoverKey(const std::vector<std::string> &args) SetRecoverKey() argument 323 StopUser(const std::vector<std::string> &args) StopUser() argument 337 StartUser(const std::vector<std::string> &args) StartUser() argument 378 HandleFileCrypt(const std::string &cmd, const std::vector<std::string> &args) HandleFileCrypt() argument [all...] |
/foundation/arkui/ace_engine_lite/frameworks/src/core/modules/presets/test/unittest/common/ |
H A D | date_time_module_tdd_test.cpp | 54 const jerry_value_t args[], in FormatDate() 60 jerry_value_t result = CallJSFunction(format, dateTime, args, argsNum); in FormatDate() 85 jerry_value_t args[1]; in HWTEST_F() local 86 args[0] = RunJs("new Date(2020, 9, 28, 9, 4, 5)"); in HWTEST_F() 87 char* formatRes = FormatDate(dateTime, args, 1); in HWTEST_F() 101 formatRes = FormatDate(dateTime, args, 1); in HWTEST_F() 104 ReleaseJerryValue(dateTime, args[0], VA_ARG_END_FLAG); in HWTEST_F() 126 jerry_value_t args[1]; in HWTEST_F() local 127 args[0] = RunJs("new Date(2020, 9,28);"); in HWTEST_F() 128 char* formatRes = FormatDate(dateTime, args, in HWTEST_F() 53 FormatDate(const jerry_value_t dateTime, const jerry_value_t args[], const jerry_length_t argsNum) FormatDate() argument 170 jerry_value_t args[1]; HWTEST_F() local 251 jerry_value_t args[1]; HWTEST_F() local 333 jerry_value_t args[1]; HWTEST_F() local 415 jerry_value_t args[1]; HWTEST_F() local 497 jerry_value_t args[1]; HWTEST_F() local 575 jerry_value_t args[1]; HWTEST_F() local 652 jerry_value_t args[1]; HWTEST_F() local 728 jerry_value_t args[1]; HWTEST_F() local 800 jerry_value_t args[1]; HWTEST_F() local 856 jerry_value_t args[1]; HWTEST_F() local 912 jerry_value_t args[1]; HWTEST_F() local 969 jerry_value_t args[1]; HWTEST_F() local 1025 jerry_value_t args[1]; HWTEST_F() local 1082 jerry_value_t args[1]; HWTEST_F() local 1138 jerry_value_t args[1]; HWTEST_F() local 1165 jerry_value_t args[1]; HWTEST_F() local 1223 jerry_value_t args[1]; HWTEST_F() local 1299 jerry_value_t args[1]; HWTEST_F() local 1375 jerry_value_t args[1]; HWTEST_F() local 1451 jerry_value_t args[1]; HWTEST_F() local 1529 jerry_value_t args[1]; HWTEST_F() local 1614 jerry_value_t args[1]; HWTEST_F() local 1698 jerry_value_t args[1]; HWTEST_F() local 1783 jerry_value_t args[1]; HWTEST_F() local 1868 jerry_value_t args[1]; HWTEST_F() local 1951 jerry_value_t args[1]; HWTEST_F() local 2034 jerry_value_t args[1]; HWTEST_F() local 2118 jerry_value_t args[1]; HWTEST_F() local 2202 jerry_value_t args[1]; HWTEST_F() local [all...] |
/foundation/filemanagement/user_file_service/interfaces/kits/picker/ |
H A D | picker.js | 112 function checkArguments(args) { 114 if (args.length === ARGS_TWO && typeof args[ARGS_ONE] !== 'function') { 118 if (args.length > 0 && typeof args[ARGS_ZERO] === 'object') { 119 let option = args[ARGS_ZERO]; 146 function parsePhotoPickerSelectOption(args) { 156 if (args.length > ARGS_ZERO && typeof args[ARGS_ZERO] === 'object') { 157 let option = args[ARGS_ZER [all...] |
/foundation/multimedia/media_lite/interfaces/kits/player_lite/js/builtin/include/ |
H A D | audio_module.h | 58 * @param args Indicates the function arguments 61 static JSIValue Play(const JSIValue thisVal, const JSIValue *args, uint8_t argsSize); 67 * @param args Indicates the function arguments 70 static JSIValue Pause(const JSIValue thisVal, const JSIValue *args, uint8_t argsSize); 76 * @param args Indicates the function arguments 79 static JSIValue Stop(const JSIValue thisVal, const JSIValue *args, uint8_t argsSize); 85 * @param args Indicates the function arguments 88 static JSIValue GetPlayState(const JSIValue thisVal, const JSIValue *args, uint8_t argsSize); 94 * @param args Indicates the function arguments 97 static JSIValue SrcGetter(const JSIValue thisVal, const JSIValue *args, uint8_ [all...] |
/foundation/window/window_manager/window_scene/test/dms_unittest/ |
H A D | screen_session_dumper_test.cpp | 64 std::vector<std::u16string> args; in HWTEST_F() local 65 sptr<ScreenSessionDumper> dumper = new ScreenSessionDumper(fd, args); in HWTEST_F() 77 std::vector<std::u16string> args = {u"-h"}; in HWTEST_F() local 78 sptr<ScreenSessionDumper> dumper = new ScreenSessionDumper(fd, args); in HWTEST_F() 91 std::vector<std::u16string> args = {u"-a"}; in HWTEST_F() local 92 sptr<ScreenSessionDumper> dumper = new ScreenSessionDumper(fd, args); in HWTEST_F() 105 std::vector<std::u16string> args = {u"-abnormal"}; in HWTEST_F() local 106 sptr<ScreenSessionDumper> dumper = new ScreenSessionDumper(fd, args); in HWTEST_F() 119 std::vector<std::u16string> args = {u"-h"}; in HWTEST_F() local 120 sptr<ScreenSessionDumper> dumper = new ScreenSessionDumper(fd, args); in HWTEST_F() 133 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 147 std::vector<std::u16string> args; HWTEST_F() local 203 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 218 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 233 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 247 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 261 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 275 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 294 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 313 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 332 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 351 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 370 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 393 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 408 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 422 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 436 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 450 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 464 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 478 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 492 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 506 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 520 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 534 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 549 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 563 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 577 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 591 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 606 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 620 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 634 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 648 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 662 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 676 std::vector<std::u16string> args = {u"-h"}; HWTEST_F() local 693 std::vector<std::u16string> args = {u"-f"}; HWTEST_F() local 724 std::vector<std::u16string> args = {u""}; HWTEST_F() local 758 std::vector<std::u16string> args = {u""}; HWTEST_F() local [all...] |
/test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/ |
H A D | mathndk.cpp | 46 napi_value args[1] = {nullptr};
in LLround() local 47 napi_get_cb_info(env, info, &argc, args, nullptr, nullptr);
in LLround() 49 napi_get_value_double(env, args[0], &value);
in LLround() 58 napi_value args[1] = {nullptr};
in LLroundf() local 59 napi_get_cb_info(env, info, &argc, args, nullptr, nullptr);
in LLroundf() 61 napi_get_value_double(env, args[0], &value);
in LLroundf() 71 napi_value args[1] = {nullptr};
in LLroundl() local 72 napi_get_cb_info(env, info, &argc, args, nullptr, nullptr);
in LLroundl() 74 napi_get_value_double(env, args[0], &value);
in LLroundl() 84 napi_value args[ in LLrint() local 96 napi_value args[1] = {nullptr}; LLrintf() local 108 napi_value args[1] = {nullptr}; LRintf() local 121 napi_value args[1] = {nullptr}; LLrintl() local 134 napi_value args[1] = {nullptr}; Lgamma() local 150 napi_value args[1] = {nullptr}; Lgammaf() local 166 napi_value args[1] = {nullptr}; Lgammal() local 185 napi_value args[1] = {nullptr}; Lgamma_r() local 202 napi_value args[1] = {nullptr}; Lgammaf_r() local 219 napi_value args[1] = {nullptr}; Lgammal_r() local 237 napi_value args[2] = {nullptr}; Ldexp() local 252 napi_value args[2] = {nullptr}; Ldexpl() local 267 napi_value args[2] = {nullptr}; Ldexpf() local 282 napi_value args[1] = {nullptr}; J0() local 295 napi_value args[1] = {nullptr}; J0f() local 308 napi_value args[1] = {nullptr}; J1() local 321 napi_value args[1] = {nullptr}; J1f() local 334 napi_value args[2] = {nullptr}; Jn() local 349 napi_value args[2] = {nullptr}; Jnf() local 364 napi_value args[1] = {nullptr}; ASin() local 384 napi_value args[1] = {nullptr}; ASinF() local 404 napi_value args[1] = {nullptr}; ASinL() local 424 napi_value args[1] = {nullptr}; ASinH() local 439 napi_value args[1] = {nullptr}; ASinHF() local 454 napi_value args[1] = {nullptr}; ASinHL() local 469 napi_value args[1] = {nullptr}; ACos() local 484 napi_value args[1] = {nullptr}; ACosF() local 499 napi_value args[1] = {nullptr}; ACosL() local 514 napi_value args[1] = {nullptr}; ACosH() local 529 napi_value args[1] = {nullptr}; ACosHL() local 544 napi_value args[1] = {nullptr}; ACosHF() local 559 napi_value args[1] = {nullptr}; ATan() local 580 napi_value args[1] = {nullptr}; ATanF() local 601 napi_value args[1] = {nullptr}; ATanL() local 622 napi_value args[2] = {nullptr}; ATan2() local 639 napi_value args[2] = {nullptr}; ATan2F() local 656 napi_value args[2] = {nullptr}; ATan2L() local 673 napi_value args[2] = {nullptr, nullptr}; Fmod() local 688 napi_value args[2] = {nullptr, nullptr}; FMin() local 703 napi_value args[2] = {nullptr, nullptr}; FMax() local 718 napi_value args[3] = {nullptr, nullptr, nullptr}; Fma() local 736 napi_value args[2] = {nullptr, nullptr}; Floor() local 749 napi_value args[2] = {nullptr, nullptr}; FDim() local 764 napi_value args[1] = {nullptr}; FAbs() local 777 napi_value args[1] = {nullptr}; Exp() local 790 napi_value args[2] = {nullptr, nullptr}; CopySignL() local 805 napi_value args[2] = {nullptr, nullptr}; CopySignF() local 820 napi_value args[2] = {nullptr, nullptr}; CopySign() local 835 napi_value args[1] = {nullptr}; Erf() local 848 napi_value args[1] = {nullptr}; Cos() local 861 napi_value args[1] = {nullptr}; Cosh() local 874 napi_value args[1] = {nullptr}; Exp2() local 887 napi_value args[1] = {nullptr}; ExpM1() local 900 napi_value args[2] = {nullptr, nullptr}; FmodF() local 915 napi_value args[2] = {nullptr, nullptr}; FmodL() local 930 napi_value args[2] = {nullptr, nullptr}; FMinF() local 945 napi_value args[2] = {nullptr, nullptr}; FMinL() local 960 napi_value args[2] = {nullptr, nullptr}; FMaxF() local 975 napi_value args[2] = {nullptr, nullptr}; FMaxL() local 990 napi_value args[3] = {nullptr, nullptr, nullptr}; FmaF() local 1008 napi_value args[3] = {nullptr, nullptr, nullptr}; FmaL() local 1026 napi_value args[2] = {nullptr, nullptr}; FloorF() local 1039 napi_value args[2] = {nullptr, nullptr}; FloorL() local 1052 napi_value args[2] = {nullptr, nullptr}; FDimF() local 1067 napi_value args[2] = {nullptr, nullptr}; FDimL() local 1082 napi_value args[1] = {nullptr}; FAbsL() local 1095 napi_value args[1] = {nullptr}; FAbsF() local 1110 napi_value args[1] = {nullptr}; Ceil() local 1123 napi_value args[1] = {nullptr}; CeilF() local 1136 napi_value args[1] = {nullptr}; CeilL() local 1149 napi_value args[1] = {nullptr}; ExpM1f() local 1162 napi_value args[1] = {nullptr}; ExpM1l() local 1175 napi_value args[1] = {nullptr}; ExpF() local 1188 napi_value args[1] = {nullptr}; ExpL() local 1201 napi_value args[1] = {nullptr}; Exp2f() local 1214 napi_value args[1] = {nullptr}; Exp2l() local 1227 napi_value args[1] = {nullptr}; ErfC() local 1240 napi_value args[1] = {nullptr}; ErfCf() local 1253 napi_value args[1] = {nullptr}; ErfCl() local 1266 napi_value args[1] = {nullptr}; ErfF() local 1279 napi_value args[1] = {nullptr}; ErfL() local 1292 napi_value args[1] = {nullptr}; CosF() local 1305 napi_value args[1] = {nullptr}; CosL() local 1318 napi_value args[1] = {nullptr}; CosHf() local 1331 napi_value args[1] = {nullptr}; CosHl() local 1344 napi_value args[1] = {nullptr}; doubleInput() local 1460 napi_value args[1] = {nullptr}; Sin() local 1473 napi_value args[1] = {nullptr}; Sinf() local 1486 napi_value args[1] = {nullptr}; Sinh() local 1499 napi_value args[1] = {nullptr}; Sinhf() local 1512 napi_value args[1] = {nullptr}; Sinhl() local 1525 napi_value args[1] = {nullptr}; Sinl() local 1538 napi_value args[1] = {nullptr}; Sqrt() local 1551 napi_value args[1] = {nullptr}; Sqrtf() local 1564 napi_value args[1] = {nullptr}; Sqrtl() local 1577 napi_value args[2] = {nullptr}; Remainder() local 1594 napi_value args[2] = {nullptr}; Remainderf() local 1611 napi_value args[2] = {nullptr}; Remainderl() local 1627 napi_value args[3] = {nullptr}; Remquo() local 1646 napi_value args[3] = {nullptr}; Remquof() local 1665 napi_value args[3] = {nullptr}; Remquol() local 1684 napi_value args[1] = {nullptr}; Rint() local 1698 napi_value args[1] = {nullptr}; Rintf() local 1712 napi_value args[1] = {nullptr}; Rintl() local 1726 napi_value args[1] = {nullptr}; Round() local 1740 napi_value args[1] = {nullptr}; Roundf() local 1754 napi_value args[1] = {nullptr}; Roundl() local 1768 napi_value args[2] = {nullptr}; Scalbln() local 1784 napi_value args[1] = {nullptr}; Tan() local 1797 napi_value args[1] = {nullptr}; Tanf() local 1810 napi_value args[1] = {nullptr}; Tanh() local 1823 napi_value args[1] = {nullptr}; Tanhf() local 1836 napi_value args[1] = {nullptr}; Tanhl() local 1849 napi_value args[1] = {nullptr}; Tanl() local 1862 napi_value args[1] = {nullptr}; Tgamma() local 1875 napi_value args[1] = {nullptr}; Tgammaf() local 1888 napi_value args[1] = {nullptr}; Tgammal() local 1901 napi_value args[2] = {nullptr}; Scalblnl() local 1916 napi_value args[2] = {nullptr}; Scalbn() local 1931 napi_value args[2] = {nullptr}; Scalblnf() local 1946 napi_value args[2] = {nullptr}; Scalbnf() local 1961 napi_value args[2] = {nullptr}; Scalbnl() local 1976 napi_value args[1] = {nullptr}; Significand() local 1989 napi_value args[1] = {nullptr}; Significandf() local 2001 napi_value args[1] = {nullptr}; ATanH() local 2016 napi_value args[1] = {nullptr}; ATanHF() local 2031 napi_value args[1] = {nullptr}; ATanHL() local 2044 napi_value args[1] = {nullptr}; ModF() local 2057 napi_value args[1] = {nullptr}; ModFf() local 2070 napi_value args[1] = {nullptr}; ModFl() local 2084 napi_value args[1] = {nullptr}; MRand48() local 2103 napi_value args[2] = {nullptr}; Pow() local 2119 napi_value args[2] = {nullptr}; Powf() local 2135 napi_value args[2] = {nullptr}; Sincos() local 2159 napi_value args[2] = {nullptr}; Sincosl() local 2182 napi_value args[2] = {nullptr}; Sincosf() local 2206 napi_value args[2] = {nullptr}; Scalb() local 2222 napi_value args[2] = {nullptr}; Scalbf() local 2238 napi_value args[1] = {nullptr}; Trunc() local 2253 napi_value args[1] = {nullptr}; Truncf() local 2267 napi_value args[1] = {nullptr}; Truncl() local 2281 napi_value args[1] = {nullptr}; Y0() local 2295 napi_value args[1] = {nullptr}; Y0f() local 2309 napi_value args[1] = {nullptr}; Y1() local 2323 napi_value args[1] = {nullptr}; Y1f() local 2337 napi_value args[1] = {nullptr}; Fpclassify() local 2351 napi_value args[1] = {nullptr}; Fpclassifyf() local 2365 napi_value args[1] = {nullptr}; Fpclassifyl() local 2379 napi_value args[1] = {nullptr}; Signbit() local 2393 napi_value args[1] = {nullptr}; Signbitf() local 2407 napi_value args[1] = {nullptr}; Signbitl() local 2421 napi_value args[1] = {nullptr}; CBrt() local 2436 napi_value args[1] = {nullptr}; CBrtL() local 2451 napi_value args[1] = {nullptr}; CBrtF() local 2466 napi_value args[1] = {nullptr}; Frexp() local 2482 napi_value args[1] = {nullptr}; Frexpf() local 2498 napi_value args[1] = {nullptr}; Frexpl() local 2514 napi_value args[2] = {nullptr}; Powl() local 2530 napi_value args[2] = {nullptr}; NextToward() local 2546 napi_value args[2] = {nullptr}; NextTowardF() local 2562 napi_value args[2] = {nullptr}; NextTowardL() local 2578 napi_value args[2] = {nullptr}; Nextafter() local 2594 napi_value args[2] = {nullptr}; Nextafterf() local 2610 napi_value args[2] = {nullptr}; Nextafterl() local 2626 napi_value args[1] = {nullptr}; Nearbyint() local 2639 napi_value args[1] = {nullptr}; Nearbyintf() local 2652 napi_value args[1] = {nullptr}; Nearbyintl() local 2665 napi_value args[1] = {nullptr}; Nan() local 2681 napi_value args[1] = {nullptr}; Nanf() local 2697 napi_value args[1] = {nullptr}; Nanl() local 2712 napi_value args[1] = {nullptr}; LRint() local 2725 napi_value args[1] = {nullptr}; LRintl() local 2739 napi_value args[1] = {nullptr}; LRound() local 2753 napi_value args[1] = {nullptr}; LRoundf() local 2767 napi_value args[1] = {nullptr}; LRoundl() local 2781 napi_value args[2] = {nullptr}; HYpot() local 2798 napi_value args[2] = {nullptr}; HYpotf() local 2815 napi_value args[2] = {nullptr}; HYpotl() local 2830 napi_value args[1] = {nullptr}; ILogb() local 2842 napi_value args[1] = {nullptr}; ILogbf() local 2855 napi_value args[1] = {nullptr}; ILogbl() local 2870 napi_value args[1] = {nullptr}; SignGam() local [all...] |
/foundation/systemabilitymgr/samgr/services/samgr/native/test/unittest/src/ |
H A D | system_ability_manager_dumper_test.cpp | 75 const std::vector<std::string> args; in HWTEST_F() local 76 auto ret = SystemAbilityManagerDumper::FfrtDumpProc(abilityStateScheduler, fd, args); in HWTEST_F() 303 std::vector<std::string> args; in HWTEST_F() local 304 args.push_back("-l"); in HWTEST_F() 306 bool ret = SystemAbilityManagerDumper::Dump(abilityStateScheduler, args, result); in HWTEST_F() 321 std::vector<std::string> args; in HWTEST_F() local 322 args.push_back("-h"); in HWTEST_F() 324 bool ret = SystemAbilityManagerDumper::Dump(abilityStateScheduler, args, result); in HWTEST_F() 339 std::vector<std::string> args; in HWTEST_F() local 341 args in HWTEST_F() 359 std::vector<std::string> args; HWTEST_F() local 379 std::vector<std::string> args; HWTEST_F() local 399 std::vector<std::string> args; HWTEST_F() local 416 std::vector<std::string> args; HWTEST_F() local 434 std::vector<std::string> args; HWTEST_F() local 454 std::vector<std::string> args; HWTEST_F() local 475 std::vector<std::string> args; HWTEST_F() local 496 std::vector<std::string> args; HWTEST_F() local 517 std::vector<std::string> args; HWTEST_F() local 538 std::vector<std::string> args; HWTEST_F() local 559 std::vector<std::string> args; HWTEST_F() local 580 std::vector<std::string> args; HWTEST_F() local 600 std::vector<std::string> args; HWTEST_F() local 620 std::vector<std::string> args; HWTEST_F() local 640 std::vector<std::string> args; HWTEST_F() local 658 std::vector<std::string> args; HWTEST_F() local 677 std::vector<std::string> args; HWTEST_F() local 697 std::vector<std::string> args; HWTEST_F() local 717 std::vector<std::string> args; HWTEST_F() local 908 std::vector<std::string> args; HWTEST_F() local 925 std::vector<std::string> args; HWTEST_F() local 943 std::vector<std::string> args; HWTEST_F() local 963 std::vector<std::string> args; HWTEST_F() local 988 std::vector<std::string> args; HWTEST_F() local [all...] |
/test/xts/acts/multimedia/camera/camera_ndk_xts/OHCameraNdk/entry/src/main/cpp/ |
H A D | mian.cpp | 40 napi_value args[2] = {nullptr}; in InitCamera() local 46 napi_get_cb_info(env, info, &argc, args, nullptr, nullptr); in InitCamera() 48 napi_get_value_string_utf8(env, args[0], nullptr, 0, &typeLen); in InitCamera() 50 napi_get_value_string_utf8(env, args[0], surfaceId, typeLen + 1, &typeLen); in InitCamera() 53 napi_get_value_int32(env, args[1], &index); in InitCamera() 63 napi_value args[1] = {nullptr}; in CameraGetCameraManager() local 66 napi_get_cb_info(env, info, &argc, args, nullptr, nullptr); in CameraGetCameraManager() 69 napi_get_value_int32(env, args[0], &index); in CameraGetCameraManager() 92 napi_value args[1] = {nullptr}; in OHCameraManagerRegisterCallback() local 95 napi_get_cb_info(env, info, &argc, args, nullpt in OHCameraManagerRegisterCallback() 109 napi_value args[1] = {nullptr}; CameraDeleteCameraManager() local 126 napi_value args[1] = {nullptr}; CameraManagerGetSupportedCameras() local 159 napi_value args[1] = {nullptr}; CameraManagerDeleteSupportedCameras() local 175 napi_value args[1] = {nullptr}; GetSupportedCameraOutputCapability() local 191 napi_value args[1] = {nullptr}; OHCameraManagerCreatePreviewOutput() local 207 napi_value args[1] = {nullptr}; OHCameraManagerCreateCameraInput() local 249 napi_value args[3] = {nullptr}; OHCreateCameraInputWithPositionAndType() local 272 napi_value args[1] = {nullptr}; OHCameraManagerCreateCaptureSession() local 288 napi_value args[1] = {nullptr}; CameraManagerDeleteSupportedCameraOutputCapability() local 304 napi_value args[1] = {nullptr}; PreviewOutputRegisterCallback() local 322 napi_value args[2] = {nullptr}; OHCameraManagerCreatePhotoOutput() local 342 napi_value args[1] = {nullptr}; OHCameraManagerCreateMetadataOutput() local 358 napi_value args[1] = {nullptr}; OHCameraInputOpen() local 374 napi_value args[1] = {nullptr}; OHCameraInputClose() local 390 napi_value args[1] = {nullptr}; OHCameraInputRelease() local 406 napi_value args[1] = {nullptr}; OHCameraInputRegisterCallback() local 422 napi_value args[1] = {nullptr}; OHCameraInputUnregisterCallback() local 438 napi_value args[1] = {nullptr}; OHCaptureSessionBeginConfig() local 454 napi_value args[1] = {nullptr}; OHCaptureSessionCommitConfig() local 470 napi_value args[1] = {nullptr}; OHCaptureSessionStart() local 486 napi_value args[1] = {nullptr}; OHCaptureSessionStop() local 502 napi_value args[1] = {nullptr}; OHCaptureSessionRelease() local 518 napi_value args[1] = {nullptr}; OHCaptureSessionRegisterCallback() local 534 napi_value args[1] = {nullptr}; OHCaptureSessionUnregisterCallback() local 550 napi_value args[1] = {nullptr}; OHCaptureSessionGetExposureBias() local 566 napi_value args[1] = {nullptr}; OHCaptureSessionAddInput() local 582 napi_value args[1] = {nullptr}; OHCaptureSessionRemoveInput() local 598 napi_value args[1] = {nullptr}; OHCaptureSessionAddPreviewOutput() local 614 napi_value args[1] = {nullptr}; OHCaptureSessionAddPhotoOutput() local 630 napi_value args[1] = {nullptr}; OHCaptureSessionGetExposureBiasRange() local 646 napi_value args[1] = {nullptr}; OHCameraManagerIsCameraMuted() local 662 napi_value args[1] = {nullptr}; OHCaptureSessionGetExposureMode() local 678 napi_value args[2] = {nullptr}; OHCaptureSessionIsExposureModeSupported() local 696 napi_value args[2] = {nullptr}; OHCaptureSessionSetExposureMode() local 714 napi_value args[2] = {nullptr}; OHCaptureSessionSetExposureBias() local 732 napi_value args[2] = {nullptr}; OHCaptureSessionIsFlashModeSupported() local 750 napi_value args[1] = {nullptr}; OHCaptureSessionHasFlash() local 766 napi_value args[2] = {nullptr}; OHCaptureSessionSetFlashMode() local 784 napi_value args[1] = {nullptr}; OHCaptureSessionGetFlashMode() local 800 napi_value args[2] = {nullptr}; OHCaptureSessionIsFocusModeSupported() local 818 napi_value args[1] = {nullptr}; OHCaptureSessionGetFocusMode() local 834 napi_value args[1] = {nullptr}; OHCaptureSessionGetFocusPoint() local 850 napi_value args[2] = {nullptr}; OHCaptureSessionSetFocusPoint() local 874 napi_value args[1] = {nullptr}; OHCaptureSessionGetMeteringPoint() local 890 napi_value args[1] = {nullptr}; OHCaptureSessionGetZoomRatio() local 906 napi_value args[1] = {nullptr}; OHCaptureSessionGetZoomRatioRange() local 922 napi_value args[2] = {nullptr}; OHCaptureSessionSetZoomRatio() local 941 napi_value args[2] = {nullptr}; OHCaptureSessionSetMeteringPoint() local 965 napi_value args[2] = {nullptr}; OHCaptureSessionIsVideoStabilizationModeSupported() local 983 napi_value args[1] = {nullptr}; OHCaptureSessionGetVideoStabilizationMode() local 999 napi_value args[2] = {nullptr}; OHCaptureSessionSetVideoStabilizationMode() local 1017 napi_value args[1] = {nullptr}; OHCaptureSessionRemovePreviewOutput() local 1033 napi_value args[1] = {nullptr}; OHCaptureSessionRemovePhotoOutput() local 1049 napi_value args[1] = {nullptr}; OHCaptureSessionAddVideoOutput() local 1066 napi_value args[2] = {nullptr}; OHCameraManagerCreateVideoOutput() local 1086 napi_value args[1] = {nullptr}; OHVideoOutputRegisterCallback() local 1102 napi_value args[1] = {nullptr}; OHVideoOutputUnregisterCallback() local 1118 napi_value args[1] = {nullptr}; OHVideoOutputStart() local 1134 napi_value args[1] = {nullptr}; OHVideoOutputStop() local 1150 napi_value args[1] = {nullptr}; OHCaptureSessionRemoveVideoOutput() local 1166 napi_value args[1] = {nullptr}; OHVideoOutputRelease() local 1182 napi_value args[1] = {nullptr}; OHCameraManagerUnregisterCallback() local 1198 napi_value args[1] = {nullptr}; OHPreviewOutputStart() local 1214 napi_value args[1] = {nullptr}; OHPreviewOutputStop() local 1230 napi_value args[1] = {nullptr}; OHPreviewOutputRelease() local 1246 napi_value args[1] = {nullptr}; OHPhotoOutputRegisterCallback() local 1262 napi_value args[1] = {nullptr}; OHPhotoOutputUnregisterCallback() local 1278 napi_value args[1] = {nullptr}; OHPhotoOutputIsMirrorSupported() local 1294 napi_value args[1] = {nullptr}; OHPhotoOutputCapture() local 1355 napi_value args[2] = {nullptr}; OHPhotoOutputCaptureWithCaptureSetting() local 1374 napi_value args[1] = {nullptr}; OHPhotoOutputRelease() local [all...] |