/base/inputmethod/imf/frameworks/native/inputmethod_ability/src/ |
H A D | input_method_agent_stub.cpp | 54 int32_t positionX = data.ReadInt32(); in OnRemoteRequest() local 57 OnCursorUpdate(positionX, positionY, height); in OnRemoteRequest() 139 void InputMethodAgentStub::OnCursorUpdate(int32_t positionX, int32_t positionY, int height) in OnCursorUpdate() argument 141 auto task = std::make_shared<TaskImsaOnCursorUpdate>(positionX, positionY, height); in OnCursorUpdate()
|
H A D | input_method_agent_proxy.cpp | 43 void InputMethodAgentProxy::OnCursorUpdate(int32_t positionX, int32_t positionY, int32_t height) in OnCursorUpdate() argument 45 auto ret = SendRequest(ON_CURSOR_UPDATE, [positionX, positionY, height](MessageParcel &data) { in OnCursorUpdate() 46 return ITypesUtil::Marshal(data, positionX, positionY, height); in OnCursorUpdate()
|
H A D | input_method_ability.cpp | 329 void InputMethodAbility::OnCursorUpdate(int32_t positionX, int32_t positionY, int32_t height) in OnCursorUpdate() argument 335 IMSA_HILOGD("x: %{public}d, y: %{public}d, height: %{public}d.", positionX, positionY, height); in OnCursorUpdate() 336 kdListener_->OnCursorUpdate(positionX, positionY, height); in OnCursorUpdate()
|
/base/inputmethod/imf/frameworks/native/inputmethod_ability/include/ |
H A D | i_input_method_agent.h | 48 virtual void OnCursorUpdate(int32_t positionX, int32_t positionY, int height) = 0;
|
H A D | input_method_agent_proxy.h | 41 void OnCursorUpdate(int32_t positionX, int32_t positionY, int32_t height) override;
|
H A D | input_method_agent_stub.h | 33 void OnCursorUpdate(int32_t positionX, int32_t positionY, int height) override;
|
H A D | input_method_ability.h | 106 void OnCursorUpdate(int32_t positionX, int32_t positionY, int32_t height);
|
/base/inputmethod/imf/interfaces/inner_api/inputmethod_ability/include/ |
H A D | keyboard_listener.h | 31 virtual void OnCursorUpdate(int32_t positionX, int32_t positionY, int32_t height) = 0;
|
/base/inputmethod/imf/test/common/include/ |
H A D | keyboard_listener_test_impl.h | 36 void OnCursorUpdate(int32_t positionX, int32_t positionY, int32_t height) override;
|
/base/inputmethod/imf/frameworks/js/napi/inputmethodability/ |
H A D | js_keyboard_delegate_setting.h | 45 void OnCursorUpdate(int32_t positionX, int32_t positionY, int32_t height) override; 64 int32_t positionX = 0; member
|
H A D | js_keyboard_delegate_setting.cpp | 468 void JsKeyboardDelegateSetting::OnCursorUpdate(int32_t positionX, int32_t positionY, int32_t height) in OnCursorUpdate() argument 470 CursorPara para{ positionX, positionY, height }; in OnCursorUpdate() 473 entry.curPara.positionX = para.positionX; in OnCursorUpdate() 485 IMSA_HILOGD("the cursor for x: %{public}d, y: %{public}d, height: %{public}d.", positionX, positionY, in OnCursorUpdate() 493 napi_create_int32(env, entry->curPara.positionX, &args[0]); in OnCursorUpdate()
|
/base/msdp/device_status/services/interaction/drag/include/ |
H A D | drag_drawing.h | 332 int32_t SetNodesLocation(int32_t positionX, int32_t positionY); 333 int32_t CreateEventRunner(int32_t positionX, int32_t positionY); 336 void MultiSelectedAnimation(int32_t positionX, int32_t positionY, int32_t adjustSize, 338 void DoMultiSelectedAnimation(float positionX, float positionY, float adjustSize, 379 void DrawRotateDisplayXY(float positionX, float positionY);
|
/base/msdp/device_status/services/interaction/drag/src/ |
H A D | drag_drawing.cpp | 364 int32_t positionX = g_drawingInfo.displayX + g_drawingInfo.pixelMapX; in Draw() local 368 g_drawingInfo.parentNode->SetBounds(positionX, positionY, g_drawingInfo.pixelMap->GetWidth(), in Draw() 370 g_drawingInfo.parentNode->SetFrame(positionX, positionY, g_drawingInfo.pixelMap->GetWidth(), in Draw() 376 MultiSelectedAnimation(positionX, positionY, adjustSize, isMultiSelectedAnimation); in Draw() 405 float positionX = g_drawingInfo.x + g_drawingInfo.pixelMapX; in UpdateDragPosition() local 411 parentNode->SetBounds(positionX, positionY, pixelMap->GetWidth(), in UpdateDragPosition() 413 parentNode->SetFrame(positionX, positionY, pixelMap->GetWidth(), in UpdateDragPosition() 419 DoMultiSelectedAnimation(positionX, positionY, adjustSize); in UpdateDragPosition() 428 void DragDrawing::DoMultiSelectedAnimation(float positionX, float positionY, float adjustSize, in DoMultiSelectedAnimation() argument 440 float multiSelectedPositionX = positionX in DoMultiSelectedAnimation() 560 int32_t positionX = g_drawingInfo.displayX + g_drawingInfo.pixelMapX; UpdatePixeMapDrawingOrder() local 2165 float positionX = g_drawingInfo.currentPositionX; RotateCanvasNode() local 2263 SetNodesLocation(int32_t positionX, int32_t positionY) SetNodesLocation() argument 2305 int32_t positionX = displayX + g_drawingInfo.pixelMapX; EnterTextEditorArea() local 2405 float positionX = mousePositionX - (static_cast<float>(g_drawingInfo.mouseWidth) / CURSOR_CIRCLE_MIDDLE); UpdateMousePosition() local 2466 int32_t positionX = mousePositionX - (g_drawingInfo.mouseWidth / CURSOR_CIRCLE_MIDDLE); DoDrawMouse() local 2605 MultiSelectedAnimation(int32_t positionX, int32_t positionY, int32_t adjustSize, bool isMultiSelectedAnimation) MultiSelectedAnimation() argument 2961 DrawRotateDisplayXY(float positionX, float positionY) DrawRotateDisplayXY() argument [all...] |
/base/inputmethod/imf/test/common/src/ |
H A D | keyboard_listener_test_impl.cpp | 49 void KeyboardListenerTestImpl::OnCursorUpdate(int32_t positionX, int32_t positionY, int32_t height) in OnCursorUpdate() argument
|
/base/inputmethod/imf/test/unittest/cpp_test/src/ |
H A D | input_method_editor_test.cpp | 66 void OnCursorUpdate(int32_t positionX, int32_t positionY, int32_t height) override; 96 void KeyboardListenerImpl::OnCursorUpdate(int32_t positionX, int32_t positionY, int32_t height) in OnCursorUpdate() argument 98 IMSA_HILOGD("KeyboardListenerImpl::OnCursorUpdate %{public}d %{public}d %{public}d", positionX, positionY, height); in OnCursorUpdate() 99 cursorInfo_ = { static_cast<double>(positionX), static_cast<double>(positionY), 0, static_cast<double>(height) }; in OnCursorUpdate()
|
H A D | input_method_controller_test.cpp | 202 void OnCursorUpdate(int32_t positionX, int32_t positionY, int32_t height) override 204 IMSA_HILOGI("KeyboardListenerImpl %{public}d %{public}d %{public}d", positionX, positionY, height); 205 cursorInfo_ = { static_cast<double>(positionX), static_cast<double>(positionY), 0,
|
/base/msdp/device_status/frameworks/native/interaction/src/ |
H A D | coordination_manager_impl.cpp | 308 int32_t positionX = 0; in OnHotAreaListener() local 312 pkt >> positionX >> positionY >> type >> isEdge; in OnHotAreaListener() 317 OnDevHotAreaListener(positionX, positionY, HotAreaType(type), isEdge); in OnHotAreaListener()
|
/base/inputmethod/imf/test/fuzztest/inputmethodability_fuzzer/ |
H A D | inputmethodability_fuzzer.cpp | 38 void OnCursorUpdate(int32_t positionX, int32_t positionY, int32_t height) in OnCursorUpdate() argument
|
/base/msdp/device_status/intention/cooperate/client/src/ |
H A D | cooperate_client.cpp | 468 int32_t positionX = 0; in OnHotAreaListener() local 472 pkt >> positionX >> positionY >> type >> isEdge; in OnHotAreaListener() 477 OnDevHotAreaListener(positionX, positionY, HotAreaType(type), isEdge); in OnHotAreaListener()
|