/test/xts/acts/ability/ability_runtime/actsserviceabilityclienttest/actsserviceabilityclienttest/entry/src/main/js/ServiceAbility1/ |
H A D | service.js | 75 if (want.action === 'ServiceStartService_0900') { 82 action: 'ServiceStartService_0900', 87 } else if (want.action === 'ServiceStartService_1000') { 94 action: 'ServiceStartService_1000', 101 commonEvent.publish('ACTS_SerivceAbilityServer_onCommand' + '_' + want.action, (err) => { 103 if (want.action === 'PageStartService_0100' || want.action === 'PageStartService_0200' || 104 want.action === 'PageStartService_0301' || want.action === 'PageStartService_0401') { 106 want.action); [all...] |
/test/xts/acts/ability/ability_runtime/actsserviceabilityclienttest/actsserviceabilityclienttest/entry/src/main/js/ServiceAbility2/ |
H A D | service.js | 69 commonEvent.publish('ACTS_SerivceAbilityServerSecond_onCommand' + '_' + want.action, (err) => { 70 console.debug('ACTS_SerivceAbilityServerSecond_onCommand' + '_' + want.action + 81 console.debug('ACTS_SerivceAbilityServerSecond_onConnectCallback ====> want.action=' + 82 JSON.stringify(want.action) + ' , ' + want.action); 87 if (want.action === 'ServiceConnectService_1500' || want.action === 'ServiceConnectService_1600') { 88 commonEvent.publish('ACTS_SerivceAbilityServerSecond_onConnect' + '_' + want.action, (err) => { 89 console.debug('publish = ACTS_SerivceAbilityServerSecond_onConnect' + '_' + want.action); 103 if (want.action [all...] |
/test/testfwk/xdevice/src/xdevice/_core/command/ |
H A D | console.py | 152 parser.add_argument("action", 154 help="Specify action") 160 action=SplicingAction, 168 action=SplicingAction, 176 action="store", 183 action=SplicingAction, 191 action="store", 198 action=SplicingAction, 206 action=SplicingAction, 214 action [all...] |
/test/testfwk/developer_test/src/core/command/ |
H A D | console.py | 106 parser.add_argument("action", type=str.lower,
107 help="Specify action")
110 action="store",
130 action="store_true",
136 action="store_true",
146 action='store_true',
164 action="store",
171 action="store",
178 action=SplicingAction,
186 action 467 action = "action" global() variable in ConfigConst [all...] |
/test/testfwk/arkxtest/uitest/test/ |
H A D | ui_action_test.cpp | 53 GenericClick action(TouchOp::CLICK, point); in TEST_F() 55 action.Decompose(events, customOptions_); in TEST_F() 73 GenericClick action(TouchOp::LONG_CLICK, point); in TEST_F() 75 action.Decompose(events, customOptions_); in TEST_F() 95 GenericClick action(TouchOp::DOUBLE_CLICK_P, point); in TEST_F() 97 action.Decompose(events, customOptions_); in TEST_F() 132 GenericSwipe action(TouchOp::SWIPE, point0, point1); in TEST_F() 134 action.Decompose(events, opt); in TEST_F() 162 // middle events should all be action-MOVE in TEST_F() 183 GenericSwipe action(TouchO in TEST_F() [all...] |
/test/xts/tools/lite/build/ |
H A D | suite.py | 251 def _find_action(action, arguments): 252 class_name = ACTION_MAP[action] 254 raise ValueError('Unsupported operation: %s' % action) 260 'Unsupported operation(No Implementation Class): %s' % action) 262 func = getattr(class_obj, action, None) 265 'Unsupported operation(No Implementation Method): %s' % action) 270 action = arguments[0] 272 func = _find_action(action, args)
|
/test/testfwk/xdevice/src/xdevice/_core/context/ |
H A D | life_stage.py | 58 def __init__(self, action: str): 60 self.action: str = action 70 "command": self.action,
|
/test/xts/tools/build/ |
H A D | suite.py | 396 def _find_action(action, arguments): 397 class_name = ACTION_MAP[action] 399 raise ValueError('Unsupported operation: %s' % action) 405 'Unsupported operation(No Implementation Class): %s' % action) 407 func = getattr(class_obj, action, None) 410 'Unsupported operation(No Implementation Method): %s' % action) 415 action = arguments[0] 417 func = _find_action(action, args)
|
/test/xts/acts/multimodalinput/input_cpp_standard/ |
H A D | input_native_test.cpp | 146 * @tc.desc: Verify the set and get of keyEvent action 155 int32_t action = OH_Input_GetKeyEventAction(keyEvent); in HWTEST_F() local 156 EXPECT_EQ(action, KEY_ACTION_DOWN); in HWTEST_F() 250 * @tc.desc: Verify the set and get of mouseEvent action 259 int32_t action = OH_Input_GetMouseEventAction(mouseEvent); in HWTEST_F() local 260 EXPECT_EQ(action, MOUSE_ACTION_BUTTON_DOWN); in HWTEST_F() 397 * @tc.desc: Verify the set and get of touchEvent action 406 int32_t action = OH_Input_GetTouchEventAction(touchEvent); in HWTEST_F() local 407 EXPECT_EQ(action, TOUCH_ACTION_DOWN); in HWTEST_F()
|
/test/testfwk/arkxtest/jsunit/src/module/mock/ |
H A D | MockKit.js | 197 let action = tmp.getReturnInfo(f, args); 201 if (action) { 202 return action.apply(this, args);
|
/test/xts/acts/multimodalinput/multimodalinput_ndk_hvigor/InputNdkSystem/entry/src/main/cpp/ |
H A D | inputndksys.cpp | 78 InputEvent_AxisAction action = AXIS_ACTION_BEGIN; in SetAxisEventAction() local 79 Input_Result retResult = OH_Input_SetAxisEventAction(axisEvent, action); in SetAxisEventAction() 89 InputEvent_AxisAction action = AXIS_ACTION_BEGIN; in GetAxisEventAction() local 90 Input_Result retResult = OH_Input_SetAxisEventAction(axisEvent, action); in GetAxisEventAction() 91 action = AXIS_ACTION_UPDATE; in GetAxisEventAction() 92 retResult = OH_Input_GetAxisEventAction(axisEvent, &action); in GetAxisEventAction() 93 napi_create_int32(env, (retResult==INPUT_SUCCESS && action==AXIS_ACTION_BEGIN) ? 1 : 0, &result); in GetAxisEventAction() 250 InputEvent_AxisAction action = AXIS_ACTION_BEGIN; in DestroyAxisEvent() local 251 Input_Result retResult = OH_Input_SetAxisEventAction(axisEvent, action); in DestroyAxisEvent() 252 action in DestroyAxisEvent() 302 InputEvent_AxisAction action = AXIS_ACTION_BEGIN; SetAxisEventAction2() local 321 InputEvent_AxisAction action = AXIS_ACTION_END; GetAxisEventAction3() local [all...] |
/test/testfwk/arkxtest/hamock/src/main/mock/ |
H A D | MockKit.js | 174 let action = tmp.getReturnInfo(f, args); 178 if (action) { 179 return action.apply(_this, args);
|
/test/xts/acts/arkui/ace_standard/entry/src/main/js/MainAbility/pages/badge/router/ |
H A D | index.js | 156 var action = event.action;
variable 159 var message = 'code--' + code + ',action--' + action +
|
/test/xts/acts/arkui/ace_standard/entry/src/main/js/MainAbility/pages/badge/router1/ |
H A D | index.js | 155 var action = event.action;
variable 158 var message = 'code--' + code + ',action--' + action +
|
/test/xts/acts/arkui/ace_standard/entry/src/main/js/MainAbility/pages/badge/router5/ |
H A D | index.js | 156 var action = event.action;
variable 159 var message = 'code--' + code + ',action--' + action +
|
/test/xts/acts/arkui/ace_standard/entry/src/main/js/MainAbility/pages/badge/router6/ |
H A D | index.js | 156 var action = event.action;
variable 159 var message = 'code--' + code + ',action--' + action +
|
/test/xts/acts/arkui/ace_standard/entry/src/main/js/MainAbility/pages/listItem/router/ |
H A D | index.js | 165 var action = event.action;
variable 168 var message = 'code--' + code + ',action--' + action +
|
/test/xts/acts/arkui/ace_standard/entry/src/main/js/MainAbility/pages/badge/router3/ |
H A D | index.js | 159 var action = event.action;
variable 162 var message = 'code--' + code + ',action--' + action +
|
/test/xts/acts/arkui/ace_standard/entry/src/main/js/MainAbility/pages/badge/router2/ |
H A D | index.js | 156 var action = event.action;
variable 159 var message = 'code--' + code + ',action--' + action +
|
/test/xts/acts/arkui/ace_standard/entry/src/main/js/MainAbility/pages/badge/router4/ |
H A D | index.js | 156 var action = event.action;
variable 159 var message = 'code--' + code + ',action--' + action +
|
/test/xts/acts/arkui/ace_standard/entry/src/main/js/MainAbility/pages/list/router6/ |
H A D | index.js | 169 var action = event.action;
variable 172 var message = 'code--' + code + ',action--' + action +
|
/test/xts/acts/arkui/ace_standard/entry/src/main/js/MainAbility/pages/list/router4/ |
H A D | index.js | 169 var action = event.action;
variable 172 var message = 'code--' + code + ',action--' + action +
|
/test/xts/acts/arkui/ace_standard/entry/src/main/js/MainAbility/pages/list/router5/ |
H A D | index.js | 169 var action = event.action;
variable 172 var message = 'code--' + code + ',action--' + action +
|
/test/xts/acts/arkui/ace_standard/entry/src/main/js/MainAbility/pages/form/router/ |
H A D | index.js | 159 var action = event.action;
variable 162 var message = 'code--' + code + ',action--' + action +
|
/test/xts/acts/arkui/ace_standard/entry/src/main/js/MainAbility/pages/list/router1/ |
H A D | index.js | 171 var action = event.action;
variable 174 var message = 'code--' + code + ',action--' + action +
|