Searched refs:actionValue (Results 1 - 7 of 7) sorted by relevance
/foundation/multimodalinput/input/frameworks/napi/input_monitor/src/ |
H A D | js_input_monitor.cpp | 638 int32_t actionValue = GetPinchAction(pointerEvent->GetPointerAction()); in TransformPinchEvent() local 639 if (actionValue == RET_ERR) { in TransformPinchEvent() 643 if (SetNameProperty(jsEnv_, result, "type", actionValue) != napi_ok) { in TransformPinchEvent() 658 int32_t actionValue = GetRotateAction(pointerEvent->GetPointerAction()); in TransformRotateEvent() local 659 if (actionValue == RET_ERR) { in TransformRotateEvent() 663 if (SetNameProperty(jsEnv_, result, "type", actionValue) != napi_ok) { in TransformRotateEvent() 716 int32_t actionValue = GetSwipeAction(pointerEvent->GetPointerAction()); in TransformSwipeEvent() local 717 if (actionValue == RET_ERR) { in TransformSwipeEvent() 723 if (SetNameProperty(jsEnv_, result, "type", actionValue) != napi_ok) { in TransformSwipeEvent() 766 int32_t actionValue in TransformMultiTapEvent() local 794 int32_t actionValue = pointerEvent->GetPointerAction(); TransformSwipeInwardEvent() local 1263 int32_t actionValue = TransformTsActionValue(pointerEvent->GetPointerAction()); TransformMousePointerEvent() local 1308 int32_t actionValue = tempActionValue.value(); TransformJoystickPointerEvent() local 1355 int32_t actionValue = GetFingerprintAction(pointerEvent->GetPointerAction()); TransformFingerprintEvent() local [all...] |
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/action_sheet/ |
H A D | js_action_sheet.cpp | 92 auto actionValue = obj->GetProperty("action"); in ParseSheetInfo() local 93 if (actionValue->IsFunction()) { in ParseSheetInfo() 95 auto actionFunc = AceType::MakeRefPtr<JsFunction>(JSRef<JSObject>(), JSRef<JSFunc>::Cast(actionValue)); in ParseSheetInfo() 143 JSRef<JSVal> actionValue = confirmObj->GetProperty("action"); in ParseConfirmButton() local 144 if (actionValue->IsFunction()) { in ParseConfirmButton() 146 auto actionFunc = AceType::MakeRefPtr<JsFunction>(JSRef<JSObject>(), JSRef<JSFunc>::Cast(actionValue)); in ParseConfirmButton() 155 actionFunc = AceType::MakeRefPtr<JsFunction>(JSRef<JSObject>(), JSRef<JSFunc>::Cast(actionValue)); in ParseConfirmButton()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_interactable_view.cpp | 371 auto actionValue = obj->GetProperty("action"); in GetRemoteMessageEventCallback() local 373 if (actionValue->IsString()) { in GetRemoteMessageEventCallback() 374 action = actionValue->ToString(); in GetRemoteMessageEventCallback()
|
H A D | js_view_abstract.cpp | 1085 JSRef<JSVal> actionValue = obj->GetProperty("action"); in ParsePopupParam() local 1086 if (actionValue->IsFunction()) { in ParsePopupParam() 1087 auto jsOnClickFunc = AceType::MakeRefPtr<JsClickFunction>(JSRef<JSFunc>::Cast(actionValue)); in ParsePopupParam() 1115 JSRef<JSVal> actionValue = obj->GetProperty("action"); in ParsePopupParam() local 1116 if (actionValue->IsFunction()) { in ParsePopupParam() 1117 auto jsOnClickFunc = AceType::MakeRefPtr<JsClickFunction>(JSRef<JSFunc>::Cast(actionValue)); in ParsePopupParam()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/dialog/ |
H A D | js_alert_dialog.cpp | 113 auto actionValue = objInner->GetProperty("action"); in ParseButtonObj() local 114 if (actionValue->IsFunction()) { in ParseButtonObj() 116 auto actionFunc = AceType::MakeRefPtr<JsFunction>(JSRef<JSObject>(), JSRef<JSFunc>::Cast(actionValue)); in ParseButtonObj()
|
/foundation/window/window_manager/wmserver/src/zidl/ |
H A D | window_manager_stub.cpp | 224 uint32_t actionValue = 0; in OnRemoteRequest() local 225 if (!data.ReadUint32(actionValue)) { in OnRemoteRequest() 229 auto action = static_cast<PropertyChangeAction>(actionValue); in OnRemoteRequest()
|
/foundation/window/window_manager/window_scene/session/host/src/zidl/ |
H A D | session_stub.cpp | 1111 uint32_t actionValue = 0; in HandleUpdatePropertyByAction() local 1112 if (!data.ReadUint32(actionValue)) { in HandleUpdatePropertyByAction() 1116 auto action = static_cast<WSPropertyChangeAction>(actionValue); in HandleUpdatePropertyByAction()
|
Completed in 27 milliseconds