Home
last modified time | relevance | path

Searched refs:rotationGestureEvent (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/functions/
H A Djs_gesture_judge_function.cpp153 … auto rotationGestureEvent = TypeInfoHelper::DynamicCast<RotationGestureEvent>(info.get()); in SetUniqueAttributes() local
154 if (rotationGestureEvent) { in SetUniqueAttributes()
155 obj->SetProperty<double>("angle", rotationGestureEvent->GetAngle()); in SetUniqueAttributes()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H A Dnode_gesture_modifier.cpp345 … auto rotationGestureEvent = TypeInfoHelper::DynamicCast<RotationGestureEvent>(info.get()); in GetUniqueGestureEvent() local
346 if (rotationGestureEvent) { in GetUniqueGestureEvent()
347 ret->angle = rotationGestureEvent->GetAngle(); in GetUniqueGestureEvent()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/
H A Darkts_native_common_bridge.cpp6159 … auto* rotationGestureEvent = TypeInfoHelper::DynamicCast<RotationGestureEvent>(info.get()); in SetUniqueAttributes() local
6160 if (rotationGestureEvent) { in SetUniqueAttributes()
6162 … Local<JSValueRef> values[] = { panda::NumberRef::New(vm, rotationGestureEvent->GetAngle()) }; in SetUniqueAttributes()