/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/ |
H A D | richeditor_model_impl.h | 32 void SetCustomKeyboard(std::function<void()>&& func, bool supportAvoidance = false) override {}
|
H A D | search_model_impl.h | 76 void SetCustomKeyboard(const std::function<void ()> &&buildFunc, bool supportAvoidance = false) override {};
|
H A D | text_field_model_impl.h | 84 void SetCustomKeyboard(const std::function<void()>&& buildFunc, bool supportAvoidance = false) override {};
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/search/ |
H A D | search_model.h | 84 virtual void SetCustomKeyboard(const std::function<void()>&& buildFunc, bool supportAvoidance = false);
|
H A D | search_model_ng.h | 71 void SetCustomKeyboard(const std::function<void ()> &&buildFunc, bool supportAvoidance = false) override;
|
H A D | search_model_ng.cpp | 712 void SearchModelNG::SetCustomKeyboard(const std::function<void()>&& buildFunc, bool supportAvoidance) in SetCustomKeyboard() argument 721 textFieldPattern->SetCustomKeyboardOption(supportAvoidance); in SetCustomKeyboard()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/rich_editor/ |
H A D | rich_editor_model_ng.h | 35 void SetCustomKeyboard(std::function<void()>&& func, bool supportAvoidance) override;
|
H A D | rich_editor_model_ng.cpp | 199 void RichEditorModelNG::SetCustomKeyboard(std::function<void()>&& func, bool supportAvoidance) in SetCustomKeyboard() argument 206 pattern->SetCustomKeyboardOption(supportAvoidance); in SetCustomKeyboard()
|
H A D | rich_editor_model.h | 345 virtual void SetCustomKeyboard(std::function<void()>&& func, bool supportAvoidance = false) = 0;
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/text_input/ |
H A D | text_area_test.cpp | 1331 auto supportAvoidance = true; in HWTEST_F() local 1332 pattern_->SetCustomKeyboardOption(supportAvoidance); in HWTEST_F() 1334 supportAvoidance = false; in HWTEST_F() 1335 pattern_->SetCustomKeyboardOption(supportAvoidance); in HWTEST_F()
|
H A D | text_input_test.cpp | 2215 auto supportAvoidance = true; in HWTEST_F() local 2216 pattern_->SetCustomKeyboardOption(supportAvoidance); in HWTEST_F() 2218 supportAvoidance = false; in HWTEST_F() 2219 pattern_->SetCustomKeyboardOption(supportAvoidance); in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_field/ |
H A D | text_field_model_ng.h | 95 void SetCustomKeyboard(const std::function<void()>&& buildFunc, bool supportAvoidance = false) override; 245 static void SetCustomKeyboard(FrameNode* frameNode, FrameNode* customKeyboard, bool supportAvoidance = false);
|
H A D | text_field_model.h | 328 virtual void SetCustomKeyboard(const std::function<void()>&& buildFunc, bool supportAvoidance = false) = 0;
|
H A D | text_field_model_ng.cpp | 786 void TextFieldModelNG::SetCustomKeyboard(const std::function<void()>&& buildFunc, bool supportAvoidance) in SetCustomKeyboard() argument 792 pattern->SetCustomKeyboardOption(supportAvoidance); in SetCustomKeyboard() 1759 void TextFieldModelNG::SetCustomKeyboard(FrameNode* frameNode, FrameNode* customKeyboard, bool supportAvoidance) in SetCustomKeyboard() argument 1765 pattern->SetCustomKeyboardOption(supportAvoidance); in SetCustomKeyboard()
|
/foundation/arkui/ace_engine/test/mock/core/pipeline/ |
H A D | mock_pipeline_context.cpp | 445 const bool supportAvoidance, bool forceChange) in OnVirtualKeyboardHeightChange() 453 const float safeHeight, const bool supportAvoidance) in AvoidanceLogic() 901 const bool supportAvoidance, bool forceChange) in OnVirtualKeyboardAreaChange() 443 OnVirtualKeyboardHeightChange(float keyboardHeight, const std::shared_ptr<Rosen::RSTransaction>& rsTransaction, const float safeHeight, const bool supportAvoidance, bool forceChange) OnVirtualKeyboardHeightChange() argument 452 AvoidanceLogic(float keyboardHeight, const std::shared_ptr<Rosen::RSTransaction>& rsTransaction, const float safeHeight, const bool supportAvoidance) AvoidanceLogic() argument 899 OnVirtualKeyboardAreaChange(Rect keyboardArea, const std::shared_ptr<Rosen::RSTransaction>& rsTransaction, const float safeHeight, const bool supportAvoidance, bool forceChange) OnVirtualKeyboardAreaChange() argument
|
/foundation/arkui/ace_engine/frameworks/core/pipeline/ |
H A D | pipeline_base.cpp | 736 const std::shared_ptr<Rosen::RSTransaction>& rsTransaction, const float safeHeight, bool supportAvoidance, in OnVirtualKeyboardAreaChange() 753 OnVirtualKeyboardHeightChange(keyboardHeight, rsTransaction, safeHeight, supportAvoidance, forceChange); in OnVirtualKeyboardAreaChange() 735 OnVirtualKeyboardAreaChange(Rect keyboardArea, const std::shared_ptr<Rosen::RSTransaction>& rsTransaction, const float safeHeight, bool supportAvoidance, bool forceChange) OnVirtualKeyboardAreaChange() argument
|
H A D | pipeline_base.h | 930 bool supportAvoidance = false, bool forceChange = false); 1474 const bool supportAvoidance = false, bool forceChange = false) in OnVirtualKeyboardHeightChange()
|
H A D | pipeline_context.h | 240 const bool supportAvoidance = false, bool forceChange = false) override;
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/search/ |
H A D | search_testtwo_ng.cpp | 1314 auto supportAvoidance = true; in HWTEST_F() local 1315 textFieldPattern->SetCustomKeyboardOption(supportAvoidance); in HWTEST_F() 1317 supportAvoidance = false; in HWTEST_F() 1318 textFieldPattern->SetCustomKeyboardOption(supportAvoidance); in HWTEST_F()
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/rich_editor/ |
H A D | rich_editor_base_testone_ng.cpp | 213 auto supportAvoidance = true; in HWTEST_F() local 214 richEditorPattern->SetCustomKeyboardOption(supportAvoidance); in HWTEST_F() 218 supportAvoidance = false; in HWTEST_F() 219 richEditorPattern->SetCustomKeyboardOption(supportAvoidance); in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/core/pipeline_ng/ |
H A D | pipeline_context.h | 986 const bool supportAvoidance = false, bool forceChange = false) override; 996 const float safeHeight = 0.0f, const bool supportAvoidance = false);
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_search.cpp | 1107 bool supportAvoidance = false; in SetCustomKeyboard() local 1110 auto isSupportAvoidance = paramObject->GetProperty("supportAvoidance"); in SetCustomKeyboard() 1112 supportAvoidance = isSupportAvoidance->ToBoolean(); in SetCustomKeyboard() 1117 SearchModel::GetInstance()->SetCustomKeyboard(std::move(buildFunc), supportAvoidance); in SetCustomKeyboard() local
|
H A D | js_textfield.cpp | 1477 bool supportAvoidance = false; in SetCustomKeyboard() local 1480 auto isSupportAvoidance = paramObject->GetProperty("supportAvoidance"); in SetCustomKeyboard() 1482 supportAvoidance = isSupportAvoidance->ToBoolean(); in SetCustomKeyboard() 1487 TextFieldModel::GetInstance()->SetCustomKeyboard(std::move(buildFunc), supportAvoidance); in SetCustomKeyboard() local
|
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/ |
H A D | node_text_input_modifier.cpp | 1590 void SetTextInputCustomKeyboard(ArkUINodeHandle node, ArkUINodeHandle customKeyboard, bool supportAvoidance) in SetTextInputCustomKeyboard() argument 1596 TextFieldModelNG::SetCustomKeyboard(frameNode, customKeyboardNode, supportAvoidance); in SetTextInputCustomKeyboard()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/overlay/ |
H A D | overlay_manager.h | 544 void SetCustomKeyboardOption(bool supportAvoidance);
|