Home
last modified time | relevance | path

Searched refs:supportAvoidance (Results 1 - 25 of 36) sorted by relevance

12

/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/
H A Dricheditor_model_impl.h32 void SetCustomKeyboard(std::function<void()>&& func, bool supportAvoidance = false) override {}
H A Dsearch_model_impl.h76 void SetCustomKeyboard(const std::function<void ()> &&buildFunc, bool supportAvoidance = false) override {};
H A Dtext_field_model_impl.h84 void SetCustomKeyboard(const std::function<void()>&& buildFunc, bool supportAvoidance = false) override {};
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/search/
H A Dsearch_model.h84 virtual void SetCustomKeyboard(const std::function<void()>&& buildFunc, bool supportAvoidance = false);
H A Dsearch_model_ng.h71 void SetCustomKeyboard(const std::function<void ()> &&buildFunc, bool supportAvoidance = false) override;
H A Dsearch_model_ng.cpp712 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 Drich_editor_model_ng.h35 void SetCustomKeyboard(std::function<void()>&& func, bool supportAvoidance) override;
H A Drich_editor_model_ng.cpp199 void RichEditorModelNG::SetCustomKeyboard(std::function<void()>&& func, bool supportAvoidance) in SetCustomKeyboard() argument
206 pattern->SetCustomKeyboardOption(supportAvoidance); in SetCustomKeyboard()
H A Drich_editor_model.h345 virtual void SetCustomKeyboard(std::function<void()>&& func, bool supportAvoidance = false) = 0;
/foundation/arkui/ace_engine/test/unittest/core/pattern/text_input/
H A Dtext_area_test.cpp1331 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 Dtext_input_test.cpp2215 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 Dtext_field_model_ng.h95 void SetCustomKeyboard(const std::function<void()>&& buildFunc, bool supportAvoidance = false) override;
245 static void SetCustomKeyboard(FrameNode* frameNode, FrameNode* customKeyboard, bool supportAvoidance = false);
H A Dtext_field_model.h328 virtual void SetCustomKeyboard(const std::function<void()>&& buildFunc, bool supportAvoidance = false) = 0;
H A Dtext_field_model_ng.cpp786 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 Dmock_pipeline_context.cpp445 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 Dpipeline_base.cpp736 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 Dpipeline_base.h930 bool supportAvoidance = false, bool forceChange = false);
1474 const bool supportAvoidance = false, bool forceChange = false) in OnVirtualKeyboardHeightChange()
H A Dpipeline_context.h240 const bool supportAvoidance = false, bool forceChange = false) override;
/foundation/arkui/ace_engine/test/unittest/core/pattern/search/
H A Dsearch_testtwo_ng.cpp1314 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 Drich_editor_base_testone_ng.cpp213 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 Dpipeline_context.h986 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 Djs_search.cpp1107 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 Djs_textfield.cpp1477 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 Dnode_text_input_modifier.cpp1590 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 Doverlay_manager.h544 void SetCustomKeyboardOption(bool supportAvoidance);

Completed in 44 milliseconds

12