/foundation/ai/ai_engine/interfaces/kits/cv/ |
H A D | ai_image.h | 68 int bottomRightY; member
|
/foundation/window/window_manager/window_scene/session_manager/src/ |
H A D | scene_session_dirty_manager.cpp | 812 auto bottomRightY = static_cast<int32_t>(bottomRight[1]);
in CalRectInScreen() local 818 if ((topLeftY > 0 && bottomRightY < INT32_MIN + topLeftY) ||
in CalRectInScreen() 819 (topLeftY < 0 && bottomRightY > INT32_MAX + topLeftY)) {
in CalRectInScreen() 820 TLOGE(WmsLogTag::WMS_EVENT, "data overflows topLeftY:%{public}d bottomRightY:%{public}d",
in CalRectInScreen() 821 topLeftY, bottomRightY);
in CalRectInScreen() 824 auto height = std::abs(topLeftY - bottomRightY);
in CalRectInScreen()
|
/foundation/multimodalinput/input/frameworks/proxy/events/src/ |
H A D | input_manager.cpp | 618 int32_t InputManager::SetVKeyboardArea(double topLeftX, double topLeftY, double bottomRightX, double bottomRightY) in SetVKeyboardArea() argument 620 return InputMgrImpl.SetVKeyboardArea(topLeftX, topLeftY, bottomRightX, bottomRightY); in SetVKeyboardArea()
|
/foundation/multimodalinput/input/service/module_loader/include/ |
H A D | mmi_service.h | 150 int32_t SetVKeyboardArea(double topLeftX, double topLeftY, double bottomRightX, double bottomRightY) override; 151 int32_t OnSetVKeyboardArea(double topLeftX, double topLeftY, double bottomRightX, double bottomRightY);
|
/foundation/multimodalinput/input/service/connect_manager/include/ |
H A D | multimodal_input_connect_manager.h | 135 int32_t SetVKeyboardArea(double topLeftX, double topLeftY, double bottomRightX, double bottomRightY);
|
H A D | i_multimodal_input_connect.h | 146 virtual int32_t SetVKeyboardArea(double topLeftX, double topLeftY, double bottomRightX, double bottomRightY) = 0;
|
H A D | multimodal_input_connect_proxy.h | 131 int32_t SetVKeyboardArea(double topLeftX, double topLeftY, double bottomRightX, double bottomRightY) override;
|
/foundation/multimodalinput/input/frameworks/napi/input_device/src/ |
H A D | js_input_device_context.cpp | 694 double bottomRightY = 0.0; in SetVKeyboardArea() local 695 if (!JsUtil::ParseDouble(env, argv[3], bottomRightY)) { in SetVKeyboardArea() 696 MMI_HILOGE("ParseDouble failed. property name: bottomRightY"); in SetVKeyboardArea() 697 THROWERR_API9(env, COMMON_PARAMETER_ERROR, "bottomRightY", "number"); in SetVKeyboardArea() 700 int32_t ret = InputManager::GetInstance()->SetVKeyboardArea(topLeftX, topLeftY, bottomRightX, bottomRightY); in SetVKeyboardArea()
|
/foundation/multimodalinput/input/frameworks/proxy/event_handler/include/ |
H A D | input_manager_impl.h | 216 int32_t SetVKeyboardArea(double topLeftX, double topLeftY, double bottomRightX, double bottomRightY);
|
/foundation/multimodalinput/input/interfaces/native/innerkits/proxy/include/ |
H A D | input_manager.h | 920 int32_t SetVKeyboardArea(double topLeftX, double topLeftY, double bottomRightX, double bottomRightY);
|
/foundation/multimodalinput/input/service/module_loader/src/ |
H A D | mmi_service.cpp | 160 double topLeftX, double topLeftY, double bottomRightX, double bottomRightY); 3305 int32_t MMIService::SetVKeyboardArea(double topLeftX, double topLeftY, double bottomRightX, double bottomRightY) in SetVKeyboardArea() argument 3313 [this, topLeftX, topLeftY, bottomRightX, bottomRightY] { in SetVKeyboardArea() 3314 return this->OnSetVKeyboardArea(topLeftX, topLeftY, bottomRightX, bottomRightY); in SetVKeyboardArea() 3323 int32_t MMIService::OnSetVKeyboardArea(double topLeftX, double topLeftY, double bottomRightX, double bottomRightY) in OnSetVKeyboardArea() argument 3325 gaussiankeyboard_setVKeyboardArea_(topLeftX, topLeftY, bottomRightX, bottomRightY); in OnSetVKeyboardArea()
|
/foundation/multimodalinput/input/service/connect_manager/src/ |
H A D | multimodal_input_connect_manager.cpp | 795 int32_t MultimodalInputConnectManager::SetVKeyboardArea(double topLeftX, double topLeftY, double bottomRightX, double bottomRightY) in SetVKeyboardArea() argument 799 return multimodalInputConnectService_->SetVKeyboardArea(topLeftX, topLeftY, bottomRightX, bottomRightY); in SetVKeyboardArea()
|
H A D | multimodal_input_connect_stub.cpp | 2481 double bottomRightY = 0.0; in StubSetVKeyboardArea() local 2485 READDOUBLE(data, bottomRightY, IPC_PROXY_DEAD_OBJECT_ERR); in StubSetVKeyboardArea() 2487 int32_t ret = SetVKeyboardArea(topLeftX, topLeftY, bottomRightX, bottomRightY); in StubSetVKeyboardArea()
|
H A D | multimodal_input_connect_proxy.cpp | 2056 int32_t MultimodalInputConnectProxy::SetVKeyboardArea(double topLeftX, double topLeftY, double bottomRightX, double bottomRightY) in SetVKeyboardArea() argument 2067 WRITEDOUBLE(data, bottomRightY, ERR_INVALID_VALUE); in SetVKeyboardArea()
|
/foundation/multimodalinput/input/frameworks/proxy/event_handler/src/ |
H A D | input_manager_impl.cpp | 2350 int32_t InputManagerImpl::SetVKeyboardArea(double topLeftX, double topLeftY, double bottomRightX, double bottomRightY) in SetVKeyboardArea() argument 2353 return MULTIMODAL_INPUT_CONNECT_MGR->SetVKeyboardArea(topLeftX, topLeftY, bottomRightX, bottomRightY); in SetVKeyboardArea()
|
/foundation/multimodalinput/input/frameworks/proxy/events/test/ |
H A D | input_manager_test.cpp | 3470 double bottomRightY = 10.0; in HWTEST_F() local 3471 int32_t ret = InputManager::GetInstance()->SetVKeyboardArea(topLeftX, topLeftY, bottomRightX, bottomRightY); in HWTEST_F()
|