Home
last modified time | relevance | path

Searched refs:deltaX (Results 1 - 10 of 10) sorted by relevance

/base/web/webview/interfaces/kits/napi/webviewcontroller/
H A Dwebview_controller.h265 void ScrollBy(float deltaX, float deltaY);
386 void ScrollByWithAnime(float deltaX, float deltaY, int32_t duration) ;
398 bool ScrollByWithResult(float deltaX, float deltaY) const;
H A Dwebview_controller.cpp1273 void WebviewController::ScrollBy(float deltaX, float deltaY) in ScrollBy() argument
1277 nweb_ptr->ScrollBy(deltaX, deltaY); in ScrollBy()
2011 void WebviewController::ScrollByWithAnime(float deltaX, float deltaY, int32_t duration) in ScrollByWithAnime() argument
2015 nweb_ptr->ScrollByWithAnime(deltaX, deltaY, duration); in ScrollByWithAnime()
2038 bool WebviewController::ScrollByWithResult(float deltaX, float deltaY) const in ScrollByWithResult() argument
2043 enabled = nweb_ptr->ScrollByWithResult(deltaX, deltaY); in ScrollByWithResult()
H A Dnapi_webview_controller.cpp4325 float deltaX; in ScrollBy() local
4336 if (!NapiParseUtils::ParseFloat(env, argv[INTEGER_ZERO], deltaX)) { in ScrollBy()
4338 NWebError::FormatString(ParamCheckErrorMsgTemplate::TYPE_ERROR, "deltaX", "number")); in ScrollBy()
4363 webviewController->ScrollByWithAnime(deltaX, deltaY, duration); in ScrollBy()
4365 webviewController->ScrollBy(deltaX, deltaY); in ScrollBy()
6492 float deltaX; in ScrollByWithResult() local
6502 if (!NapiParseUtils::ParseFloat(env, argv[INTEGER_ZERO], deltaX)) { in ScrollByWithResult()
6504 NWebError::FormatString(ParamCheckErrorMsgTemplate::TYPE_ERROR, "deltaX", "number")); in ScrollByWithResult()
6519 bool scrollByWithResult = webviewController->ScrollByWithResult(deltaX, deltaY); in ScrollByWithResult()
/base/web/webview/test/fuzztest/ohos_nweb/nwebhelper_fuzzer/
H A Dnweb_create_window.h50 void SendMouseWheelEvent(double x, double y, double deltaX, double deltaY) override {}
201 void ScrollBy(float deltaX, float deltaY) override {}
/base/web/webview/test/unittest/common/
H A Dnweb_create_window.h61 void SendMouseWheelEvent(double x, double y, double deltaX, double deltaY) override
259 void ScrollBy(float deltaX, float deltaY) override
/base/web/webview/interfaces/kits/cj/include/
H A Dwebview_controller_impl.h141 void ScrollBy(float deltaX, float deltaY);
145 void ScrollByWithAnime(float deltaX, float deltaY, int32_t duration);
H A Dwebview_ffi.h61 FFI_EXPORT int32_t FfiOHOSWebviewCtlScrollBy(int64_t id, float deltaX, float deltaY);
63 FFI_EXPORT int32_t FfiOHOSWebviewCtlScrollByWithAnime(int64_t id, float deltaX, float deltaY, int32_t duration);
/base/web/webview/interfaces/kits/cj/src/
H A Dwebview_controller_impl.cpp379 void WebviewControllerImpl::ScrollBy(float deltaX, float deltaY) in ScrollBy() argument
383 nweb_ptr->ScrollBy(deltaX, deltaY); in ScrollBy()
397 void WebviewControllerImpl::ScrollByWithAnime(float deltaX, float deltaY, int32_t duration) in ScrollByWithAnime() argument
401 nweb_ptr->ScrollByWithAnime(deltaX, deltaY, duration); in ScrollByWithAnime()
H A Dwebview_ffi.cpp500 int32_t FfiOHOSWebviewCtlScrollBy(int64_t id, float deltaX, float deltaY) in FfiOHOSWebviewCtlScrollBy() argument
506 nativeWebviewCtl->ScrollBy(deltaX, deltaY); in FfiOHOSWebviewCtlScrollBy()
524 int32_t FfiOHOSWebviewCtlScrollByWithAnime(int64_t id, float deltaX, float deltaY, int32_t duration) in FfiOHOSWebviewCtlScrollByWithAnime() argument
531 nativeWebviewCtl->ScrollByWithAnime(deltaX, deltaY, duration); in FfiOHOSWebviewCtlScrollByWithAnime()
533 nativeWebviewCtl->ScrollBy(deltaX, deltaY); in FfiOHOSWebviewCtlScrollByWithAnime()
/base/web/webview/ohos_interface/include/ohos_nweb/
H A Dnweb.h286 virtual void SendMouseWheelEvent(double x, double y, double deltaX, double deltaY) = 0;

Completed in 23 milliseconds