Home
last modified time | relevance | path

Searched refs:actionArguments (Results 1 - 25 of 103) sorted by relevance

12345

/foundation/barrierfree/accessibility/services/test/moduletest/aamstest/aams_accessible_ability_channel_test/
H A Daams_accessible_ability_channel_test.cpp416 std::map<std::string, std::string> actionArguments; in HWTEST_F() local
417 actionArguments.insert(std::make_pair("invalid", "invalid")); in HWTEST_F()
421 AccessibilityHelper::GetInstance().GetTestStub()->ExecuteAction(0, 4, 3, actionArguments, 0, nullptr); in HWTEST_F()
444 std::map<std::string, std::string> actionArguments; in HWTEST_F() local
445 actionArguments.insert(std::make_pair("invalid", "invalid")); in HWTEST_F()
449 ACTIVE_WINDOW_ID, 4, 3, actionArguments, 0, nullptr); in HWTEST_F()
622 std::map<std::string, std::string> actionArguments; in HWTEST_F() local
623 actionArguments.insert(std::make_pair("invalid", "invalid")); in HWTEST_F()
627 AccessibilityHelper::GetInstance().GetTestStub()->ExecuteAction(0, 4, 3, actionArguments, 0, nullptr); in HWTEST_F()
633 EXPECT_NE(actionArguments, proxy in HWTEST_F()
[all...]
/foundation/barrierfree/accessibility/services/test/mock/
H A Dmock_aams_accessible_ability_channel.cpp416 std::map<std::string, std::string> actionArguments; in HWTEST_F() local
417 actionArguments.insert(std::make_pair("invalid", "invalid")); in HWTEST_F()
421 AccessibilityHelper::GetInstance().GetTestStub()->ExecuteAction(0, 4, 3, actionArguments, 0, nullptr); in HWTEST_F()
444 std::map<std::string, std::string> actionArguments; in HWTEST_F() local
445 actionArguments.insert(std::make_pair("invalid", "invalid")); in HWTEST_F()
449 ACTIVE_WINDOW_ID, 4, 3, actionArguments, 0, nullptr); in HWTEST_F()
622 std::map<std::string, std::string> actionArguments; in HWTEST_F() local
623 actionArguments.insert(std::make_pair("invalid", "invalid")); in HWTEST_F()
627 AccessibilityHelper::GetInstance().GetTestStub()->ExecuteAction(0, 4, 3, actionArguments, 0, nullptr); in HWTEST_F()
633 EXPECT_NE(actionArguments, proxy in HWTEST_F()
[all...]
H A Dmock_accessibility_element_operator_proxy.cpp83 const std::map<std::string, std::string> &actionArguments, const int32_t requestId, in ExecuteAction()
89 testActionArguments_ = actionArguments; in ExecuteAction()
82 ExecuteAction(const int64_t elementId, const int32_t action, const std::map<std::string, std::string> &actionArguments, const int32_t requestId, const sptr<IAccessibilityElementOperatorCallback>& callback) ExecuteAction() argument
/foundation/arkui/ace_engine/test/unittest/core/accessibility/
H A Dnative_interface_accessibility_provider_test.cpp56 const std::map<std::string, std::string>& actionArguments) override
246 ArkUI_AccessibilityActionArguments *actionArguments, in MockExecuteAccessibilityAction()
254 auto value = actionArguments->FindValueByKey(pair.first.c_str()); in MockExecuteAccessibilityAction()
592 std::map<std::string, std::string> actionArguments = in HWTEST_F() local
596 elementId, action, requestId, actionArguments); in HWTEST_F()
605 elementId, action, requestId, actionArguments); in HWTEST_F()
607 EXPECT_EQ(actionArguments, g_providerMockResult.resultActionArguments_); in HWTEST_F()
658 std::map<std::string, std::string> actionArguments = in HWTEST_F() local
243 MockExecuteAccessibilityAction( int64_t elementId, ArkUI_Accessibility_ActionType action, ArkUI_AccessibilityActionArguments *actionArguments, int32_t requestId) MockExecuteAccessibilityAction() argument
/foundation/barrierfree/accessibility/frameworks/aafwk/test/unittest/
H A Daccessible_ability_channel_client_test.cpp191 std::map<std::string, std::string> actionArguments; in HWTEST_F() local
193 ELEMENT_ID, ActionType::ACCESSIBILITY_ACTION_SELECT, actionArguments), RET_ERR_FAILED); in HWTEST_F()
208 std::map<std::string, std::string> actionArguments; in HWTEST_F() local
210 ELEMENT_ID, ActionType::ACCESSIBILITY_ACTION_SELECT, actionArguments), RET_ERR_SAMGR); in HWTEST_F()
223 std::map<std::string, std::string> actionArguments; in HWTEST_F() local
225 ActionType::ACCESSIBILITY_ACTION_SELECT, actionArguments), RET_ERR_TIME_OUT); in HWTEST_F()
H A Daccessibility_ui_test_ability_impl_extension_test.cpp614 std::map<std::string, std::string> actionArguments {}; in HWTEST_F()
615 EXPECT_EQ(instance_->ExecuteAction(elementInfo, action, actionArguments), RET_ERR_NULLPTR); in HWTEST_F()
636 std::map<std::string, std::string> actionArguments {}; in HWTEST_F()
637 EXPECT_EQ(instance_->ExecuteAction(elementInfo, action, actionArguments), RET_OK); in HWTEST_F()
1370 std::map<std::string, std::string> actionArguments {}; in HWTEST_F()
1371 EXPECT_EQ(instance_->ExecuteAction(elementInfo, action, actionArguments), RET_ERR_NULLPTR); in HWTEST_F()
1392 std::map<std::string, std::string> actionArguments {}; in HWTEST_F()
1393 EXPECT_EQ(instance_->ExecuteAction(elementInfo, action, actionArguments), RET_OK); in HWTEST_F()
H A Daccessible_ability_client_impl_test.cpp618 std::map<std::string, std::string> actionArguments {}; in HWTEST_F()
619 EXPECT_EQ(instance_->ExecuteAction(elementInfo, action, actionArguments), RET_ERR_INVALID_PARAM); in HWTEST_F()
633 std::map<std::string, std::string> actionArguments {}; in HWTEST_F()
634 EXPECT_EQ(instance_->ExecuteAction(elementInfo, action, actionArguments), RET_ERR_NO_CONNECTION); in HWTEST_F()
649 std::map<std::string, std::string> actionArguments {}; in HWTEST_F()
650 EXPECT_EQ(instance_->ExecuteAction(elementInfo, action, actionArguments), RET_ERR_TIME_OUT); in HWTEST_F()
671 std::map<std::string, std::string> actionArguments {}; in HWTEST_F()
672 EXPECT_EQ(instance_->ExecuteAction(elementInfo, actions[i], actionArguments), RET_ERR_TIME_OUT); in HWTEST_F()
/foundation/arkui/ace_engine/adapter/ohos/osal/
H A Dfake_accessibility_manager.cpp31 bool ExecuteExtensionActionNG(int64_t elementId, const std::map<std::string, std::string>& actionArguments,
77 const std::map<std::string, std::string>& actionArguments, in ExecuteExtensionActionNG()
75 ExecuteExtensionActionNG( int64_t elementId, const std::map<std::string, std::string>& actionArguments, int32_t action, const RefPtr<PipelineBase>& context, int64_t uiExtensionOffset ) ExecuteExtensionActionNG() argument
H A Djs_third_provider_interaction_operation.h62 const std::map<std::string, std::string>& actionArguments, const int32_t requestId,
129 const std::map<std::string, std::string>& actionArguments, const int32_t requestId);
H A Djs_accessibility_manager.h85 std::map<std::string, std::string> actionArguments; member
182 bool ExecuteExtensionActionNG(int64_t elementId, const std::map<std::string, std::string>& actionArguments,
209 const std::map<std::string, std::string>& actionArguments, const RefPtr<NG::WebPattern>& webPattern);
278 const std::map<std::string, std::string>& actionArguments, const int32_t requestId,
317 const std::map<std::string, std::string>& actionArguments, const int32_t requestId,
380 const std::map<std::string, std::string>& actionArguments, const RefPtr<AccessibilityNode>& node,
397 bool ExecuteActionNG(int64_t elementId, const std::map<std::string, std::string>& actionArguments,
431 const std::map<std::string, std::string>& actionArguments,
/foundation/barrierfree/accessibility/services/aams/test/mock/src/
H A Dmock_accessible_ability_channel_proxy.cpp96 const int32_t action, const std::map<std::string, std::string> &actionArguments, const int32_t requestId, in ExecuteAction()
103 (void)actionArguments; in ExecuteAction()
95 ExecuteAction(const int32_t accessibilityWindowId, const int64_t elementId, const int32_t action, const std::map<std::string, std::string> &actionArguments, const int32_t requestId, const sptr<IAccessibilityElementOperatorCallback>& callback) ExecuteAction() argument
H A Dmock_accessible_ability_connection.cpp96 const int32_t action, const std::map<std::string, std::string> &actionArguments, const int32_t requestId, in ExecuteAction()
103 (void)actionArguments; in ExecuteAction()
95 ExecuteAction(const int32_t accessibilityWindowId, const int64_t elementId, const int32_t action, const std::map<std::string, std::string> &actionArguments, const int32_t requestId, const sptr<IAccessibilityElementOperatorCallback>& callback) ExecuteAction() argument
/foundation/barrierfree/accessibility/frameworks/aafwk/test/mock/src/
H A Dmock_accessible_ability_channel_proxy.cpp102 const int32_t action, const std::map<std::string, std::string>& actionArguments, const int32_t requestId, in ExecuteAction()
109 (void)actionArguments; in ExecuteAction()
101 ExecuteAction(const int32_t accessibilityWindowId, const int64_t elementId, const int32_t action, const std::map<std::string, std::string>& actionArguments, const int32_t requestId, const sptr<IAccessibilityElementOperatorCallback>& callback) ExecuteAction() argument
H A Dmock_accessible_ability_client_impl.cpp237 const ActionType action, const std::map<std::string, std::string> &actionArguments) in ExecuteAction()
242 (void)actionArguments; in ExecuteAction()
236 ExecuteAction(const AccessibilityElementInfo &elementInfo, const ActionType action, const std::map<std::string, std::string> &actionArguments) ExecuteAction() argument
/foundation/barrierfree/accessibility/services/test/moduletest/mock/src/
H A Dmock_mt_accessible_ability_channel_proxy.cpp96 const int32_t action, const std::map<std::string, std::string> &actionArguments, const int32_t requestId, in ExecuteAction()
103 (void)actionArguments; in ExecuteAction()
95 ExecuteAction(const int32_t accessibilityWindowId, const int64_t elementId, const int32_t action, const std::map<std::string, std::string> &actionArguments, const int32_t requestId, const sptr<IAccessibilityElementOperatorCallback>& callback) ExecuteAction() argument
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/xcomponent/
H A Dxcomponent_accessibility_provider.cpp100 const std::map<std::string, std::string>& actionArguments) in ExecuteAccessibilityAction()
106 elementId, action, requestId, actionArguments); in ExecuteAccessibilityAction()
98 ExecuteAccessibilityAction( const int64_t elementId, int32_t action, const int32_t requestId, const std::map<std::string, std::string>& actionArguments) ExecuteAccessibilityAction() argument
/foundation/arkui/ace_engine/frameworks/core/accessibility/
H A Daccessibility_provider.h49 const std::map<std::string, std::string>& actionArguments) = 0;
H A Dnative_interface_accessibility_provider.cpp177 const std::map<std::string, std::string>& actionArguments) in ExecuteAccessibilityAction()
188 new ArkUI_AccessibilityActionArguments(actionArguments), in ExecuteAccessibilityAction()
175 ExecuteAccessibilityAction( const int64_t elementId, int32_t action, const int32_t requestId, const std::map<std::string, std::string>& actionArguments) ExecuteAccessibilityAction() argument
/foundation/barrierfree/accessibility/frameworks/asacfwk/test/mock/include/
H A Dmocku_accessibility_system_ability_client_impl.h37 const std::map<std::string, std::string> &actionArguments,
H A Dmocku_accessibility_element_operator_impl.h37 const std::map<std::string, std::string> &actionArguments,
H A Dmock_accessibility_element_operator.h37 const std::map<std::string, std::string> &actionArguments,
/foundation/barrierfree/accessibility/common/interface/test/fuzztest/accessibleabilitymanagerservicestub_fuzzer/
H A Daccessibility_element_operator_fuzz_impl.h43 const std::map<std::string, std::string> &actionArguments, const int32_t requestId,
/foundation/barrierfree/accessibility/common/interface/include/
H A Di_accessibility_element_operator.h88 * @param actionArguments The parameter for action type. such as:
90 * actionArguments(ACTION_ARGU_HTML_ELEMENT,HtmlItemType)
92 * actionArguments(ACTION_ARGU_HTML_ELEMENT,HtmlItemType)
94 * actionArguments(ACTION_ARGU_MOVE_UNIT,MOVE_UNIT_XXX)
96 * actionArguments(ACTION_ARGU_MOVE_UNIT,MOVE_UNIT_XXX)
98 * actionArguments({ACTION_ARGU_SELECT_TEXT_START,"1"(start location)},
101 * actionArguments(ACTION_ARGU_SET_TEXT,"the text of setted")
104 const std::map<std::string, std::string> &actionArguments,
/foundation/barrierfree/accessibility/interfaces/innerkits/asacfwk/include/
H A Daccessibility_element_operator.h85 * @param actionArguments The parameter for action type. such as:
87 * actionArguments(ACTION_ARGU_HTML_ELEMENT,HtmlItemType)
89 * actionArguments(ACTION_ARGU_HTML_ELEMENT,HtmlItemType)
91 * actionArguments(ACTION_ARGU_MOVE_UNIT,MOVE_UNIT_XXX)
93 * actionArguments(ACTION_ARGU_MOVE_UNIT,MOVE_UNIT_XXX)
95 * actionArguments({ACTION_ARGU_SELECT_TEXT_START,"1"(start location)},
98 * actionArguments(ACTION_ARGU_SET_TEXT,"the text of setted")
101 const std::map<std::string, std::string> &actionArguments,
/foundation/barrierfree/accessibility/frameworks/asacfwk/test/unittest/
H A Daccessibility_element_operator_impl_test.cpp169 std::map<std::string, std::string> actionArguments; in HWTEST_F() local
170 mockStub_->ExecuteAction(ELEMENT_ID, ACTION, actionArguments, REQUEST_ID, nullptr); in HWTEST_F()
436 std::map<std::string, std::string> actionArguments; in HWTEST_F() local
437 mockStub_->ExecuteAction(ELEMENT_ID, ACTION, actionArguments, REQUEST_ID_2, elementOperator); in HWTEST_F()

Completed in 16 milliseconds

12345