Home
last modified time | relevance | path

Searched refs:positionX (Results 1 - 19 of 19) sorted by relevance

/base/inputmethod/imf/frameworks/native/inputmethod_ability/src/
H A Dinput_method_agent_stub.cpp54 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 Dinput_method_agent_proxy.cpp43 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 Dinput_method_ability.cpp329 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 Di_input_method_agent.h48 virtual void OnCursorUpdate(int32_t positionX, int32_t positionY, int height) = 0;
H A Dinput_method_agent_proxy.h41 void OnCursorUpdate(int32_t positionX, int32_t positionY, int32_t height) override;
H A Dinput_method_agent_stub.h33 void OnCursorUpdate(int32_t positionX, int32_t positionY, int height) override;
H A Dinput_method_ability.h106 void OnCursorUpdate(int32_t positionX, int32_t positionY, int32_t height);
/base/inputmethod/imf/interfaces/inner_api/inputmethod_ability/include/
H A Dkeyboard_listener.h31 virtual void OnCursorUpdate(int32_t positionX, int32_t positionY, int32_t height) = 0;
/base/inputmethod/imf/test/common/include/
H A Dkeyboard_listener_test_impl.h36 void OnCursorUpdate(int32_t positionX, int32_t positionY, int32_t height) override;
/base/inputmethod/imf/frameworks/js/napi/inputmethodability/
H A Djs_keyboard_delegate_setting.h45 void OnCursorUpdate(int32_t positionX, int32_t positionY, int32_t height) override;
64 int32_t positionX = 0; member
H A Djs_keyboard_delegate_setting.cpp468 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 Ddrag_drawing.h332 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 Ddrag_drawing.cpp364 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 Dkeyboard_listener_test_impl.cpp49 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 Dinput_method_editor_test.cpp66 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 Dinput_method_controller_test.cpp202 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 Dcoordination_manager_impl.cpp308 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 Dinputmethodability_fuzzer.cpp38 void OnCursorUpdate(int32_t positionX, int32_t positionY, int32_t height) in OnCursorUpdate() argument
/base/msdp/device_status/intention/cooperate/client/src/
H A Dcooperate_client.cpp468 int32_t positionX = 0; in OnHotAreaListener() local
472 pkt >> positionX >> positionY >> type >> isEdge; in OnHotAreaListener()
477 OnDevHotAreaListener(positionX, positionY, HotAreaType(type), isEdge); in OnHotAreaListener()

Completed in 22 milliseconds